:root{
      --bg:#09111f;
      --bg-2:#0d1728;
      --bg-3:#101c31;
      --card:rgba(255,255,255,.05);
      --card-2:rgba(255,255,255,.08);
      --line:rgba(255,255,255,.12);
      --text:#eef4ff;
      --muted:#9fb0c9;
      --gold:#d6b36a;
      --gold-2:#b89145;
      --accent:#1d4ed8;
      --ok:#19c37d;
      --danger:#ef4444;
      --shadow:0 20px 60px rgba(0,0,0,.35);
      --radius:22px;
      --radius-sm:16px;
      --container:1220px;
      --header-h:84px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:'Inter',sans-serif;
      background:
        radial-gradient(circle at top left, rgba(214,179,106,.08), transparent 30%),
        radial-gradient(circle at top right, rgba(29,78,216,.10), transparent 25%),
        linear-gradient(180deg,#07101d 0%, #0b1322 100%);
      color:var(--text);
      line-height:1.55;
    }

    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .section{
      padding:88px 0;
      position:relative;
    }

    .section-title{
      font-size:clamp(28px, 4vw, 46px);
      line-height:1.08;
      margin:0 0 16px;
      font-weight:800;
      letter-spacing:-0.03em;
    }

    .section-subtitle{
      color:var(--muted);
      font-size:18px;
      max-width:850px;
      margin:0 0 34px;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--gold);
      font-size:13px;
      font-weight:700;
      letter-spacing:.16em;
      text-transform:uppercase;
      margin-bottom:18px;
    }

    .eyebrow::before{
      content:"";
      width:38px;
      height:1px;
      background:linear-gradient(90deg,var(--gold),transparent);
    }

    header{
      position:fixed;
      inset:0 0 auto 0;
      height:var(--header-h);
      z-index:1000;
      transition:.3s ease;
      background:rgba(5,10,18,.45);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(255,255,255,.06);
    }

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

    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }

    .shield-logo{
      width:48px;
      height:48px;
      border-radius:14px;
      background:linear-gradient(135deg,#16243e,#0b1322);
      border:1px solid rgba(214,179,106,.28);
      display:grid;
      place-items:center;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 25px rgba(0,0,0,.25);
      position:relative;
      overflow:hidden;
    }

    .shield-logo::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(214,179,106,.15),transparent 60%);
      pointer-events:none;
    }

    .shield-logo span{
      font-weight:800;
      color:var(--gold);
      letter-spacing:.04em;
      font-size:18px;
      position:relative;
      z-index:1;
    }

    .brand-text{
      min-width:0;
    }

    .brand-title{
      font-weight:800;
      font-size:18px;
      line-height:1.1;
    }

    .brand-sub{
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .header-nav{
      display:flex;
      align-items:center;
      gap:14px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:18px;
    }

    .nav-links a{
      color:#d7e4f7;
      font-size:14px;
      transition:.2s ease;
    }

    .nav-links a:hover{color:var(--gold)}

    .lang-switch{
      display:flex;
      align-items:center;
      gap:8px;
      padding:6px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }

    .lang-switch button{
      border:none;
      background:transparent;
      color:#dbe8fb;
      padding:8px 12px;
      border-radius:999px;
      cursor:pointer;
      transition:.25s ease;
      font-weight:600;
    }

    .lang-switch button.active{
      background:linear-gradient(180deg, rgba(214,179,106,.24), rgba(214,179,106,.12));
      color:#fff;
      box-shadow:0 6px 16px rgba(0,0,0,.25);
    }
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
  transition:.25s ease;
}

.menu-toggle:hover{
  background:rgba(255,255,255,.10);
}

.mobile-menu{
  display:none;
  position:fixed;
  top:calc(var(--header-h) + 10px);
  left:12px;
  right:12px;
  z-index:1200;
  gap:10px;
  padding:12px;
  border-radius:18px;
  background:rgba(8,13,23,.96);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 50px rgba(0,0,0,.38);
  opacity:0;
  pointer-events:none;
  transform:translateY(-8px);
  transition:opacity .25s ease, transform .25s ease;
}

.mobile-menu a{
  display:block;
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#eef4ff;
  font-weight:600;
}

.mobile-menu a:hover{
  background:rgba(255,255,255,.08);
}

.mobile-menu.active{
  opacity:1;
  pointer-events:auto;
  transform:none;
}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:14px 22px;
      border-radius:14px;
      border:1px solid transparent;
      cursor:pointer;
      transition:.25s ease;
      font-weight:700;
      min-height:52px;
    }

    .btn-primary{
      background:linear-gradient(180deg,var(--gold),var(--gold-2));
      color:#101010;
      box-shadow:0 14px 34px rgba(214,179,106,.22);
    }

    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 20px 40px rgba(214,179,106,.28);
    }

    .btn-secondary{
      background:rgba(255,255,255,.06);
      color:#fff;
      border-color:rgba(255,255,255,.12);
    }

    .btn-secondary:hover{
      background:rgba(255,255,255,.10);
      transform:translateY(-2px);
    }

    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      padding-top:var(--header-h);
      background:
        linear-gradient(90deg, rgba(4,9,17,.88) 0%, rgba(4,9,17,.72) 34%, rgba(4,9,17,.48) 60%, rgba(4,9,17,.55) 100%),
        url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    }

    .hero::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:160px;
      background:linear-gradient(180deg,transparent,rgba(8,14,24,.96));
    }

    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:28px;
      align-items:end;
      padding:54px 0 68px;
    }

    .hero-panel{
      max-width:780px;
    }

    .hero-title{
      font-size:clamp(38px, 6vw, 74px);
      line-height:.98;
      letter-spacing:-.04em;
      margin:0 0 20px;
      font-weight:800;
    }

    .hero-desc{
      font-size:clamp(17px, 2vw, 21px);
      color:#d5e4f8;
      margin:0 0 30px;
      max-width:700px;
    }

    .hero-meta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:0 0 30px;
    }

    .meta-chip{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:12px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      color:#edf4ff;
      font-size:14px;
      backdrop-filter:blur(8px);
    }

    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }

    .hero-card{
      background:linear-gradient(180deg, rgba(12,20,35,.90), rgba(11,18,30,.75));
      border:1px solid rgba(255,255,255,.09);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:26px;
      backdrop-filter:blur(12px);
    }

    .kpi-top{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-bottom:14px;
    }

    .kpi-box{
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      padding:16px;
    }

    .kpi-label{
      color:var(--muted);
      font-size:13px;
      margin-bottom:8px;
    }

    .kpi-value{
      font-size:28px;
      font-weight:800;
      line-height:1;
    }

    .kpi-note{
      color:#cfe0f5;
      font-size:13px;
      margin-top:8px;
    }

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

    .card{
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border:1px solid rgba(255,255,255,.09);
      border-radius:22px;
      padding:24px;
      box-shadow:var(--shadow);
    }

    .mini-card{
      min-height:160px;
      transition:.3s ease;
      position:relative;
      overflow:hidden;
    }

    .mini-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(214,179,106,.10), transparent 55%);
      opacity:0;
      transition:.3s ease;
    }

    .mini-card:hover{
      transform:translateY(-6px);
      border-color:rgba(214,179,106,.22);
    }

    .mini-card:hover::before{opacity:1}

    .mini-card .num{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:12px;
      background:rgba(214,179,106,.14);
      color:var(--gold);
      font-weight:800;
      margin-bottom:18px;
      border:1px solid rgba(214,179,106,.18);
    }

    .mini-card h3{
      margin:0 0 10px;
      font-size:20px;
    }

    .mini-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .split{
      display:grid;
      grid-template-columns:1.02fr .98fr;
      gap:24px;
      align-items:start;
    }

    .table-wrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.03);
    }

    table{
      width:100%;
      border-collapse:collapse;
      min-width:620px;
    }

    th,td{
      text-align:left;
      padding:16px 18px;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-size:15px;
    }

    th{
      color:#dfe9f8;
      font-size:13px;
      letter-spacing:.06em;
      text-transform:uppercase;
      background:rgba(255,255,255,.04);
    }

    td{
      color:#e9f1fd;
    }

    .highlight{
      color:var(--gold);
      font-weight:700;
    }

    .metrics{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
      margin-top:18px;
    }

    .metric{
      border-radius:18px;
      padding:18px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
    }

    .metric-value{
      font-size:28px;
      font-weight:800;
      margin-top:8px;
      line-height:1;
    }

    .metric small{
      color:var(--muted);
      display:block;
    }

    .calc-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:start;
    }

    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }

    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-bottom:16px;
    }

    .field label{
      font-size:13px;
      color:#d9e7fb;
      font-weight:600;
    }

    .field input, .field textarea, .field select{
      width:100%;
      border:none;
      outline:none;
      color:#fff;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      border-radius:14px;
      padding:15px 16px;
      transition:.2s ease;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus{
      border-color:rgba(214,179,106,.45);
      box-shadow:0 0 0 4px rgba(214,179,106,.10);
    }

    .range-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:10px;
      align-items:center;
      margin-top:8px;
    }

    input[type="range"]{
      width:100%;
      accent-color:var(--gold);
      padding:0;
      background:transparent;
      border:none;
      box-shadow:none;
    }

    .range-value{
      min-width:92px;
      text-align:right;
      color:var(--gold);
      font-weight:700;
    }

    .calc-result{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }

    .result-box{
      border-radius:18px;
      padding:18px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.09);
    }

    .result-box .title{
      color:var(--muted);
      font-size:13px;
      margin-bottom:8px;
    }

    .result-box .value{
      font-size:30px;
      font-weight:800;
      line-height:1.05;
    }

    .result-box .sub{
      color:#c7d7ed;
      font-size:13px;
      margin-top:8px;
    }

    .cols-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
    }

    .feature-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:14px;
    }

    .feature-list li{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:16px;
      border-radius:16px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
    }

    .feature-list i{
      color:var(--gold);
      margin-top:2px;
      font-size:18px;
      width:20px;
      text-align:center;
    }
    .advantage-insights{
  margin-top:34px;
}

.advantage-topic-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.advantage-topic-card h3{
  margin:0 0 16px;
  font-size:24px;
  line-height:1.2;
}

.advantage-point-list{
  display:grid;
  gap:12px;
}

.advantage-point{
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.advantage-point strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
  font-size:15px;
}

.advantage-point p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

    .founder{
      display:grid;
      grid-template-columns:320px 1fr;
      gap:24px;
      align-items:start;
    }

    .founder-photo{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  min-height:420px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18)),
    url("../../images/founder.jpg") 50% 20%/cover no-repeat;
}
    
    .object-photo-card{
  margin:0 0 28px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.04);
}

.object-photo{
  display:block;
  width:100%;
  height:420px;
  object-fit:cover;
  object-position:center;
}

@media (max-width: 768px){
  .object-photo{
    height:260px;
  }
}

    .founder-meta{
      color:var(--muted);
      margin:10px 0 20px;
    }

    details{
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      border-radius:16px;
      padding:16px 18px;
      margin-top:14px;
    }

    details summary{
      cursor:pointer;
      font-weight:700;
      list-style:none;
    }

    details summary::-webkit-details-marker{display:none}

    details p{
      color:var(--muted);
      margin:14px 0 0;
    }

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

    .step-card{
      position:relative;
      min-height:220px;
    }

    .step-no{
      font-size:52px;
      font-weight:800;
      line-height:1;
      color:rgba(214,179,106,.24);
      margin-bottom:8px;
    }

    .faq{
      display:grid;
      gap:14px;
    }

    .faq-item{
      border:1px solid rgba(255,255,255,.09);
      border-radius:18px;
      background:rgba(255,255,255,.04);
      overflow:hidden;
    }

    .faq-q{
      width:100%;
      text-align:left;
      background:transparent;
      color:#fff;
      border:none;
      padding:20px 22px;
      font-weight:700;
      cursor:pointer;
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:center;
    }

    .faq-q i{
      transition:.25s ease;
      color:var(--gold);
    }

    .faq-item.active .faq-q i{
      transform:rotate(180deg);
    }

    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height .3s ease;
      color:var(--muted);
      padding:0 22px;
    }

    .faq-item.active .faq-a{
  max-height:420px;
  padding:0 22px 20px;
}

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

    .legal-card{
      min-height:180px;
    }

    .legal-card i{
      font-size:22px;
      color:var(--gold);
      margin-bottom:14px;
    }

    .contact-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
    }

    .contact-list{
      display:grid;
      gap:14px;
    }

    .contact-item{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:16px;
      border-radius:16px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
    }

    .contact-item i{
      color:var(--gold);
      width:20px;
      text-align:center;
      margin-top:3px;
    }

    .socials{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
    }

    .socials a{
      width:48px;
      height:48px;
      display:grid;
      place-items:center;
      border-radius:14px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      transition:.25s ease;
      font-size:18px;
    }

    .socials a:hover{
      transform:translateY(-3px);
      background:rgba(255,255,255,.10);
    }

    .form-note{
      color:var(--muted);
      font-size:13px;
      margin-top:10px;
    }

    footer{
      padding:34px 0 110px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--muted);
    }

    .footer-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }

    .sticky-cta{
      position:fixed;
      left:50%;
      transform:translateX(-50%);
      bottom:16px;
      width:min(680px, calc(100% - 20px));
      z-index:1100;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      background:rgba(8,13,23,.92);
      backdrop-filter:blur(14px);
      border:1px solid rgba(255,255,255,.10);
      border-radius:18px;
      padding:12px 12px 12px 16px;
      box-shadow:0 18px 50px rgba(0,0,0,.38);
    }

    .sticky-cta .text{
      min-width:0;
    }

    .sticky-cta .title{
      font-size:14px;
      color:#fff;
      font-weight:700;
    }

    .sticky-cta .sub{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:340px;
    }

    .reveal{
      opacity:0;
      transform:translateY(24px);
      transition:opacity .65s ease, transform .65s ease;
    }

    .reveal.visible{
      opacity:1;
      transform:none;
    }

    .mobile-only{display:none}

    @media (max-width: 1100px){
      .hero-grid,
      .split,
      .calc-grid,
      .cols-2,
      .contact-grid,
      .founder{
        grid-template-columns:1fr;
      }

      .legal-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .steps{
        grid-template-columns:1fr;
      }

      .grid-8{
        grid-template-columns:repeat(2,1fr);
      }

      .nav-links{
        display:none;
      }
      .advantage-topic-grid{
  grid-template-columns:1fr;
}
      .menu-toggle{
  display:grid;
  place-items:center;
}

.mobile-menu{
  display:grid;
}
    }

    @media (max-width: 768px){
      :root{--header-h:76px}

      .section{padding:68px 0}

      .hero{
        min-height:auto;
      }

      .hero-grid{
        padding:40px 0 44px;
      }

      .hero-title{
        font-size:40px;
      }

      .kpi-top,
      .metrics,
      .calc-result,
      .form-grid{
        grid-template-columns:1fr;
      }

      .grid-8,
      .legal-grid{
        grid-template-columns:1fr;
      }

      .header-inner{
        gap:10px;
      }

      .brand-sub{
        display:none;
      }

      .shield-logo{
        width:42px;
        height:42px;
      }

      .lang-switch button{
        padding:8px 10px;
      }

      .hero-actions{
        display:grid;
        grid-template-columns:1fr;
      }

      .sticky-cta{
        padding:10px;
        gap:10px;
      }

      .sticky-cta .sub{
        max-width:180px;
      }

      .sticky-cta .btn{
        min-height:46px;
        padding:12px 14px;
        font-size:14px;
      }

      .mobile-only{display:inline-flex}
    }

html, body{
  overflow-x:hidden;
}

[hidden]{
  display:none !important;
}

body.menu-open{
  overflow:hidden;
}

.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}

.field-error{
  min-height:18px;
  margin-top:6px;
  color:#ffb4b4;
  font-size:12px;
  line-height:1.4;
}

.field-error:empty{
  display:none;
}

.field input.is-invalid,
.field textarea.is-invalid{
  border-color:rgba(239,68,68,.75);
  box-shadow:0 0 0 4px rgba(239,68,68,.12);
}

.form-status{
  margin-top:16px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  font-size:14px;
  line-height:1.55;
}

.form-status--success{
  background:rgba(25,195,125,.08);
  border-color:rgba(25,195,125,.24);
  color:#9ff0cc;
}

.form-status--warning{
  background:rgba(214,179,106,.08);
  border-color:rgba(214,179,106,.24);
  color:#f2d79b;
}

.form-status--error{
  background:rgba(239,68,68,.08);
  border-color:rgba(239,68,68,.24);
  color:#ffb4b4;
}

.faq-a{
  display:none;
  color:var(--muted);
  padding:0 22px 20px;
}

.faq-item.active .faq-a{
  display:block;
}

.faq-a p{
  margin:0;
}

@media (max-width: 1024px){
  .container{
    width:calc(100% - 24px);
  }

  .hero-grid,
  .split,
  .calc-grid,
  .cols-2,
  .contact-grid,
  .founder{
    grid-template-columns:1fr;
    gap:20px;
  }

  .hero-panel,
  .hero-card{
    max-width:100%;
  }

  .grid-8{
    grid-template-columns:repeat(2,1fr);
  }

  .legal-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .steps{
    grid-template-columns:1fr;
  }

  .founder-photo{
    min-height:340px;
  }

  .object-photo{
    height:auto;
    max-height:none;
    object-fit:contain;
    object-position:center;
  }
}

@media (max-width: 768px){
  .container{
    width:calc(100% - 20px);
  }

  .section{
    padding:56px 0;
  }

  .hero-grid{
    padding:28px 0 32px;
    gap:18px;
  }

  .hero-title{
    font-size:34px;
    line-height:1.05;
  }

  .hero-desc,
  .section-subtitle{
    font-size:16px;
  }

  .hero-meta{
    gap:10px;
  }

  .meta-chip{
    width:100%;
    justify-content:flex-start;
    font-size:13px;
  }

  .card{
    padding:18px;
  }

  .kpi-value,
  .metric-value,
  .result-box .value{
    font-size:24px;
  }

  .founder-photo{
    min-height:320px;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center top;
    background-color:rgba(255,255,255,.04);
  }

  .object-photo{
    height:auto;
  }

  .table-wrap{
    margin:0 -2px;
  }

  table{
    min-width:520px;
  }

  th,
  td{
    padding:12px 14px;
    font-size:14px;
  }

  .sticky-cta{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    transform:none;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }

  .sticky-cta .sub{
    max-width:none;
    white-space:normal;
  }

  .sticky-cta > div:last-child{
    width:100%;
    display:flex;
    gap:10px;
  }

  .sticky-cta > div:last-child .btn{
    flex:1;
  }

  footer{
    padding-bottom:170px;
  }
}

@media (max-width: 480px){
  .hero-title{
    font-size:30px;
  }

  .section-title{
    font-size:28px;
  }

  .card{
    padding:16px;
  }

  .object-photo{
    height:auto;
  }

  .founder-photo{
    min-height:220px;
  }

  table{
    min-width:480px;
  }

  .sticky-cta{
    left:8px;
    right:8px;
    bottom:8px;
    padding:10px;
  }
}
