:root{
  --bg: #f3f5f7;
  --bg2:#eef2f4;
  --panel:#ffffff;
  --panel2:#f7fafb;
  --line: rgba(12,18,22,.12);
  --text:#0b0e10;
  --muted: rgba(11,14,16,.72);
  --muted2: rgba(11,14,16,.56);
  --accent:#20c05c;
  --accent2:#19c37d;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --radius: 16px;
  --radius2: 22px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  /* Seamless: single soft green accent in the top-left, fading into solid light background */
  background:
    radial-gradient(860px 520px at 0% 0%, rgba(32,192,92,.18), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 34%, var(--bg2) 100%);
  background-repeat: no-repeat;
  background-color: var(--bg2);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(243,245,247,.72);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding: 22px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:56px; width:auto; display:block}
.navlinks{display:flex; gap:14px; align-items:center}
.navlinks a{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:12px;
  transition: background .15s ease, color .15s ease;
}
.navlinks a:hover{background: rgba(0,0,0,.05); color:var(--text)}
.navcta{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.65);
  color:var(--text);
  font-weight:650;
  font-size:14px;
  letter-spacing:.2px;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.95)}
.btn:active{transform: translateY(0px)}
.btn-primary{
  border-color: rgba(32,192,92,.55);
  background: linear-gradient(180deg, rgba(32,192,92,.18), rgba(32,192,92,.08));
  box-shadow: 0 10px 25px rgba(32,192,92,.14);
}
.btn-primary:hover{
  border-color: rgba(32,192,92,.95);
  box-shadow: 0 16px 40px rgba(32,192,92,.18);
}
.btn-link{
  border:none; background: transparent;
  padding: 10px 8px;
  color: var(--muted);
}
.btn-link:hover{background: rgba(0,0,0,.05); color: var(--text)}

.hero{padding: 44px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(11,14,16,.78);
  border:1px solid rgba(32,192,92,.28);
  background: rgba(255,255,255,.92);
  padding: 10px 14px;
  border-radius: 999px;
  width: fit-content;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.dot{
  width:10px; height:10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(32,192,92,.14);
}

/* Bigger hero logo */
.logo-hero{
  width: min(760px, 100%);
  height:auto;
  display:block;
  margin: 10px 0 12px;
}

h1{
  margin: 8px 0 10px;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.cta-note{font-size:12px; color: var(--muted2); margin-top:10px}

.panel{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.panel-inner{padding:18px}
.panel h3{margin:0 0 10px; font-size: 15px; letter-spacing:.2px}
.bullets{margin:0; padding-left: 18px; color: var(--muted); line-height:1.65}
.bullets li{margin: 6px 0}
.accent{color: var(--accent)}

.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px}
.kpi{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 12px;
  background: rgba(255,255,255,.75);
}
.kpi b{display:block; font-size:14px}
.kpi span{display:block; margin-top:6px; font-size:12px; color: var(--muted2); line-height:1.4}

.section{padding: 30px 0}
.section-title{
  margin-bottom: 14px;
}
.section-title h2{
  margin:0;
  font-size: 26px;
  letter-spacing: -0.25px;
}
.section-title p{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 92ch;
}

.cards{display:grid; grid-template-columns: repeat(12, 1fr); gap: 14px}
.card{
  grid-column: span 6;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background:
    radial-gradient(350px 160px at 15% 0%, rgba(32,192,92,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(32,192,92,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.card h3{margin:0 0 8px; font-size: 16px}
.card p{margin:0; color: var(--muted); line-height:1.65; font-size: 14px}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  background: rgba(255,255,255,.75);
  width: fit-content;
}

.split{display:grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch}

/* Screenshot grid (placeholders) */
.media-grid{display:grid; grid-template-columns: repeat(12, 1fr); gap: 14px}
.media{
  grid-column: span 6;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.media img{display:block; width:100%; height:auto}
.media .cap{
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.9);
}

/* Clients */
.clients{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.client{
  display:flex; align-items:center; justify-content:center;
  width: 260px;
  padding: 14px;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.78);
  transition: transform .14s ease, border-color .14s ease;
}
.client:hover{transform: translateY(-2px); border-color: rgba(32,192,92,.35)}
.client img{max-width: 100%; height:auto; display:block}

/* Map */
.map{
  width:100%;
  height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* Iframe carousel */
.carousel{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.carousel-viewport{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  background: rgba(0,0,0,.06);
}
.carousel-track{
  display:flex;
  width:100%;
  height:100%;
  transform: translateX(0);
  transition: transform .35s ease;
}
.carousel-slide{
  flex: 0 0 100%;
  height:100%;
  position:relative;
}
.carousel-slide iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  background: rgba(0,0,0,.05);
}
.carousel-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.9);
}
.carousel-title{
  font-size: 13px;
  color: var(--muted);
}
.carousel-controls{
  display:flex; gap:8px; align-items:center;
}
.iconbtn{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.8);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, background .15s ease;
  user-select:none;
}
.iconbtn:hover{transform: translateY(-1px); background: rgba(255,255,255,1)}
.dots{display:flex; gap:6px; align-items:center; padding: 0 6px}
.dotbtn{
  width:9px; height:9px; border-radius:999px;
  border:1px solid rgba(12,18,22,.18);
  background: rgba(12,18,22,.15);
  cursor:pointer;
}
.dotbtn.active{
  background: rgba(32,192,92,.65);
  border-color: rgba(32,192,92,.65);
}

.footer{
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.footgrid{display:grid; grid-template-columns: 1.2fr .8fr; gap: 16px; align-items:start}
.footbrand{display:flex; align-items:center; gap:10px}
.footbrand img{height: 26px}
.small{color: var(--muted2); font-size: 12px; line-height:1.6; margin-top: 8px}
.footlinks{display:grid; gap: 8px}
.footlinks a{color: var(--muted); font-size: 13px}
.footlinks a:hover{color: var(--text)}

.menu-btn{display:none}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .kpis{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .cards .card{grid-column: span 12}
  .media{grid-column: span 12}
  .navlinks{display:none}
  .menu-btn{display:inline-flex}
  .carousel-viewport{min-height: 320px}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important; animation:none !important}
}
.reveal{opacity:0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease}
.reveal.visible{opacity:1; transform: translateY(0)}

/* Page-wide header band (consistent across pages) */
.pagehead{
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}
.pagehead .accentbar{
  width: 190px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32,192,92,.70) 0%, rgba(32,192,92,.70) 70%, rgba(32,192,92,0) 100%);
  margin-bottom: 10px;
}
.pagehead h1{
  margin:0;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.7px;
}
.pagehead p{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 80ch;
}

/* Home hero: single rounded panel containing a 2-column layout */
.hero{padding: 22px 0 18px}
.hero-panel{margin-top: 16px}
.hero-panel-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
}
.hero-panel-right{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px 6px 10px 18px;
  border-left: 1px solid var(--line);
}
.hero-wordmark{
  width: 100%;
  max-width: 520px;
  height: auto;
  display:block;
}
.hero-h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.4px;
}

/* Demo toggle (details/summary) */
.demo-details{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.demo-details summary{
  list-style:none;
  cursor:pointer;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.15px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
}
.demo-details summary::-webkit-details-marker{display:none}
.demo-details .summary-note{
  font-size: 12px;
  color: var(--muted2);
  font-weight: 650;
}
.demo-details[open] summary{border-bottom: 1px solid var(--line)}
.demo-details .details-body{padding: 14px 14px 16px}

/* Clients: responsive full-width grid */
.clients-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.client-tile{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.78);
  transition: transform .14s ease, border-color .14s ease;
}
.client-tile:hover{transform: translateY(-2px); border-color: rgba(32,192,92,.35)}
.client-tile img{max-width: 100%; height:auto; display:block}

/* Contact refinements */
.contact-panel{
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.map{height: 240px}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.lightbox.is-open{display:flex}
.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.70);
}
.lightbox-dialog{
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  background: rgba(12,18,22,.25);
}
.lightbox-img{
  display:block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  background: rgba(0,0,0,.12);
}
.lightbox-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor:pointer;
  z-index: 2;
}
.lightbox-close:hover{background: rgba(255,255,255,.18)}

/* Book demo form */
.form{display:grid; gap: 12px}
.field{display:grid; gap: 6px}
.label{font-size: 13px; color: var(--muted); font-weight: 700}
.input, .textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(255,255,255,.85);
  font-size: 14px;
  outline: none;
}
.textarea{min-height: 130px; resize: vertical}
.help{font-size: 12px; color: var(--muted2); line-height: 1.6}

@media (max-width: 920px){
  .hero-panel-grid{grid-template-columns: 1fr}
  .hero-panel-right{border-left:none; border-top:1px solid var(--line); padding: 16px 6px 6px}
}

/* Scene preview embed with fallback screenshot */
.embed{
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.04);
}
.embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  opacity: 0;
  transition: opacity .22s ease;
}
.embed.is-ready iframe{opacity: 1;}
.embed-fallback{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: opacity .22s ease;
}
.embed.is-ready .embed-fallback{
  opacity: 0;
  pointer-events: none;
}
.embed-msg{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 18px;
  font-size: 13px;
  color: rgba(11,14,16,.68);
  background: rgba(255,255,255,.84);
  opacity: 0;
  transition: opacity .22s ease;
}
.embed.is-blocked .embed-msg{opacity: 1;}
.embed.is-ready .embed-msg{opacity: 0;}

/* Clients: normalize logo sizing */
.client-tile img{
  max-height: 56px;
  width: auto;
  max-width: 100%;
}

/* Contact building image */
.contact-photo{
  width: 100%;
  height: auto;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  display:block;
  margin-bottom: 12px;
}

/* Who we are: vertically center panel content */
.panel.vcenter .panel-inner{
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

/* MD&M logo */
.mdm-logo{
  width: min(260px, 70%);
  height:auto;
  display:block;
  margin: 6px auto 12px;
}

/* Equal-height split panels where desired */
.panel-fill{
  height: 100%;
}
.panel-fill .panel-inner{
  height: 100%;
  display:flex;
  flex-direction: column;
}
.panel-fill .panel-inner.space-between{
  justify-content: space-between;
}


/* Carousel per-slide caption */
.carousel-caption{
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
  background: rgba(255,255,255,.9);
  border-top: 1px solid var(--line);
}


/* Footer social links */
.social{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-top: 10px;
}
.social a{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(11,14,16,.72);
  transition: transform .12s ease, background .15s ease;
}
.social a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.95);
}


/* Contact map column full height */
.panel-map-inner{
  padding: 0;
  height: 100%;
}
.panel-map{
  height: 100%;
}
.panel-map .map{
  height: 100%;
  min-height: 340px;
}
@media (max-width: 920px){
  .panel-map .map{min-height: 260px;}
}


/* Compact bullet list variant */
.bullets-compact{line-height:1.5;}
.bullets-compact li{margin: 3px 0;}

/* Centered carousel controls + caption */
.carousel-bar.centered{
  justify-content: center;
}
.carousel-bar.centered .carousel-title{
  text-align: center;
  flex: 1 1 auto;
}
.carousel-bar.centered .carousel-controls{
  justify-content: center;
}


/* Extra compact bullet list (Who we are / How we work) */
.bullets-tight{line-height:1.42;}
.bullets-tight li{margin:2px 0;}


/* Live Scene Preview: center description + controls */
.carousel-bar.centered{
  justify-content: center;
  gap: 12px;
}
.carousel-bar.centered .carousel-title{
  text-align: center;
  flex: 0 0 auto;
  min-width: 260px;
}
.carousel-bar.centered .carousel-controls{
  justify-content: center;
}


/* Live Scene Preview: hard-center caption + controls (override) */
.carousel-bar.centered{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.carousel-bar.centered .carousel-title{
  width: 100%;
  text-align: center;
  flex: none;
  min-width: 0;
}
.carousel-bar.centered .carousel-controls{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.carousel-bar.centered .dots{
  justify-content: center;
}

/* Clients tile shadow (match cards) */
.client-tile{
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* Click-to-interact overlay for embedded scene previews */
.embed-card{
  position: relative;
  width: 100%;
  height: 100%;
}
.embed-card iframe{
  pointer-events: none; /* allow page scroll until activated */
}
.embed-card.is-active iframe{
  pointer-events: auto;
}
.embed-overlay{
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  background: rgba(255,255,255,.55);
}
.embed-card.is-active .embed-overlay{
  display: none;
}
.overlay-text{
  font-size: 13px;
  color: rgba(11,14,16,.72);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* Hide fallback screenshots by default; only show if embedding is blocked */
.embed-fallback{display:none;}
.embed.is-blocked .embed-fallback{display:block;}


/* Scroll lock while interacting with embeds */
html.embed-scroll-locked{overscroll-behavior: none;}

/* Exit button for embed interaction mode */
.embed-exit{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(12,18,22,.14);
  background: rgba(255,255,255,.92);
  color: rgba(11,14,16,.85);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: none; /* only when active */
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.embed-exit:hover{
  background: rgba(255,255,255,1);
}
.embed-card.is-active .embed-exit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* Spacer used in Live Scene Preview description */
.line-gap{display:block; height:8px;}


/* Our Clients note */
.client-note{margin-top:10px; font-size:12px; color: var(--muted2);}

/* Clients list (text-only, card style) */
.clients-list{
  display: grid;
  gap: 12px;
}
.client-row{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.client-row b{
  font-weight: 850;
}
.client-row .arrow{
  color: rgba(11,14,16,.55);
}
.client-link{
  color: rgba(25,80,140,.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-link:hover{
  color: rgba(25,80,140,.92);
}
.client-note{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
}

/* Clients list bullets */
.dotbullet{
  display:inline-flex;
  width: 14px;
  justify-content: center;
  color: rgba(11,14,16,.60);
  transform: translateY(-1px);
}

/* Client links: more grey-ish, still underlined */
.client-link{
  color: rgba(11,14,16,.58);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-link:hover{
  color: rgba(11,14,16,.78);
}

/* Clients list: use same bullet sizing as other lists */
.clients-bullets li{
  margin: 3px 0; /* match bullets-compact feel */
}
.clients-bullets .arrow{
  color: rgba(11,14,16,.55);
}

/* Clients note inside card */
.client-note{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
}

/* Client links: use green accent */
.client-link{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-link:hover{
  color: var(--accent2);
}


/* Contact action buttons (email + book a demo) */
.contact-actions{
  display:flex;
  gap: 10px;
  width: 100%;
}
.contact-actions .btn{
  flex: 1;
  justify-content: center;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}


/* Narrow mode (phones): header/hero/footer tweaks */
/* Navbar demo button text variants */
.navcta .btn-text-short{display:none}
.navcta .btn-text-full{display:inline}

@media (max-width: 640px){
  /* Header buttons */
  .navcta .btn-text-short{display:inline}
  .navcta .btn-text-full{display:none}
  .navcta .nav-quote-btn{display:none}

  /* Hero: hide right-side logo + divider */
  .hero-panel-right{display:none}

  /* Footer: hide tagline in brand */
  .foot-tagline{display:none}

  /* Who we are: center Sergei photo + title */
  .bio-flex{
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }
  .bio-flex h3{width:100%}
  .bio-flex .small{width:100%}
}
