@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --header: 82px;
  --container: 1280px;
  --gutter: 80px;
  --ink: #071744;
  --text: #334563;
  --muted: #70809d;
  --line: #dfe8f6;
  --blue: #2f6bff;
  --cyan: #12c7d5;
  --teal: #16c5b4;
  --navy: #061936;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

.container{
  width:min(var(--container),calc(100% - var(--gutter)));
  margin-inline:auto;
}

.site-header{
  height:var(--header);
  border-bottom:1px solid rgba(223,232,246,.95);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  position:relative;
  z-index:20;
}

.nav{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.brand img{
  width:165px;
  height:auto;
  object-fit:contain;
}

nav{
  display:flex;
  gap:42px;
  align-items:center;
  font-size:15px;
  font-weight:700;
}

.btn{
  height:54px;
  padding-inline:26px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:15px;
  font-weight:800;
  white-space:nowrap;
}

.nav-btn{
  background:var(--navy);
  color:white;
  box-shadow:0 14px 34px rgba(6,25,54,.16);
}

.hero-section{
  height:calc(100svh - var(--header));
  min-height:760px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 78% 35%, rgba(47,107,255,.08), transparent 24%),
    radial-gradient(circle at 95% 72%, rgba(18,199,213,.07), transparent 22%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items:center;
  gap:64px;
  height:100%;
}

.hero-copy{
  max-width:620px;
  padding-top:8px;
}

.eyebrow{
  margin:0 0 22px 0;
  font-size:13px;
  line-height:1;
  letter-spacing:.25em;
  color:var(--blue);
  text-transform:uppercase;
  font-weight:900;
}

h1{
  margin:0;
  font-size:72px;
  line-height:1.04;
  letter-spacing:-.06em;
  font-weight:900;
  color:var(--ink);
}

.lead{
  margin:26px 0 0;
  max-width:610px;
  font-size:17px;
  line-height:1.72;
  color:var(--text);
}

.actions{
  display:flex;
  gap:20px;
  margin-top:38px;
}

.primary{
  color:#fff;
  background:var(--navy);
  box-shadow:0 16px 36px rgba(6,25,54,.15);
}

.secondary{
  color:var(--ink);
  background:#fff;
  border:1.5px solid #aebbd4;
}

.hero-visual{
  position:relative;
  min-height:610px;
  display:grid;
  place-items:center;
}

.visual-bg{
  position:absolute;
  right:-34px;
  top:58px;
  width:88%;
  height:68%;
  border-radius:46px;
  background:
    radial-gradient(circle at 86% 70%, rgba(47,107,255,.20), transparent 42%),
    linear-gradient(135deg, rgba(244,249,255,.88) 0%, rgba(232,243,255,.92) 56%, rgba(216,232,255,.70) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.visual-glow{
  position:absolute;
  right:-12px;
  bottom:70px;
  width:78%;
  height:36%;
  border-radius:999px;
  background:radial-gradient(circle at 70% 60%, rgba(47,107,255,.18), transparent 58%);
  filter:blur(4px);
}

.dashboard-card{
  position:relative;
  z-index:2;
  width:min(760px,100%);
  padding:24px;
  border-radius:30px;
  background:rgba(255,255,255,.95);
  border:1px solid #dfe9f7;
  box-shadow:0 34px 68px rgba(47,107,255,.14);
}

.dash-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:20px;
}

.dash-top h2{
  margin:0;
  font-size:22px;
  line-height:1;
  letter-spacing:-.03em;
}

.top-pills{
  display:flex;
  align-items:center;
  gap:10px;
}

.top-pills span{
  padding:9px 12px;
  border-radius:11px;
  border:1px solid #e1e9f5;
  background:#f9fbff;
  color:#53627c;
  font-size:11px;
  font-weight:800;
}

.status:before{
  content:"●";
  color:#10b981;
  margin-right:7px;
}

.metric-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.metric{
  min-height:94px;
  padding:15px;
  border:1px solid #e1e9f5;
  border-radius:16px;
  background:#fff;
}

.metric small{
  display:block;
  color:#66758f;
  font-size:11px;
  font-weight:800;
  margin-bottom:9px;
}

.metric strong{
  display:block;
  font-size:23px;
  letter-spacing:-.04em;
  color:var(--ink);
}

.metric em{
  display:block;
  margin-top:6px;
  font-style:normal;
  font-size:10.5px;
  color:#0ba775;
  font-weight:850;
}

.chart-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:14px;
  margin-top:14px;
}

.chart-panel{
  min-height:248px;
  border:1px solid #e1e9f5;
  border-radius:17px;
  background:#fff;
  padding:17px;
}

.panel-title{
  font-size:12.5px;
  font-weight:900;
  margin-bottom:10px;
}

.revenue strong{
  display:block;
  font-size:22px;
  letter-spacing:-.04em;
  margin-bottom:6px;
}

.revenue strong em{
  font-size:12px;
  color:#0ba775;
  font-style:normal;
  margin-left:8px;
}

.chart-panel svg{
  display:block;
  width:100%;
  height:170px;
}

.grid{
  stroke:#e7eef8;
  stroke-width:1;
}

.funnel-layout{
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:18px;
  align-items:center;
  height:190px;
}

.funnel-shape{
  display:grid;
  gap:8px;
  align-content:center;
}

.funnel-shape i{
  display:block;
  height:30px;
  margin:auto;
  border-radius:4px;
  background:linear-gradient(180deg,#1458ff,#80e4e0);
  clip-path:polygon(5% 0,95% 0,80% 100%,20% 100%);
}

.funnel-shape i:nth-child(1){width:100%}
.funnel-shape i:nth-child(2){width:84%;opacity:.9}
.funnel-shape i:nth-child(3){width:66%;opacity:.84}
.funnel-shape i:nth-child(4){width:48%;opacity:.76}
.funnel-shape i:nth-child(5){width:31%;opacity:.68}

.funnel-labels{
  display:grid;
  gap:14px;
  font-size:11.5px;
  color:#4d5b75;
}

.funnel-labels span{
  display:flex;
  justify-content:space-between;
  gap:10px;
}

.funnel-labels b{
  color:var(--ink);
}

.driver-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:13px;
  margin-top:14px;
}

.driver-grid div{
  min-height:78px;
  display:grid;
  grid-template-columns:42px 1fr;
  column-gap:12px;
  align-items:center;
  padding:13px;
  border:1px solid #e1e9f5;
  border-radius:15px;
  background:#fff;
}

.mini-icon{
  grid-row:1/3;
  width:40px;
  height:40px;
  border-radius:11px;
  background:linear-gradient(135deg,rgba(47,107,255,.16),rgba(47,107,255,.05));
}

.mini-icon.cyan{background:linear-gradient(135deg,rgba(18,199,213,.18),rgba(18,199,213,.06))}
.mini-icon.teal{background:linear-gradient(135deg,rgba(22,197,180,.18),rgba(22,197,180,.06))}

.driver-grid strong{
  font-size:11px;
  line-height:1.25;
}

.driver-grid em{
  font-style:normal;
  color:#0ba775;
  font-size:10.5px;
  font-weight:800;
}

@media(max-width:1200px){
  :root{--gutter:56px}
  h1{font-size:62px}
  .hero-grid{gap:44px}
  .dashboard-card{width:min(700px,100%);padding:20px}
  .chart-panel{min-height:220px}
}

@media(max-width:900px){
  .hero-section{height:auto;min-height:0;padding:64px 0}
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:46px}
  .actions{flex-direction:column}
  .hero-visual{min-height:520px}
}

@media(max-width:640px){
  :root{--header:70px;--gutter:28px}
  nav,.nav-btn{display:none}
  .brand img{width:146px}
  h1{font-size:38px}
  .metric-row,.chart-grid,.driver-grid{grid-template-columns:1fr}
  .dashboard-card{padding:16px;border-radius:24px}
  .dash-top{align-items:flex-start;flex-direction:column}
}


/* Section 02: Trust + Belief */
.belief-section{
  min-height:calc(100svh - var(--header));
  display:flex;
  align-items:center;
  padding:54px 0;
  background:
    radial-gradient(circle at 88% 62%, rgba(47,107,255,.08), transparent 30%),
    radial-gradient(circle at 5% 90%, rgba(18,199,213,.04), transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  overflow:hidden;
}

.belief-container{
  display:flex;
  flex-direction:column;
  gap:74px;
}

.trust-strip{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:rgba(255,255,255,.88);
  border:1px solid #dfe8f6;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 56px rgba(7,25,68,.06);
}

.trust-item{
  min-height:178px;
  padding:26px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-right:1px solid #dfe8f6;
}

.trust-item:last-child{
  border-right:none;
}

.icon-card{
  width:76px;
  height:76px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:#eef5ff;
  border:1px solid #d7e4fb;
  margin-bottom:18px;
}

.icon-card img{
  width:45px;
  height:45px;
}

.trust-item h3{
  margin:0;
  font-size:19px;
  line-height:1.25;
  letter-spacing:-.035em;
  font-weight:850;
  color:var(--ink);
}

.trust-item p{
  margin:5px 0 0;
  font-size:14px;
  line-height:1.45;
  color:#70809d;
}

.belief-content{
  display:grid;
  grid-template-columns:1fr .82fr;
  gap:72px;
  align-items:center;
}

.belief-headline h2{
  margin:0;
  max-width:650px;
  font-size:72px;
  line-height:1.08;
  letter-spacing:-.06em;
  font-weight:900;
  color:var(--ink);
}

.belief-headline span{
  color:var(--blue);
}

.belief-copy{
  border-left:1px solid #dfe8f6;
  padding-left:58px;
  max-width:560px;
}

.belief-copy p{
  margin:0;
  font-size:17px;
  line-height:1.72;
  color:var(--text);
}

.belief-copy .belief-strong{
  color:var(--ink);
  font-size:20px;
  line-height:1.58;
  font-weight:850;
  margin-bottom:20px;
}

@media(max-width:1200px){
  .belief-container{gap:56px}
  .belief-headline h2{font-size:60px}
  .belief-content{gap:48px}
}

@media(max-width:900px){
  .belief-section{min-height:auto;padding:72px 0}
  .trust-strip{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(2){border-right:none}
  .trust-item:nth-child(1), .trust-item:nth-child(2){border-bottom:1px solid #dfe8f6}
  .belief-content{grid-template-columns:1fr}
  .belief-copy{border-left:none;padding-left:0}
  .belief-headline h2{font-size:46px}
}

@media(max-width:640px){
  .trust-strip{grid-template-columns:1fr}
  .trust-item{border-right:none;border-bottom:1px solid #dfe8f6}
  .trust-item:last-child{border-bottom:none}
  .belief-headline h2{font-size:38px}
}


/* Section 03: Challenges */
.challenges-section{
  min-height:calc(100svh - var(--header));
  display:flex;
  align-items:center;
  padding:48px 0;
  background:
    radial-gradient(circle at 92% 24%, rgba(47,107,255,.055), transparent 26%),
    radial-gradient(circle at 6% 10%, rgba(47,107,255,.035), transparent 20%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  overflow:hidden;
}

.challenges-container{
  display:flex;
  flex-direction:column;
  gap:40px;
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:13px;
}

.section-head.center{
  align-items:center;
  text-align:center;
  max-width:930px;
  margin:0 auto;
}

.section-head h2{
  margin:0;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-.055em;
  font-weight:900;
  color:var(--ink);
}

.section-head p{
  margin:0;
  max-width:860px;
  color:var(--text);
  font-size:16px;
  line-height:1.65;
}

.pill{
  display:inline-flex;
  align-self:center;
  border-radius:999px;
  background:rgba(47,107,255,.08);
  color:var(--blue);
  padding:10px 20px;
  font-size:12px;
  line-height:1;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:900;
}

.challenge-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.challenge-card{
  min-height:238px;
  padding:28px 34px;
  border:1px solid #dfe8f6;
  border-radius:23px;
  background:rgba(255,255,255,.88);
  box-shadow:0 16px 42px rgba(7,25,68,.055);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
}

.challenge-card .icon-card{
  margin-bottom:16px;
}

.challenge-card h3{
  margin:0;
  font-size:20px;
  line-height:1.2;
  letter-spacing:-.035em;
  font-weight:850;
  color:var(--ink);
}

.mini-line{
  display:block;
  width:38px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--blue),var(--teal));
  margin:15px auto 16px;
}

.challenge-card p{
  margin:0;
  color:var(--text);
  font-size:14.5px;
  line-height:1.62;
}

@media(max-height:820px) and (min-width:1000px){
  .challenges-section{padding:34px 0}
  .challenges-container{gap:30px}
  .section-head h2{font-size:50px}
  .section-head p{font-size:15px}
  .challenge-card{min-height:205px;padding:22px 28px}
  .challenge-card .icon-card{width:66px;height:66px;margin-bottom:12px}
  .challenge-card .icon-card img{width:39px;height:39px}
  .challenge-card h3{font-size:18px}
  .challenge-card p{font-size:13.5px}
}

@media(max-width:900px){
  .challenges-section{min-height:auto;padding:72px 0}
  .challenge-grid{grid-template-columns:repeat(2,1fr)}
  .section-head h2{font-size:46px}
}

@media(max-width:640px){
  .challenge-grid{grid-template-columns:1fr}
  .section-head h2{font-size:36px}
}


/* Section 04: Services */
.services-section{
  min-height:calc(100svh - var(--header));
  display:flex;
  align-items:center;
  padding:42px 0;
  background:
    radial-gradient(circle at 94% 18%, rgba(47,107,255,.065), transparent 27%),
    radial-gradient(circle at 8% 78%, rgba(18,199,213,.045), transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  overflow:hidden;
}

.services-container{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.services-layout{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-template-rows:250px 250px;
  gap:24px;
  align-items:stretch;
}

.services-intro{
  grid-column:1 / 5;
  grid-row:1;
  align-self:center;
  max-width:405px;
}

.services-intro h2{
  margin:0;
  font-size:54px;
  line-height:1.06;
  letter-spacing:-.055em;
  font-weight:900;
  color:var(--ink);
}

.services-intro p:not(.eyebrow){
  margin:16px 0 0;
  color:var(--text);
  font-size:16px;
  line-height:1.66;
}

.eyebrow.mark{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.eyebrow.mark::before{
  content:"";
  width:5px;
  height:25px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--blue),var(--teal));
}

.accent-line{
  display:block;
  width:86px;
  height:4px;
  border-radius:999px;
  margin-top:16px;
  background:linear-gradient(90deg,var(--blue),var(--teal));
}

.service-card{
  border:1px solid #dfe8f6;
  border-radius:23px;
  background:rgba(255,255,255,.88);
  box-shadow:0 16px 42px rgba(7,25,68,.055);
  padding:24px 24px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  min-width:0;
  overflow:hidden;
}

.service-card .icon-card{
  width:66px;
  height:66px;
  border-radius:19px;
  margin-bottom:12px;
}

.service-card .icon-card img{
  width:39px;
  height:39px;
}

.icon-card.teal{
  background:#eafafa;
  border-color:#cfefef;
}

.icon-card.violet{
  background:#f4f0ff;
  border-color:#ded6ff;
}

.icon-card.small{
  width:54px;
  height:54px;
  border-radius:16px;
}

.icon-card.small img{
  width:32px;
  height:32px;
}

.service-card h3{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.035em;
  font-weight:850;
  color:var(--ink);
}

.service-card p{
  margin:0;
  color:var(--text);
  font-size:13.4px;
  line-height:1.52;
}

.service-1{grid-column:5 / 9; grid-row:1;}
.service-2{grid-column:9 / 13; grid-row:1;}
.service-3{grid-column:1 / 5; grid-row:2;}
.service-4{grid-column:5 / 9; grid-row:2;}
.service-5{grid-column:9 / 13; grid-row:2;}

.service-divider{
  display:block;
  width:96px;
  height:4px;
  border-radius:999px;
  margin:0 auto;
  background:linear-gradient(90deg,var(--blue),var(--teal));
}

.service-support{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid #dfe8f6;
  border-radius:24px;
  background:rgba(255,255,255,.88);
  box-shadow:0 16px 42px rgba(7,25,68,.055);
  overflow:hidden;
}

.service-support > div{
  min-height:116px;
  padding:22px 22px;
  display:grid;
  grid-template-columns:54px 1fr;
  grid-template-rows:auto auto;
  column-gap:16px;
  row-gap:4px;
  align-items:center;
  align-content:center;
  border-right:1px solid #dfe8f6;
}

.service-support > div:last-child{
  border-right:none;
}

.service-support .icon-card{
  grid-row:1 / 3;
}

.service-support h4{
  margin:0;
  font-size:14px;
  line-height:1.25;
  font-weight:850;
  color:var(--ink);
}

.service-support p{
  margin:5px 0 0;
  color:var(--text);
  font-size:12.7px;
  line-height:1.42;
}

@media(max-height:850px) and (min-width:1000px){
  .services-section{padding:34px 0}
  .services-container{gap:18px}
  .services-layout{grid-template-rows:230px 230px;gap:20px}
  .services-intro h2{font-size:48px}
  .services-intro p:not(.eyebrow){font-size:15px}
  .service-card{padding:20px 22px}
  .service-card .icon-card{width:62px;height:62px;margin-bottom:11px}
  .service-card .icon-card img{width:37px;height:37px}
  .service-card h3{font-size:17.5px}
  .service-card p{font-size:13px;line-height:1.5}
  .service-support > div{min-height:104px;padding:18px 18px}
}

@media(max-width:1050px){
  .services-section{min-height:auto;padding:72px 0}
  .services-layout{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:auto;
  }
  .services-intro,
  .service-1,
  .service-2,
  .service-3,
  .service-4,
  .service-5{
    grid-column:auto;
    grid-row:auto;
  }
  .services-intro{
    grid-column:1 / 3;
    max-width:720px;
  }
  .service-support{grid-template-columns:repeat(2,1fr)}
  .service-support > div:nth-child(2){border-right:none}
  .service-support > div:nth-child(1),
  .service-support > div:nth-child(2){border-bottom:1px solid #dfe8f6}
}

@media(max-width:640px){
  .services-layout,
  .service-support{grid-template-columns:1fr}
  .services-intro{grid-column:auto}
  .services-intro h2{font-size:36px}
  .service-support > div{border-right:none;border-bottom:1px solid #dfe8f6}
  .service-support > div:last-child{border-bottom:none}
}


/* Service card text containment refinement */
.service-4 h3{
  max-width:360px;
  text-wrap:balance;
}

.service-4 p{
  max-width:100%;
}

.service-card .mini-line{
  margin-top:12px;
  margin-bottom:12px;
}


/* Equal service card sizing */
.service-card{
  height:100%;
}

.services-layout .service-card{
  width:100%;
}


/* Section 05: Product & Analytics Review */
.review-section{
  min-height:calc(100svh - var(--header));
  display:flex;
  align-items:center;
  padding:48px 0;
  background:
    radial-gradient(circle at 82% 58%, rgba(47,107,255,.20), transparent 36%),
    radial-gradient(circle at 96% 22%, rgba(18,199,213,.10), transparent 22%),
    linear-gradient(135deg,#041936 0%,#06285f 100%);
  overflow:hidden;
  color:#ffffff;
}

.review-container{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:56px;
  align-items:center;
}

.review-copy{
  max-width:520px;
}

.review-copy h2{
  margin:0;
  color:#ffffff;
  font-size:62px;
  line-height:1.07;
  letter-spacing:-.055em;
  font-weight:900;
}

.review-copy p:not(.eyebrow){
  margin:20px 0 0;
  color:rgba(255,255,255,.84);
  font-size:17px;
  line-height:1.7;
}

.review-btn{
  margin-top:30px;
  background:linear-gradient(135deg,#0d55ff 0%,var(--teal) 100%);
  color:#ffffff;
  box-shadow:0 16px 36px rgba(13,85,255,.24);
}

.proof-row{
  display:flex;
  gap:24px;
  margin-top:42px;
  flex-wrap:wrap;
}

.proof-row > div{
  display:grid;
  grid-template-columns:48px 1fr;
  column-gap:12px;
  align-items:center;
  min-width:150px;
}

.proof-icon{
  grid-row:1 / 3;
  width:46px;
  height:46px;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  display:grid;
  place-items:center;
}

.proof-icon img{
  width:28px;
  height:28px;
}

.proof-row strong{
  color:#ffffff;
  font-size:13px;
  line-height:1.25;
}

.proof-row em{
  color:rgba(255,255,255,.68);
  font-style:normal;
  font-size:12px;
  line-height:1.3;
  margin-top:3px;
}

.review-visual{
  min-height:560px;
  position:relative;
  display:grid;
  place-items:center;
}

.review-stack{
  position:absolute;
  width:min(610px,86%);
  height:74px;
  border-radius:24px;
  background:rgba(255,255,255,.97);
  border:2px solid rgba(126,184,255,.72);
  box-shadow:0 18px 40px rgba(24,95,212,.22);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  color:#13234d;
}

.review-stack strong{
  font-size:16px;
  letter-spacing:-.03em;
}

.review-stack span{
  font-size:12px;
  color:#697693;
  background:#f5f8ff;
  padding:8px 12px;
  border-radius:10px;
}

.stack-top{
  top:30px;
  left:80px;
  z-index:1;
}

.stack-mid{
  top:108px;
  left:44px;
  z-index:2;
}

.review-dashboard-card{
  width:min(690px,100%);
  position:relative;
  z-index:3;
  margin-top:110px;
  padding:22px;
  border-radius:28px;
  background:rgba(255,255,255,.96);
  border:1px solid #dfe8f6;
  box-shadow:0 34px 74px rgba(0,0,0,.26);
  color:var(--ink);
}

.review-dash-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}

.review-dash-head strong{
  font-size:20px;
  letter-spacing:-.035em;
}

.review-dash-head div{
  display:flex;
  gap:9px;
}

.review-dash-head span{
  padding:8px 10px;
  background:#f8fbff;
  border:1px solid #e1e9f5;
  border-radius:10px;
  color:#586984;
  font-size:11px;
  font-weight:800;
}

.review-status::before{
  content:"●";
  color:#10b981;
  margin-right:6px;
}

.review-metrics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:11px;
}

.review-metrics div,
.review-chart-panel,
.review-funnel-panel,
.review-driver-row div{
  background:#ffffff;
  border:1px solid #e1e9f5;
  border-radius:15px;
}

.review-metrics div{
  min-height:84px;
  padding:13px;
}

.review-metrics small{
  display:block;
  color:#66758f;
  font-size:10.5px;
  font-weight:800;
  margin-bottom:7px;
}

.review-metrics b{
  display:block;
  font-size:20px;
  letter-spacing:-.035em;
}

.review-metrics em{
  display:block;
  font-size:10.5px;
  color:#0ba775;
  font-style:normal;
  font-weight:850;
  margin-top:5px;
}

.review-chart-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:13px;
  margin-top:13px;
}

.review-chart-panel,
.review-funnel-panel{
  min-height:190px;
  padding:15px;
}

.review-chart-panel svg{
  display:block;
  width:100%;
  height:140px;
}

.review-gridline{
  stroke:#e7eef8;
  stroke-width:1;
}

.review-funnel{
  display:grid;
  gap:8px;
  align-content:center;
  height:145px;
  padding:14px 20px;
}

.review-funnel i{
  display:block;
  height:26px;
  margin:auto;
  border-radius:4px;
  background:linear-gradient(180deg,#1458ff,#80e4e0);
  clip-path:polygon(5% 0,95% 0,80% 100%,20% 100%);
}

.review-funnel i:nth-child(1){width:100%;}
.review-funnel i:nth-child(2){width:84%;opacity:.9;}
.review-funnel i:nth-child(3){width:66%;opacity:.84;}
.review-funnel i:nth-child(4){width:48%;opacity:.76;}
.review-funnel i:nth-child(5){width:31%;opacity:.68;}

.review-driver-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:11px;
  margin-top:13px;
}

.review-driver-row div{
  padding:12px;
}

.review-driver-row b{
  display:block;
  font-size:16px;
}

.review-driver-row span{
  display:block;
  color:#6b7994;
  font-size:11px;
  margin-top:4px;
}

@media(max-height:850px) and (min-width:1000px){
  .review-section{padding:36px 0}
  .review-copy h2{font-size:54px}
  .review-copy p:not(.eyebrow){font-size:15.5px}
  .proof-row{margin-top:30px}
  .review-visual{min-height:500px}
  .review-dashboard-card{width:min(630px,100%);padding:18px}
  .review-stack{height:66px}
  .stack-top{top:20px}
  .stack-mid{top:90px}
  .review-dashboard-card{margin-top:96px}
  .review-chart-panel,.review-funnel-panel{min-height:168px}
  .review-chart-panel svg{height:118px}
}

@media(max-width:1050px){
  .review-section{min-height:auto;padding:72px 0}
  .review-container{
    grid-template-columns:1fr;
    gap:40px;
  }
  .review-visual{min-height:560px}
}

@media(max-width:640px){
  .review-copy h2{font-size:38px}
  .review-metrics,
  .review-chart-grid,
  .review-driver-row{
    grid-template-columns:1fr;
  }
  .review-dashboard-card{
    margin-top:112px;
    padding:16px;
  }
  .review-stack{
    left:4% !important;
    width:92%;
  }
}


/* Review visual refinement: single dashboard over soft purple-blue backdrop */
.review-stack{
  display:none !important;
}

.review-visual::before{
  content:"";
  position:absolute;
  width:min(690px,92%);
  height:470px;
  right:8px;
  top:50%;
  transform:translateY(-47%);
  border-radius:32px;
  background:linear-gradient(135deg, rgba(169,96,255,.95) 0%, rgba(47,107,255,.95) 62%, rgba(5,31,84,.98) 100%);
  box-shadow:0 28px 70px rgba(7,25,68,.26);
  opacity:.96;
}

.review-visual::after{
  content:"";
  position:absolute;
  width:min(620px,82%);
  height:390px;
  right:62px;
  top:50%;
  transform:translateY(-44%);
  border-radius:28px;
  background:radial-gradient(circle at 50% 30%, rgba(255,255,255,.18), transparent 40%);
  pointer-events:none;
}

.review-dashboard-card{
  margin-top:0 !important;
  width:min(650px,88%);
  transform:translateX(-18px);
}

@media(max-height:850px) and (min-width:1000px){
  .review-visual::before{
    height:420px;
  }
  .review-dashboard-card{
    width:min(610px,88%);
  }
}

@media(max-width:1050px){
  .review-visual::before{
    right:4%;
    width:92%;
  }
  .review-dashboard-card{
    transform:none;
    width:88%;
  }
}

/* Section 06: Experience */
.experience-section{
  min-height:calc(100svh - var(--header));
  display:flex;
  align-items:center;
  padding:48px 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(47,107,255,.06), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(18,199,213,.04), transparent 22%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  overflow:hidden;
}

.experience-container{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.experience-head{
  max-width:760px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.experience-head h2{
  margin:0;
  color:var(--ink);
  font-size:56px;
  line-height:1.06;
  letter-spacing:-.055em;
  font-weight:900;
}

.experience-head p:not(.eyebrow){
  margin:0;
  max-width:690px;
  color:var(--text);
  font-size:16px;
  line-height:1.66;
}

.industry-grid{
  display:grid;
  gap:24px;
}

.industry-top{
  grid-template-columns:repeat(4,1fr);
}

.industry-bottom{
  grid-template-columns:repeat(3,1fr);
  width:calc(75% - 12px);
  margin:0 auto;
}

.industry-grid article{
  min-height:176px;
  border:1px solid #dfe8f6;
  border-radius:23px;
  background:rgba(255,255,255,.88);
  box-shadow:0 16px 42px rgba(7,25,68,.055);
  padding:26px 28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.industry-grid .icon-card{
  margin-bottom:16px;
  width:70px;
  height:70px;
  border-radius:20px;
}

.industry-grid .icon-card img{
  width:42px;
  height:42px;
}

.industry-grid h3{
  margin:0;
  color:var(--ink);
  font-size:18.5px;
  line-height:1.2;
  letter-spacing:-.035em;
  font-weight:850;
}

.experience-note{
  margin:0;
  text-align:center;
  color:var(--ink);
  font-size:15.5px;
  line-height:1.5;
}

@media(max-height:850px) and (min-width:1000px){
  .experience-section{padding:36px 0}
  .experience-container{gap:22px}
  .experience-head h2{font-size:50px}
  .industry-grid article{min-height:150px;padding:22px 24px}
  .industry-grid .icon-card{width:62px;height:62px;margin-bottom:12px}
  .industry-grid .icon-card img{width:38px;height:38px}
}

@media(max-width:1050px){
  .experience-section{min-height:auto;padding:72px 0}
  .industry-top{grid-template-columns:repeat(2,1fr)}
  .industry-bottom{
    grid-template-columns:repeat(2,1fr);
    width:100%;
  }
}

@media(max-width:640px){
  .experience-head h2{font-size:36px}
  .industry-top,
  .industry-bottom{grid-template-columns:1fr}
}


/* Section 07: How We Work */
.work-section{
  min-height:calc(100svh - var(--header));
  display:flex;
  align-items:center;
  padding:48px 0;
  background:
    radial-gradient(circle at 92% 16%, rgba(47,107,255,.06), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(18,199,213,.04), transparent 22%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  overflow:hidden;
}

.work-container{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.work-head{
  max-width:720px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.work-head h2{
  margin:0;
  color:var(--ink);
  font-size:56px;
  line-height:1.06;
  letter-spacing:-.055em;
  font-weight:900;
}

.work-head p:not(.eyebrow){
  margin:0;
  max-width:690px;
  color:var(--text);
  font-size:16px;
  line-height:1.66;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.process-grid article{
  min-height:286px;
  border:1px solid #dfe8f6;
  border-radius:23px;
  background:rgba(255,255,255,.88);
  box-shadow:0 16px 42px rgba(7,25,68,.055);
  padding:28px 30px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.step-badge{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#eef5ff;
  border:1px solid #d7e4fb;
  color:var(--blue);
  font-size:20px;
  line-height:1;
  font-weight:900;
  margin-bottom:22px;
}

.process-icon{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
}

.process-icon img{
  width:58px;
  height:58px;
}

.process-grid h3{
  margin:0;
  color:var(--ink);
  font-size:20px;
  line-height:1.2;
  letter-spacing:-.035em;
  font-weight:850;
}

.process-grid p{
  margin:14px 0 0;
  color:var(--text);
  font-size:14.2px;
  line-height:1.6;
}

.work-note{
  margin:0;
  text-align:center;
  color:var(--ink);
  font-size:15.5px;
  line-height:1.55;
  max-width:820px;
  align-self:center;
}

/* Section 08: Founder */
.founder-section{
  min-height:calc(100svh - var(--header));
  display:flex;
  align-items:center;
  padding:48px 0;
  background:
    radial-gradient(circle at 92% 20%, rgba(47,107,255,.055), transparent 27%),
    radial-gradient(circle at 8% 84%, rgba(18,199,213,.035), transparent 22%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  overflow:hidden;
}

.founder-container{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:58px;
  align-items:center;
}

.founder-copy{
  max-width:620px;
}

.founder-head{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.founder-head h2{
  margin:0;
  color:var(--ink);
  font-size:58px;
  line-height:1.06;
  letter-spacing:-.055em;
  font-weight:900;
}

.founder-head p:not(.eyebrow){
  margin:0;
  color:var(--text);
  font-size:16px;
  line-height:1.66;
  max-width:580px;
}

.founder-points{
  margin:28px 0 30px;
  display:flex;
  flex-direction:column;
}

.founder-points > div{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid #dfe8f6;
}

.founder-points h4{
  margin:0;
  color:var(--ink);
  font-size:15.5px;
  line-height:1.25;
  font-weight:850;
}

.founder-points p{
  margin:5px 0 0;
  color:var(--text);
  font-size:13.8px;
  line-height:1.52;
}

.founder-btn{
  background:linear-gradient(135deg,#0d55ff 0%,var(--teal) 100%);
  color:#ffffff;
  box-shadow:0 16px 36px rgba(13,85,255,.20);
}

.button-icon{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
}

.button-icon img{
  width:24px;
  height:24px;
  filter:brightness(0) invert(1);
}

.founder-card{
  border:1px solid #dfe8f6;
  border-radius:28px;
  background:#ffffff;
  box-shadow:0 20px 56px rgba(7,25,68,.075);
  overflow:hidden;
}

.founder-photo{
  position:relative;
  height:440px;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  overflow:hidden;
  background:linear-gradient(180deg,#f6f8ff 0%,#ffffff 100%);
}

.photo-backdrop{
  position:absolute;
  inset:26px 34px 0;
  border-radius:30px 30px 0 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.82), transparent 42%),
    linear-gradient(180deg,#eef5ff 0%,#ffffff 100%);
  border:1px solid rgba(223,232,246,.82);
}

.founder-photo img{
  position:relative;
  z-index:2;
  height:405px;
  width:auto;
  max-width:86%;
  object-fit:contain;
  object-position:bottom center;
  filter:drop-shadow(0 18px 32px rgba(7,25,68,.16));
}

.founder-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:rgba(255,255,255,.96);
}

.founder-stats > div{
  text-align:center;
  padding:20px 16px;
  border-top:1px solid #dfe8f6;
  border-right:1px solid #dfe8f6;
}

.founder-stats > div:last-child{
  border-right:none;
}

.icon-card.tiny{
  width:50px;
  height:50px;
  border-radius:15px;
  margin:0 auto 9px;
}

.icon-card.tiny img{
  width:30px;
  height:30px;
}

.founder-stats strong{
  display:block;
  color:var(--ink);
  font-size:17px;
  line-height:1.2;
  font-weight:850;
}

.founder-stats p{
  margin:4px 0 0;
  color:#70809d;
  font-size:12.8px;
  line-height:1.4;
}

.site-footer{
  padding:20px 24px 30px;
  text-align:center;
  background:#ffffff;
  border-top:1px solid #dfe8f6;
  color:var(--text);
  font-size:14px;
}

@media(max-height:850px) and (min-width:1000px){
  .work-section,
  .founder-section{padding:36px 0}
  .work-container{gap:24px}
  .work-head h2,
  .founder-head h2{font-size:50px}
  .process-grid article{min-height:252px;padding:24px 26px}
  .step-badge{width:48px;height:48px;margin-bottom:16px}
  .process-icon{width:60px;height:60px;margin-bottom:14px}
  .process-icon img{width:50px;height:50px}
  .founder-photo{height:390px}
  .founder-photo img{height:360px}
  .founder-points{margin:22px 0 24px}
  .founder-points > div{padding:13px 0}
}

@media(max-width:1050px){
  .work-section,
  .founder-section{min-height:auto;padding:72px 0}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .founder-container{grid-template-columns:1fr;gap:40px}
}

@media(max-width:640px){
  .work-head h2,
  .founder-head h2{font-size:36px}
  .process-grid{grid-template-columns:1fr}
  .founder-photo{height:340px}
  .founder-photo img{height:310px}
  .founder-stats{grid-template-columns:1fr}
  .founder-stats > div{border-right:none}
}


/* =========================
   Final refinements
   ========================= */

/* Logo: preserve visual size while using padded asset */
.brand img{
  width:165px;
  height:auto;
  object-fit:contain;
}

/* Remove old trust strip if any legacy markup remains */
.trust-strip{
  display:none !important;
}

/* Belief section: balanced 2-column layout after removing trust strip */
.belief-section{
  min-height:calc(100svh - var(--header));
  padding:72px 0;
}

.belief-container{
  gap:0;
  justify-content:center;
}

.belief-content{
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:68px;
  align-items:center;
}

.belief-headline h2{
  max-width:590px;
  font-size:58px;
  line-height:1.08;
  letter-spacing:-.055em;
}

.belief-copy{
  max-width:590px;
  padding-left:62px;
  border-left:1px solid #dfe8f6;
}

.belief-copy .belief-strong{
  font-size:20px;
  line-height:1.55;
}

/* Services: only intro + equal service cards, no support strip here */
.services-container{
  gap:0;
}

.services-layout{
  grid-template-rows:250px 250px;
}

.services-intro .eyebrow{
  text-transform:uppercase;
}

/* Moved support strip: now belongs under Founder section */
.founder-container{
  grid-template-columns:.92fr 1.08fr;
  row-gap:28px;
}

.founder-support{
  grid-column:1 / -1;
  margin-top:2px;
}

/* Founder image: closer, clearer, no inner frame/border */
.photo-backdrop{
  display:none !important;
  border:none !important;
}

.founder-photo{
  height:450px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.85), transparent 44%),
    linear-gradient(135deg,#eef5ff 0%,#ffffff 100%);
}

.founder-photo img{
  width:100%;
  height:100%;
  max-width:none;
  object-fit:cover;
  object-position:center 18%;
  filter:none;
}

/* Founder card remains the only frame */
.founder-card{
  border:1px solid #dfe8f6;
  overflow:hidden;
}

/* Section fit after adding support strip to Founder */
.founder-section{
  padding:42px 0;
}

@media(max-height:850px) and (min-width:1000px){
  .belief-section{padding:54px 0}
  .belief-headline h2{font-size:52px}
  .belief-content{gap:58px}
  .services-layout{grid-template-rows:230px 230px}
  .founder-section{padding:32px 0}
  .founder-photo{height:390px}
  .founder-support > div{min-height:98px}
}

@media(max-width:1050px){
  .belief-section{min-height:auto;padding:72px 0}
  .belief-content{
    grid-template-columns:1fr;
    gap:34px;
  }
  .belief-copy{
    border-left:none;
    padding-left:0;
  }
  .belief-headline h2{
    font-size:46px;
    max-width:720px;
  }
  .founder-support{
    grid-column:auto;
  }
}

@media(max-width:640px){
  .brand img{width:146px}
  .belief-headline h2{font-size:38px}
  .founder-photo{height:340px}
  .founder-photo img{object-position:center 12%}
}


/* Founder final image treatment */
.founder-card{
  background:transparent;
  border:none;
  box-shadow:none;
  overflow:visible;
}

.founder-photo{
  height:540px;
  background:
    radial-gradient(circle at 50% 58%, rgba(47,107,255,.10), transparent 44%),
    linear-gradient(180deg, rgba(238,245,255,.72) 0%, rgba(255,255,255,0) 100%);
  border:none;
  border-radius:30px;
  overflow:visible;
  align-items:flex-end;
}

.founder-photo img{
  width:auto;
  height:100%;
  max-width:100%;
  object-fit:contain;
  object-position:bottom center;
  filter:drop-shadow(0 24px 34px rgba(7,25,68,.18));
}

.founder-stats{
  display:none !important;
}

@media(max-height:850px) and (min-width:1000px){
  .founder-photo{
    height:460px;
  }
}

@media(max-width:640px){
  .founder-photo{
    height:380px;
  }
}


/* Final cleanup: support strip removed from Services and Founder */
.service-support,
.founder-support{
  display:none !important;
}


/* =========================================================
   FINAL APPROVED ASSET + FIXED HEADER OVERRIDES
   Images are used exactly as uploaded; CSS only controls fit.
   ========================================================= */
html{
  scroll-behavior:smooth;
  scroll-padding-top:var(--header);
}

body{
  padding-top:var(--header);
}

.site-header{
  position:fixed !important;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:1000;
}

section[id]{
  scroll-margin-top:var(--header);
}

/* Exact approved logo asset — preserve complete canvas and final “s”. */
.brand{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  overflow:visible;
}

.brand img{
  display:block;
  width:165px !important;
  height:auto !important;
  max-width:none !important;
  object-fit:contain !important;
  object-position:center !important;
  overflow:visible;
}

/* Exact approved transparent founder image — no regeneration/background. */
.photo-backdrop{
  display:none !important;
}

.founder-card{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  overflow:visible !important;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.founder-photo{
  width:100%;
  height:540px !important;
  background:none !important;
  border:none !important;
  border-radius:0 !important;
  overflow:visible !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:center !important;
}

.founder-photo img{
  display:block;
  width:auto !important;
  height:100% !important;
  max-width:100% !important;
  object-fit:contain !important;
  object-position:center bottom !important;
  filter:drop-shadow(0 22px 32px rgba(7,25,68,.16)) !important;
}

@media(max-height:850px) and (min-width:1000px){
  .founder-photo{height:460px !important;}
}

@media(max-width:640px){
  .brand img{width:146px !important;}
  .founder-photo{height:380px !important;}
}


/* =========================================================
   FINAL GRAPHIC + NAVIGATION UPDATE
   ========================================================= */

/* Hero uses the approved full background layer and image-based dashboard. */
.hero-section{
  background-color:#ffffff !important;
  background-image:url("assets/hero-background.png") !important;
  background-repeat:no-repeat !important;
  background-size:cover !important;
  background-position:center center !important;
}

.hero-visual{
  position:relative;
  min-height:610px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}

.hero-graphic-image{
  display:block;
  width:112%;
  max-width:790px;
  height:auto;
  object-fit:contain;
  transform:translateX(3%);
  filter:drop-shadow(0 28px 52px rgba(47,107,255,.18));
}

/* Challenges: 50px additional top and bottom breathing room. */
.challenges-section{
  padding-top:98px !important;
  padding-bottom:98px !important;
}

.challenges-eyebrow{
  align-self:center;
  margin-bottom:0;
}

/* Product & Analytics Review now uses the approved stacked image asset. */
.review-visual{
  min-height:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  position:relative;
}

.review-visual::before,
.review-visual::after{
  display:none !important;
  content:none !important;
}

.review-graphic-image{
  display:block;
  width:112%;
  max-width:780px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 32px 62px rgba(0,0,0,.26));
}

/* Experience: two centered cards in row two. */
.industry-bottom{
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  width:calc(50% - 12px) !important;
  margin-inline:auto !important;
}

/* Footer copyright is vertically centered with equal padding. */
.site-footer{
  padding:24px !important;
}

@media(max-height:820px) and (min-width:1000px){
  .challenges-section{
    padding-top:84px !important;
    padding-bottom:84px !important;
  }
}

@media(max-width:1050px){
  .hero-graphic-image,
  .review-graphic-image{
    width:100%;
    max-width:760px;
    transform:none;
  }

  .industry-bottom{
    width:100% !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media(max-width:900px){
  .challenges-section{
    padding-top:122px !important;
    padding-bottom:122px !important;
  }
}

@media(max-width:640px){
  .hero-section{
    background-position:68% center !important;
  }

  .hero-visual{
    min-height:auto;
  }

  .hero-graphic-image,
  .review-graphic-image{
    width:100%;
    max-width:100%;
  }

  .industry-bottom{
    grid-template-columns:1fr !important;
    width:100% !important;
  }
}


/* =========================================================
   CONTROLLED FINAL GRAPHIC FIX
   Exact approved images, checker-free outer background,
   proportional sizing only.
   ========================================================= */
.hero-visual{
  min-height:610px;
  overflow:visible;
}

.hero-graphic-image{
  display:block !important;
  width:100% !important;
  max-width:790px !important;
  height:auto !important;
  object-fit:contain !important;
  object-position:center center !important;
  transform:translateX(2%) !important;
  filter:drop-shadow(0 28px 52px rgba(47,107,255,.18)) !important;
}

.review-visual{
  min-height:0 !important;
  overflow:visible !important;
}

.review-graphic-image{
  display:block !important;
  width:100% !important;
  max-width:790px !important;
  height:auto !important;
  object-fit:contain !important;
  object-position:center center !important;
  transform:none !important;
  filter:drop-shadow(0 30px 58px rgba(22,44,100,.20)) !important;
}

@media(max-width:1050px){
  .hero-graphic-image,
  .review-graphic-image{
    width:100% !important;
    max-width:760px !important;
    transform:none !important;
  }
}

@media(max-width:640px){
  .hero-graphic-image,
  .review-graphic-image{
    width:100% !important;
    max-width:100% !important;
  }
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section{
  padding:98px 0;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  overflow:hidden;
}

.contact-container{
  max-width:880px;
  display:block;
}

.contact-copy h2{
  margin:0 0 20px;
  font-size:56px;
  line-height:1.06;
  letter-spacing:-.055em;
  font-weight:900;
  color:var(--ink);
}

.contact-copy h2 span{
  color:var(--blue);
}

.contact-copy p:not(.eyebrow){
  margin:0 0 30px;
  max-width:590px;
  color:var(--text);
  font-size:16px;
  line-height:1.66;
  font-weight:400;
}

.contact-form{
  width:100%;
  max-width:none;
  padding:32px;
  border:1px solid rgba(198,211,233,.8);
  border-radius:16px;
  background:rgba(255,255,255,.94);
  box-shadow:0 22px 60px rgba(38,63,107,.10);
}

.form-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.contact-form label{
  display:block;
  margin-bottom:20px;
}

.contact-form label > span{
  display:block;
  margin-bottom:9px;
  color:var(--ink);
  font-size:13px;
  line-height:1.35;
  font-weight:800;
}

.contact-form b{
  color:#f15b6c;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  min-height:48px;
  border:1px solid #d7e1f1;
  border-radius:9px;
  background:#fff;
  color:var(--ink);
  font:600 14px/1.4 Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  outline:none;
  box-shadow:0 8px 22px rgba(13,48,96,.03);
  transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select{
  padding:0 15px;
}

.contact-form select{
  appearance:none;
  background-image:linear-gradient(45deg,transparent 50%,#7e8aa4 50%),linear-gradient(135deg,#7e8aa4 50%,transparent 50%);
  background-position:calc(100% - 18px) 21px,calc(100% - 13px) 21px;
  background-size:5px 5px,5px 5px;
  background-repeat:no-repeat;
  color:#7a86a1;
}

.contact-form select:valid,
.contact-form input:not(:placeholder-shown),
.contact-form textarea:not(:placeholder-shown){
  color:var(--ink);
}

.contact-form textarea{
  min-height:96px;
  resize:vertical;
  padding:15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:rgba(47,107,255,.72);
  box-shadow:0 0 0 4px rgba(47,107,255,.10);
}

.consent-field{
  display:flex !important;
  align-items:center;
  gap:10px;
  margin:2px 0 22px !important;
}

.consent-field input{
  width:16px;
  min-width:16px;
  height:16px;
  min-height:16px;
  accent-color:var(--blue);
  box-shadow:none;
}

.consent-field span{
  margin:0 !important;
  color:#4d5d78 !important;
  font-size:13px !important;
  font-weight:600 !important;
}

.turnstile-field{
  display:flex;
  justify-content:flex-start;
  min-height:65px;
  margin:0 0 18px;
}

.turnstile-field .cf-turnstile{
  max-width:100%;
}

.website-field{
  position:absolute !important;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-status{
  margin:0 0 18px;
  padding:14px 16px;
  border-radius:12px;
  font-size:14px !important;
  font-weight:700;
  line-height:1.45;
}

.form-status.success{
  color:#08705e !important;
  background:#e8fbf7;
  border:1px solid rgba(22,181,167,.26);
}

.form-status.error{
  color:#a83232 !important;
  background:#fff1f1;
  border:1px solid rgba(220,60,60,.24);
}

.contact-primary{
  width:100%;
  border:1px solid var(--blue);
  cursor:pointer;
}

.contact-primary{
  color:#fff;
  background:linear-gradient(90deg,#1859ff,#4a82ff);
  box-shadow:0 16px 34px rgba(47,107,255,.22);
}

.contact-primary:disabled{
  cursor:wait;
  opacity:.78;
}

@media(max-width:1050px){
  .contact-container{
    max-width:760px;
  }

  .contact-copy h2{
    font-size:48px;
  }

  .contact-form{max-width:none;}
}

@media(max-width:640px){
  .contact-section{
    padding:72px 0 56px;
  }

  .contact-copy h2{
    font-size:36px;
  }

  .contact-copy p:not(.eyebrow){
    font-size:16px;
  }

  .contact-form{
    padding:20px;
    border-radius:14px;
  }

  .form-row{
    grid-template-columns:1fr;
  }

}

/* Final responsive fix: Founder section stacks cleanly on tablet/mobile. */
@media(max-width:1050px){
  .founder-container{
    grid-template-columns:1fr !important;
    gap:36px !important;
    align-items:start !important;
  }

  .founder-copy{
    max-width:760px !important;
    width:100% !important;
  }

  .founder-card{
    width:100% !important;
    max-width:520px !important;
    justify-self:center !important;
  }

  .founder-photo{
    height:460px !important;
  }
}

@media(max-width:640px){
  .founder-section{
    padding:68px 0 58px !important;
  }

  .founder-container{
    gap:28px !important;
  }

  .founder-points > div{
    grid-template-columns:48px 1fr !important;
    gap:14px !important;
  }

  .founder-card{
    max-width:340px !important;
  }

  .founder-photo{
    height:330px !important;
  }
}
