:root{
    --header-bg:#ffffff;
    --header-line:#eceef4;
    --navy:#0a0e1f;
    --navy-2:#121834;
    --indigo:#4f46e5;
    --violet:#9333ea;
    --grad:linear-gradient(90deg,var(--indigo),var(--violet));
    --section-bg:#ffffff;
    --section-alt:#f7f8fc;
    --text:#12141f;
    --text-dim:#5b6270;
    --text-faint:#8a90a2;
    --line:#e7e9f0;
    --footer-bg:#080b17;
    --footer-text:#aab0c8;
    --teal:#14b8a6;
    --orange:#f97316;
    --violet2:#8b5cf6;
    --blue:#3b82f6;
    --rose:#ec4899;
    --radius:16px;
  }
  html[data-theme="dark"]{
    --header-bg:#0d1220;
    --header-line:#1d2438;
    --section-bg:#0d1220;
    --section-alt:#10162a;
    --text:#f1f2fa;
    --text-dim:#a3acc4;
    --text-faint:#6a7290;
    --line:#232a42;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--section-bg); color:var(--text);
    font-family:'Inter', sans-serif; line-height:1.55;
    -webkit-font-smoothing:antialiased;
    transition:background .3s ease, color .3s ease;
  }
  h1,h2,h3,h4{font-family:'Space Grotesk', sans-serif; letter-spacing:-0.01em;}
  a{color:inherit; text-decoration:none;}
  img{display:block; max-width:100%;}
  .wrap{max-width:1240px; margin:0 auto; padding:0 28px;}
  .eyebrow-pill{
    display:inline-block; font-size:12px; font-weight:700; letter-spacing:.06em;
    text-transform:uppercase; color:var(--indigo); background:rgba(79,70,229,0.08);
    border:1px solid rgba(79,70,229,0.2); padding:6px 14px; border-radius:999px;
  }
  html[data-theme="dark"] .eyebrow-pill{ background:rgba(139,92,246,0.12); color:#c4b5fd; border-color:rgba(139,92,246,0.3); }

  header{
    position:sticky; top:0; z-index:60;
    background:rgba(var(--header-bg-rgb,255,255,255),0.92);
    background:var(--header-bg);
    border-bottom:1px solid var(--header-line);
    transition:background .3s ease, border-color .3s ease;
  }
  .nav-wrap{
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    padding:12px 28px; max-width:1240px; margin:0 auto;
  }
  .logo{ display:flex; align-items:center; flex-shrink:0; }
  .logo img{ height:44px; width:auto; display:block; }
  @media (max-width:768px){
    .logo img{ height:36px; }
  }
  /* NOTE: the dark navy pill-background workaround previously here is no
     longer needed — proper light/dark logo variants now exist below, so the
     header logo just sits directly on the header background in both themes. */
  header .logo img{ height:68px; }
  @media (max-width:768px){
    header .logo img{ height:56px; }
  }
  html[data-theme="dark"] header .logo{ background:transparent; padding:0; }
  /* Header logo swaps with the page theme (header background changes) */
  header .logo-img-dark{ display:none; }
  html[data-theme="dark"] header .logo-img-light{ display:none; }
  html[data-theme="dark"] header .logo-img-dark{ display:inline; }
  /* Footer is always dark (--footer-bg never changes with theme), so the
     footer logo always shows the white-text variant regardless of page theme */
  .footer-brand .logo-img-light{ display:none; }
  .footer-brand .logo-img-dark{ display:inline; }
  nav.links{ display:flex; align-items:center; gap:28px; }
  nav.links a{ font-size:14.5px; font-weight:500; color:var(--text-dim); transition:color .2s ease; }
  nav.links a:hover{ color:var(--text); }
  .book-demo-btn{
    background:var(--grad); color:#fff!important; font-weight:600; font-size:14px;
    padding:10px 20px; border-radius:10px; white-space:nowrap;
    display:inline-flex; align-items:center; gap:8px;
    box-shadow:0 8px 20px -8px rgba(79,70,229,0.55);
    transition:transform .2s ease;
  }
  .book-demo-btn:hover{ transform:translateY(-1px); }
  .theme-toggle{
    width:36px; height:36px; border-radius:50%; border:1px solid var(--line);
    background:var(--section-alt); color:var(--text); cursor:pointer;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    transition:border-color .2s ease;
  }
  .theme-toggle:hover{ border-color:var(--indigo); }
  .theme-toggle svg{ width:17px; height:17px; }
  .theme-toggle .icon-moon{ display:none; }
  html[data-theme="dark"] .theme-toggle .icon-sun{ display:none; }
  html[data-theme="dark"] .theme-toggle .icon-moon{ display:block; }
  .menu-toggle{ display:none; background:none; border:none; color:var(--text); font-size:24px; cursor:pointer; }
  .nav-right{ display:flex; align-items:center; gap:14px; }

  .hero{
    background:radial-gradient(circle at 15% 20%, rgba(79,70,229,0.18), transparent 45%), var(--navy);
    padding:64px 28px 60px; color:#fff; position:relative; overflow:hidden;
  }
  .hero-grid{
    max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
  }
  .hero-badge{
    display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700;
    letter-spacing:.05em; text-transform:uppercase; color:#c7d2fe;
    background:rgba(79,70,229,0.18); border:1px solid rgba(99,102,241,0.35);
    padding:7px 14px; border-radius:999px; margin-bottom:22px;
  }
  .hero-left h1{
    font-size:clamp(2.1rem, 3.6vw, 3rem); font-weight:700; line-height:1.12; margin-bottom:20px;
  }
  .hero-left h1 span{
    background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .hero-left p{ color:#aab0d0; font-size:16px; max-width:460px; margin-bottom:30px; }
  .hero-ctas{ display:flex; gap:14px; margin-bottom:36px; flex-wrap:wrap; }
  .btn-grad{
    background:var(--grad); color:#fff; font-weight:600; font-size:14.5px;
    padding:13px 24px; border-radius:10px; display:inline-flex; align-items:center; gap:8px;
    box-shadow:0 10px 24px -10px rgba(79,70,229,0.6); transition:transform .2s ease;
  }
  .btn-grad:hover{ transform:translateY(-2px); }
  .btn-outline{
    border:1px solid rgba(255,255,255,0.25); color:#fff; font-weight:600; font-size:14.5px;
    padding:13px 24px; border-radius:10px; display:inline-flex; align-items:center; gap:8px;
    transition:border-color .2s ease, background .2s ease;
  }
  .btn-outline:hover{ background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.5); }
  .hero-features{ display:flex; gap:28px; flex-wrap:wrap; }
  .hero-features .feat{ display:flex; align-items:flex-start; gap:10px; max-width:150px; }
  .hero-features svg{ width:20px; height:20px; flex-shrink:0; margin-top:2px; stroke:#93c5fd; }
  .hero-features span{ font-size:13px; color:#c3c9e2; font-weight:500; }

  .hero-right{ position:relative; }
  .slider-tabs-top{ display:flex; flex-wrap:wrap; gap:12px 20px; margin-bottom:16px; }
  .slider-tabs-top button{
    background:none; border:none; color:#7d84a5; cursor:pointer;
    display:flex; flex-direction:column; align-items:center; gap:6px; font-size:12px; font-weight:600;
    padding-bottom:8px; border-bottom:2px solid transparent; white-space:nowrap; flex-shrink:0;
    transition:color .2s ease, border-color .2s ease;
  }
  .slider-tabs-top button svg{ width:20px; height:20px; }
  .slider-tabs-top button.active{ color:#fff; border-color:var(--indigo); }

  .slide-card{
    position:relative; border-radius:20px; overflow:hidden; min-height:460px;
    background:var(--navy-2); border:1px solid rgba(255,255,255,0.08);
  }
  .slide-panel{ position:absolute; inset:0; display:none; }
  .slide-panel.active{ display:block; }
  .slide-panel .bg-photo{ position:absolute; inset:0; background-size:cover; background-position:center; }
  .slide-panel .bg-photo::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(100deg, rgba(10,14,31,0.88) 30%, rgba(10,14,31,0.25) 75%);
  }
  .slide-panel .bg-graphic{
    position:absolute; inset:0;
    background:radial-gradient(circle at 75% 30%, rgba(79,70,229,0.35), transparent 55%), var(--navy-2);
  }
  .slide-panel .bg-graphic .glyph{
    position:absolute; right:8%; top:50%; transform:translateY(-50%); width:180px; height:180px; opacity:0.16;
  }
  .slide-panel .bg-graphic .glyph svg{ width:100%; height:100%; stroke:#a5b4fc; }
  .chat-bubble{
    position:absolute; top:24px; left:24px; background:#fff; color:#12141f;
    border-radius:14px 14px 14px 4px; padding:12px 16px; font-size:13.5px; font-weight:600;
    box-shadow:0 12px 30px -10px rgba(0,0,0,0.4); max-width:190px; z-index:2;
  }
  .chat-bubble .wave{ display:flex; gap:2px; align-items:flex-end; margin-top:6px; height:16px; }
  .chat-bubble .wave span{ width:3px; background:var(--indigo); border-radius:2px; }
  .info-card{
    position:absolute; right:22px; top:22px; bottom:22px; width:230px;
    background:rgba(10,14,31,0.72); backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,0.12); border-radius:14px; padding:20px; z-index:2;
    display:flex; flex-direction:column;
  }
  .info-card h3{ font-size:17px; color:#fff; margin-bottom:8px; }
  .info-card p{ font-size:12.5px; color:#b7bdda; margin-bottom:16px; }
  .info-card .pill{
    display:flex; align-items:center; gap:8px; font-size:12px; font-weight:600; color:#e5e7ff;
    background:rgba(255,255,255,0.06); padding:8px 10px; border-radius:8px; margin-bottom:8px;
  }
  .info-card .pill svg{ width:14px; height:14px; flex-shrink:0; }
  .info-card .pill.p1{ color:#a5b4fc; } .info-card .pill.p1 svg{ stroke:#a5b4fc; }
  .info-card .pill.p2{ color:#f9a8d4; } .info-card .pill.p2 svg{ stroke:#f9a8d4; }
  .info-card .pill.p3{ color:#86efac; } .info-card .pill.p3 svg{ stroke:#86efac; }
  .info-card .cta{
    margin-top:auto; font-size:12.5px; font-weight:700; color:#fff; background:var(--grad);
    padding:9px; border-radius:8px; text-align:center;
  }

  /* smoke shop slide: content sits directly on the photo itself via a
     left-to-right gradient scrim — no separate card, the image is the
     full background of the panel */
  .bg-photo.smoke-photo{ background-position: 78% 15%; }
  .bg-photo.smoke-photo::after{
    background:linear-gradient(100deg, rgba(10,14,31,0.97) 32%, rgba(10,14,31,0.62) 56%, rgba(10,14,31,0.1) 85%);
  }
  .photo-overlay{
    position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; justify-content:center;
    padding:28px 26px; max-width:330px;
  }
  .photo-overlay h3{ font-size:23px; font-weight:700; color:#fff; margin-bottom:10px; line-height:1.2; text-shadow:0 2px 8px rgba(0,0,0,0.6); }
  .photo-overlay h3 .grad-text{
    background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .photo-overlay > p{ font-size:12.5px; color:#dde0f2; margin-bottom:16px; line-height:1.5; text-shadow:0 1px 5px rgba(0,0,0,0.65); }
  .smoke-features{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .smoke-feature{
    display:flex; align-items:center; gap:11px;
    padding:2px 0;
  }
  .smoke-feature .icon-circle{
    width:34px; height:34px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.35);
  }
  .smoke-feature .icon-circle svg{ width:16px; height:16px; }
  .smoke-feature .icon-circle.fc1{ background:rgba(139,92,246,0.32); color:var(--violet2); }
  .smoke-feature .icon-circle.fc2{ background:rgba(236,72,153,0.32); color:var(--rose); }
  .smoke-feature .icon-circle.fc3{ background:rgba(59,130,246,0.32); color:var(--blue); }
  .smoke-feature .icon-circle.fc4{ background:rgba(249,115,22,0.32); color:var(--orange); }
  .smoke-feature h4{ font-size:12.5px; font-weight:600; color:#fff; margin-bottom:1px; text-shadow:0 1px 4px rgba(0,0,0,0.7); }
  .smoke-feature p{ font-size:11px; color:#cfd3ea; text-shadow:0 1px 4px rgba(0,0,0,0.7); }
  .scrim-cta{
    display:inline-flex; align-items:center; gap:6px; margin-top:2px;
    background:var(--grad); color:#fff; font-weight:700; font-size:13px;
    padding:12px 20px; border-radius:8px; box-shadow:0 8px 18px -8px rgba(79,70,229,0.6);
    max-width:fit-content;
  }

  /* senior living slide: same "content directly on photo" treatment,
     single-line icon pills instead of the two-line feature rows */
  .bg-photo.senior-photo{ background-position: 84% 42%; }
  .bg-photo.senior-photo::after{
    background:linear-gradient(100deg, rgba(10,14,31,0.95) 30%, rgba(10,14,31,0.5) 58%, rgba(10,14,31,0.08) 88%);
  }
  .overlay-pills{ display:flex; flex-direction:column; gap:10px; margin-bottom:18px; }
  .overlay-pill{
    display:flex; align-items:center; gap:9px; font-size:12.5px; font-weight:600; color:#fff;
    text-shadow:0 1px 4px rgba(0,0,0,0.7);
  }
  .overlay-pill svg{ width:16px; height:16px; flex-shrink:0; filter:drop-shadow(0 1px 3px rgba(0,0,0,0.6)); }
  .overlay-pill.op1{ color:#a5b4fc; } .overlay-pill.op1 svg{ stroke:#a5b4fc; }
  .overlay-pill.op2{ color:#f9a8d4; } .overlay-pill.op2 svg{ stroke:#f9a8d4; }
  .overlay-pill.op3{ color:#86efac; } .overlay-pill.op3 svg{ stroke:#86efac; }

  /* tire industry slide: same photo-overlay treatment, using the
     product's own green accent instead of the site-wide indigo/violet,
     to match the greens already baked into the source screenshot */
  .bg-photo.tire-photo{ background-position: 76% 40%; }
  .bg-photo.tire-photo::after{
    background:linear-gradient(100deg, rgba(6,10,8,0.95) 32%, rgba(6,10,8,0.5) 58%, rgba(6,10,8,0.06) 88%);
  }
  .tire-overlay h3 .grad-text{
    background:linear-gradient(90deg,#84cc16,#22c55e); -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .tire-overlay .icon-circle.fc1{ background:rgba(132,204,22,0.2); color:#a3e635; }
  .tire-overlay .icon-circle.fc2{ background:rgba(34,197,94,0.2); color:#4ade80; }
  .tire-overlay .icon-circle.fc3{ background:rgba(16,185,129,0.2); color:#34d399; }
  .tire-overlay .icon-circle.fc4{ background:rgba(20,184,166,0.2); color:#2dd4bf; }
  .tire-overlay .scrim-cta{
    background:linear-gradient(90deg,#84cc16,#22c55e); box-shadow:0 8px 18px -8px rgba(34,197,94,0.55);
  }

  /* job match ai slide: default indigo/violet accent (already matches
     the source image's palette), same photo-overlay treatment */
  .bg-photo.jobai-photo{ background-position: 70% 30%; }
  .bg-photo.jobai-photo::after{
    background:linear-gradient(100deg, rgba(10,14,31,0.95) 30%, rgba(10,14,31,0.5) 56%, rgba(10,14,31,0.08) 86%);
  }

  .slide-arrows button{
    position:absolute; top:50%; transform:translateY(-50%); z-index:3;
    width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.25);
    background:rgba(10,14,31,0.55); color:#fff; cursor:pointer; font-size:16px;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s ease;
  }
  .slide-arrows button:hover{ background:rgba(79,70,229,0.5); }
  .slide-arrows .prev{ left:16px; } .slide-arrows .next{ right:16px; }
  .slider-dots{ display:flex; justify-content:center; gap:6px; margin-top:16px; }
  .slider-dots button{
    width:22px; height:4px; border-radius:2px; border:none; background:rgba(255,255,255,0.18);
    cursor:pointer; padding:0; transition:background .2s ease, width .2s ease;
  }
  .slider-dots button.active{ background:var(--indigo); width:32px; }

  .trust-strip{
    background:var(--section-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:20px 28px; text-align:center;
  }
  .trust-strip span{ font-size:13px; color:var(--text-faint); letter-spacing:.03em; }

  .solutions{ padding:88px 28px; max-width:1240px; margin:0 auto; }
  .section-head-center{ text-align:center; max-width:640px; margin:0 auto 48px; }
  .section-head-center h2{ font-size:clamp(1.7rem,3vw,2.3rem); font-weight:700; margin:14px 0 12px; }
  .section-head-center p{ color:var(--text-dim); font-size:15.5px; }
  .sol-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
  .sol-card{
    background:var(--section-bg); border:1px solid var(--line); border-radius:var(--radius);
    overflow:hidden; display:flex; flex-direction:column; transition:transform .25s ease, box-shadow .25s ease;
  }
  .sol-card:hover{ transform:translateY(-5px); box-shadow:0 20px 40px -22px rgba(79,70,229,0.35); }
  .sol-card .media{ height:120px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;}
  .sol-card .media img{ width:100%; height:100%; object-fit:cover; }
  .sol-card .icon-circle{ width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center; }
  .sol-card .icon-circle svg{ width:26px; height:26px; }
  .sol-card .body{ padding:20px 18px 22px; flex:1; display:flex; flex-direction:column; }
  .sol-card h3{ font-size:16px; font-weight:600; margin-bottom:8px; }
  .sol-card p{ font-size:13px; color:var(--text-dim); flex:1; margin-bottom:14px; line-height:1.5; }
  .sol-card .learn{ font-size:13px; font-weight:700; display:inline-flex; align-items:center; gap:5px; }

  .stats-bar{ background:var(--grad); padding:36px 28px; margin:0; }
  .stats-inner{ max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .stat{ display:flex; align-items:center; gap:14px; }
  .stat .icon-circ{
    width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,0.16);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .stat .icon-circ svg{ width:22px; height:22px; stroke:#fff; }
  .stat .num{ font-size:22px; font-weight:700; color:#fff; font-family:'Space Grotesk',sans-serif; }
  .stat .lbl{ font-size:12.5px; color:#e3e0ff; }

  .about{ padding:88px 28px; max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
  .about-left h2{ font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700; margin:14px 0 16px; }
  .about-left p{ color:var(--text-dim); font-size:15px; margin-bottom:26px; max-width:420px; }
  .about-right{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
  .about-feat{ background:var(--section-alt); border:1px solid var(--line); border-radius:14px; padding:22px; }
  .about-feat .icon-circle{ width:42px; height:42px; border-radius:11px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
  .about-feat .icon-circle svg{ width:20px; height:20px; }
  .about-feat h4{ font-size:14.5px; font-weight:600; margin-bottom:6px; }
  .about-feat p{ font-size:12.5px; color:var(--text-dim); }

  .cta-banner{
    max-width:1240px; margin:0 auto 88px; background:var(--grad); border-radius:22px;
    padding:38px 44px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  }
  .cta-banner-left{ display:flex; align-items:center; gap:18px; }
  .cta-banner-left .icon-circ{
    width:54px; height:54px; border-radius:50%; background:rgba(255,255,255,0.18);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .cta-banner-left .icon-circ svg{ width:24px; height:24px; stroke:#fff; }
  .cta-banner h3{ color:#fff; font-size:20px; margin-bottom:4px; }
  .cta-banner p{ color:#e3e0ff; font-size:13.5px; max-width:420px; }
  .btn-white{
    background:#fff; color:var(--indigo); font-weight:700; font-size:14px;
    padding:13px 24px; border-radius:10px; display:inline-flex; align-items:center; gap:8px;
    white-space:nowrap;
  }

  footer{ background:var(--footer-bg); padding:56px 28px 26px; color:var(--footer-text); }
  .footer-top{ max-width:1240px; margin:0 auto; display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); }
  .footer-brand .logo{ margin-bottom:14px; }
  .footer-brand p{ font-size:13px; max-width:250px; color:#8890ac; margin-bottom:16px; }
  .footer-social{ display:flex; gap:10px; }
  .footer-social a{
    width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.14);
    display:flex; align-items:center; justify-content:center; transition:border-color .2s ease;
  }
  .footer-social a:hover{ border-color:var(--indigo); }
  .footer-social svg{ width:15px; height:15px; }
  .footer-cols{ display:flex; gap:52px; flex-wrap:wrap; }
  .footer-col h4{ font-size:12.5px; text-transform:uppercase; letter-spacing:.07em; color:#6b7292; margin-bottom:16px; font-weight:600; }
  .footer-col a, .footer-col .line{ display:block; font-size:13.5px; margin-bottom:11px; color:#c0c5dd; }
  .footer-col a:hover{ color:#fff; }
  .footer-bottom{
    max-width:1240px; margin:24px auto 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    font-size:12px; color:#6b7292;
  }
  .footer-bottom a{ margin-left:18px; }

  @media (max-width:980px){
    .hero-grid{ grid-template-columns:1fr; }
    .sol-grid{ grid-template-columns:repeat(2,1fr); }
    .stats-inner{ grid-template-columns:repeat(2,1fr); }
    .about{ grid-template-columns:1fr; }
    .about-right{ grid-template-columns:1fr 1fr; }
    .info-card{ display:none; }
    .photo-overlay{ max-width:100%; }
    .smoke-feature p{ display:none; }
  }
  @media (max-width:640px){
    nav.links{
      position:fixed; top:62px; left:0; right:0; bottom:0; background:var(--header-bg);
      flex-direction:column; align-items:flex-start; padding:30px 28px; gap:20px;
      transform:translateX(100%); transition:transform .3s ease; z-index:55; border-top:1px solid var(--line);
    }
    nav.links.open{ transform:translateX(0); }
    .menu-toggle{ display:block; }
    .sol-grid{ grid-template-columns:1fr; }
    .stats-inner{ grid-template-columns:1fr; }
    .cta-banner{ flex-direction:column; align-items:flex-start; }
  }

/* ============ Contact Page ============ */
.contact-hero{
  background:radial-gradient(circle at 20% 20%, rgba(79,70,229,0.14), transparent 45%), var(--navy);
  padding:64px 28px 56px; color:#fff; text-align:center;
}
.contact-hero .wrap{ max-width:760px; }
.contact-hero h1{ font-size:clamp(2rem,3.6vw,2.7rem); font-weight:700; margin:16px 0 14px; line-height:1.15; }
.contact-hero h1 .grad-heading{
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.contact-hero p{ color:#aab0d0; font-size:15.5px; }
.contact-hero p a{ color:#c7d2fe; text-decoration:underline; }

.contact-grid{
  display:grid; grid-template-columns:1.4fr 1fr; gap:44px;
  padding:64px 28px; max-width:1240px; margin:0 auto; align-items:start;
}
.contact-form{
  background:var(--section-bg); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px; box-shadow:0 20px 50px -30px rgba(0,0,0,0.25);
}
.contact-form h2{ font-size:22px; font-weight:700; margin-bottom:6px; }
.form-sub{ color:var(--text-dim); font-size:13.5px; margin-bottom:26px; }
.form-row{ display:grid; gap:16px; margin-bottom:16px; }
.form-row.two{ grid-template-columns:1fr 1fr; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-row .field{ margin-bottom:0; }
.field label{ font-size:13px; font-weight:600; color:var(--text); }
.field label .req{ color:#ef4444; }
.field input, .field select, .field textarea{
  font-family:'Inter', sans-serif; font-size:14px; color:var(--text);
  background:var(--section-alt); border:1px solid var(--line); border-radius:10px;
  padding:11px 13px; outline:none; transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--indigo); box-shadow:0 0 0 3px rgba(79,70,229,0.15);
}
.field textarea{ resize:vertical; min-height:110px; font-family:inherit; }

.consent-check{
  display:flex; align-items:flex-start; gap:10px; margin:22px 0 16px; cursor:pointer;
}
.consent-check input{ margin-top:3px; width:16px; height:16px; accent-color:var(--indigo); flex-shrink:0; cursor:pointer; }
.consent-text{ font-size:12px; color:var(--text-dim); line-height:1.6; }
.consent-text a{ color:var(--indigo); text-decoration:underline; }

.captcha-box{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
  background:var(--section-alt); border:1px solid var(--line); border-radius:10px;
  padding:14px 18px; margin-bottom:22px;
}
.captcha-check{ display:flex; align-items:center; gap:10px; cursor:pointer; }
.captcha-check input{ position:absolute; opacity:0; width:0; height:0; }
.captcha-mark{
  width:22px; height:22px; border-radius:5px; border:2px solid var(--line);
  background:var(--section-bg); display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, border-color .2s ease; flex-shrink:0;
}
.captcha-mark svg{ width:14px; height:14px; color:#fff; opacity:0; transform:scale(0.6); transition:opacity .15s ease, transform .15s ease; }
.captcha-check input:checked ~ .captcha-mark{ background:var(--indigo); border-color:var(--indigo); }
.captcha-check input:checked ~ .captcha-mark svg{ opacity:1; transform:scale(1); }
.captcha-check input:focus-visible ~ .captcha-mark{ box-shadow:0 0 0 3px rgba(79,70,229,0.25); }
.captcha-label{ font-size:13.5px; font-weight:600; color:var(--text); }
.captcha-badge{ display:flex; align-items:center; gap:7px; font-size:11px; color:var(--text-faint); }
.captcha-badge svg{ width:22px; height:22px; stroke:var(--text-faint); }

.submit-btn{ width:100%; justify-content:center; font-size:15px; padding:14px; border:none; cursor:pointer; }
.submit-btn:disabled{ opacity:0.55; cursor:not-allowed; }
.form-status{ margin-top:14px; font-size:13.5px; text-align:center; min-height:18px; }
.form-status.success{ color:#22c55e; font-weight:600; }
.form-status.error{ color:#ef4444; font-weight:600; }

.contact-info{ display:flex; flex-direction:column; gap:20px; }
.info-card-block{
  background:var(--section-alt); border:1px solid var(--line); border-radius:var(--radius); padding:26px;
}
.info-card-block h3{ font-size:15.5px; font-weight:700; margin-bottom:18px; }
.info-row{ display:flex; align-items:center; gap:13px; margin-bottom:16px; }
.info-row:last-child{ margin-bottom:0; }
.info-row .icon-circle{ width:40px; height:40px; border-radius:11px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-row .icon-circle svg{ width:19px; height:19px; }
.info-row h4{ font-size:12.5px; color:var(--text-faint); font-weight:600; margin-bottom:2px; }
.info-row a, .info-row span{ font-size:14px; color:var(--text); font-weight:600; }
.info-row a:hover{ color:var(--indigo); }

.quick-link{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 0; border-bottom:1px solid var(--line); font-size:13.5px; font-weight:600; color:var(--text);
}
.quick-link:last-child{ border-bottom:none; }
.quick-link span{ font-size:12.5px; font-weight:700; color:var(--indigo); white-space:nowrap; }
.quick-link:hover span{ text-decoration:underline; }

.location-block{ margin-bottom:0; }
.location-header{ display:flex; align-items:flex-start; gap:13px; margin-bottom:14px; }
.location-header .icon-circle{ width:40px; height:40px; border-radius:11px; display:flex; align-items:center; justify-content:center; }
.location-header .icon-circle svg{ width:19px; height:19px; }
.location-header h4{ font-size:14.5px; font-weight:700; color:var(--text); margin-bottom:4px; }
.location-header address{ font-style:normal; font-size:13px; color:var(--text-dim); line-height:1.55; }
.map-embed{
  border-radius:12px; overflow:hidden; border:1px solid var(--line); margin-bottom:10px; line-height:0;
}
.map-link{ font-size:12.5px; font-weight:700; color:var(--indigo); }
.map-link:hover{ text-decoration:underline; }

/* ============ Legal / Privacy Policy Page ============ */
.legal-page{
  max-width:800px; padding:56px 28px 88px; margin:0 auto;
}
.legal-intro{ font-size:15.5px; color:var(--text-dim); line-height:1.7; margin-bottom:36px; }
.legal-page h2{
  font-size:20px; font-weight:700; margin:38px 0 12px; padding-top:6px;
}
.legal-page h2:first-of-type{ margin-top:0; }
.legal-page h3{ font-size:15.5px; font-weight:700; margin:18px 0 8px; color:var(--text); }
.legal-page p{ font-size:14.5px; color:var(--text-dim); line-height:1.75; margin-bottom:14px; }
.legal-page ul{ margin:0 0 16px; padding-left:22px; }
.legal-page li{ font-size:14.5px; color:var(--text-dim); line-height:1.75; margin-bottom:6px; }
.legal-page a{ color:var(--indigo); text-decoration:underline; }
.legal-page strong{ color:var(--text); }
.legal-contact-box{
  margin-top:40px; padding:26px; background:var(--section-alt); border:1px solid var(--line);
  border-radius:var(--radius);
}
.legal-contact-box h3{ margin-top:0; margin-bottom:8px; }
.legal-contact-box p{ margin-bottom:0; }

/* ============ About Us Page ============ */
.about-page{
  max-width:1080px; padding:64px 28px 40px; margin:0 auto;
}
.mission-callout{
  background:var(--section-alt); border:1px solid var(--line); border-radius:var(--radius);
  padding:38px; margin-bottom:64px; text-align:center;
}
.mission-callout .eyebrow-pill{ margin-bottom:16px; }
.mission-callout p{ font-size:16.5px; color:var(--text); line-height:1.7; max-width:760px; margin:0 auto; }

.section-head-left{ max-width:680px; margin-bottom:28px; }
.section-head-left h2{ font-size:clamp(1.4rem,2.6vw,1.9rem); font-weight:700; margin:12px 0 10px; }
.section-sub{ color:var(--text-dim); font-size:14.5px; }
.body-text{ font-size:14.5px; color:var(--text-dim); line-height:1.75; max-width:760px; margin-bottom:8px; }
.sub-h{ font-size:16.5px; font-weight:700; margin:26px 0 8px; }

.about-page > .about-right{ margin-bottom:64px; }
.about-page .about-feat p{ font-size:13px; line-height:1.6; }

.info-card-block.wide{
  max-width:100%; margin-bottom:64px;
}
.info-card-block.wide.grid-2{
  display:grid; grid-template-columns:1fr 1fr; gap:6px 24px;
}
.info-card-block.wide .info-row{ margin-bottom:18px; align-items:flex-start; }
.info-card-block.wide .info-row .icon-circle{ width:42px; height:42px; border-radius:11px; }
.info-card-block.wide .info-row h4{ font-size:14px; color:var(--text); margin-bottom:3px; }
.info-card-block.wide .info-row span{ font-size:12.5px; color:var(--text-dim); font-weight:500; line-height:1.5; }

.tech-stack{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:22px; }
.tech-badge{
  background:var(--section-alt); border:1px solid var(--line); padding:9px 18px;
  border-radius:999px; font-size:13px; font-weight:600; color:var(--text);
}

.feat-grid-3{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:64px;
}
.innovation-card{
  background:var(--section-alt); border:1px solid var(--line); border-radius:14px; padding:24px;
}
.innovation-card h4{ font-size:14.5px; font-weight:700; margin-bottom:8px; }
.innovation-card p{ font-size:13px; color:var(--text-dim); line-height:1.6; }

@media (max-width:760px){
  .info-card-block.wide.grid-2{ grid-template-columns:1fr; }
  .feat-grid-3{ grid-template-columns:1fr; }
}

@media (max-width:860px){
  .contact-grid{ grid-template-columns:1fr; }
  .form-row.two{ grid-template-columns:1fr; }
}