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

:root{
    --navy:#001B4D;
    --navy-2:#012A6B;
    --blue:#0466C8;
    --blue-light:#EAF2FC;
    --ink:#0F1B33;
    --gray:#5B6472;
    --gray-light:#8A93A3;
    --line:#E2E8F0;
    --white:#FFFFFF;
    --paper:#FAFBFD;
    --radius:14px;
    --maxw:1180px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth; overflow-x:hidden; }
  body{
    margin:0;
    font-family:'Inter', 'Segoe UI', sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Manrope', 'Segoe UI', sans-serif;
    margin:0;
    line-height:1.08;
    letter-spacing:-0.03em;
    color:var(--navy);
    font-weight:800;
  }
  p{margin:0; color:var(--gray); line-height:1.6;}
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .eyebrow{
    font-family:'Inter', 'Segoe UI', sans-serif;
    font-size:12.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--blue);
    font-weight:700;
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
  }
  .eyebrow::before{
    content:"";
    width:16px;
    height:1px;
    background:var(--blue);
    display:inline-block;
    flex-shrink:0;
  }
  .wrap{
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 32px;
  }
  section{position:relative;}

  /* ===== Focus visibility ===== */
  a:focus-visible, button:focus-visible{
    outline:2px solid var(--blue);
    outline-offset:3px;
    border-radius:4px;
  }

  /* ===== Nav ===== */
  header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    max-width:var(--maxw);
    margin:0 auto;
    padding:12px 32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .nav img{height:46px; width:auto; display:block; flex-shrink:0;}
  .nav-links{
    display:flex;
    align-items:center;
    gap:36px;
  }
  .nav-links a{
    font-size:14.5px;
    font-weight:500;
    color:var(--ink);
    padding:6px 0;
    border-bottom:1px solid transparent;
    transition:border-color .2s, color .2s;
    white-space:nowrap;
  }
  .nav-links a:hover{ color:var(--blue); border-color:var(--blue);}
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-family:'Inter', 'Segoe UI', sans-serif;
    font-weight:600;
    font-size:14.5px;
    padding:12px 22px;
    border-radius:999px;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--blue);
    color:var(--white);
    box-shadow:0 1px 2px rgba(4,102,200,0.15);
  }
  .btn-primary:hover{ transform:translateY(-1px); box-shadow:0 8px 20px rgba(4,102,200,0.28);}
  .btn-ghost{
    background:transparent;
    color:var(--navy);
    border-color:var(--line);
  }
  .btn-ghost:hover{ border-color:var(--blue); color:var(--blue);}
  .nav-cta{ display:flex; align-items:center; gap:8px; flex-shrink:0; }
  .menu-btn{ display:none; background:none; border:none; cursor:pointer; padding:6px; flex-shrink:0; }
  .menu-btn span{ display:block; width:22px; height:2px; background:var(--navy); margin:5px 0; border-radius:2px; transition:all .3s ease; }

  /* ===== Hero ===== */
  .hero{
    padding:88px 0 70px;
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:center;
  }
  .hero h1{
    font-size:clamp(36px, 4.6vw, 58px);
    margin-top:18px;
    word-spacing:-0.05em;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--blue);
  }
  .hero p.lead{
    font-size:17.5px;
    margin-top:20px;
    max-width:480px;
    color:var(--gray);
  }
  .hero-actions{
    display:flex;
    gap:14px;
    margin-top:34px;
    flex-wrap:wrap;
    align-items:center;
  }
  .hero-tags{
    margin-top:40px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .tag{
    font-family:'Inter', 'Segoe UI', sans-serif;
    font-size:12px;
    color:var(--navy-2);
    background:var(--blue-light);
    border:1px solid #D6E7FA;
    padding:6px 12px;
    border-radius:999px;
    flex-shrink:0;
  }
  .hero-visual{
    position:relative;
    aspect-ratio:1/0.92;
    overflow:hidden;
  }
  .hero-visual svg{ width:100%; height:100%; display:block; }
  .chart-path{
    fill:none;
    stroke:var(--blue);
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:900;
    stroke-dashoffset:900;
    animation:draw 2.1s cubic-bezier(.65,0,.35,1) .3s forwards;
  }
  .chart-fill{
    opacity:0;
    animation:fadeIn 1s ease .9s forwards;
  }
  .chart-dot{
    opacity:0;
    animation:popIn .5s ease forwards;
  }
  .chart-dot.d1{animation-delay:0.75s;}
  .chart-dot.d2{animation-delay:1.15s;}
  .chart-dot.d3{animation-delay:1.55s;}
  .chart-dot.d4{animation-delay:1.95s;}
  .float-card{
    position:absolute;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:12px;
    padding:12px 16px;
    box-shadow:0 12px 30px rgba(1,27,77,0.09);
    font-family:'Inter', 'Segoe UI', sans-serif;
    opacity:0;
    animation:floatIn .6s ease forwards;
  }
  .float-card .num{ font-family:'Manrope', 'Segoe UI', sans-serif; font-size:20px; font-weight:800; color:var(--navy); line-height:1;}
  .float-card .lbl{ font-size:10.5px; color:var(--gray); text-transform:uppercase; letter-spacing:.06em; margin-top:4px;}
  .fc1{ top:6%; right:2%; animation-delay:2.1s;}
  .fc2{ bottom:10%; left:0%; animation-delay:2.3s;}

  @keyframes draw{ to{ stroke-dashoffset:0; } }
  @keyframes fadeIn{ to{ opacity:1; } }
  @keyframes popIn{ to{ opacity:1; transform:scale(1);} }
  @keyframes floatIn{ from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }

  /* baseline divider motif */
  .baseline{
    height:1px;
    background:linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
    position:relative;
  }
  .baseline::after{
    content:"";
    position:absolute;
    top:-3px; left:50%;
    transform:translateX(-50%);
    width:7px; height:7px;
    border-radius:50%;
    background:var(--blue);
  }

  /* ===== Section heading ===== */
  .section-head{
    max-width:640px;
    margin-bottom:52px;
  }
  .section-head h2{
    font-size:clamp(28px,3.2vw,40px);
    margin-top:14px;
    word-spacing:-0.05em;
  }
  .section-head p{
    margin-top:16px;
    font-size:16px;
    line-height:1.65;
  }
  .center{ text-align:center; margin-left:auto; margin-right:auto; }
  .center .eyebrow{ justify-content:center; }
  .center .eyebrow::before{ display:none; }

  /* ===== Services ===== */
  .services{ padding:96px 0; background:var(--paper); }
  .service-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
  }
  .service-card{
    background:var(--white);
    padding:36px 30px;
    transition:background .2s ease;
  }
  .service-card:hover{ background:var(--blue-light); }
  .service-icon{
    width:44px; height:44px;
    border-radius:10px;
    background:var(--navy);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:22px;
  }
  .service-icon svg{ width:22px; height:22px; stroke:var(--white); }
  .service-card h3{
    font-size:19px;
    margin-bottom:10px;
  }
  .service-card p{ font-size:14.5px; }
  .service-num{
    font-family:'Inter', 'Segoe UI', sans-serif;
    font-size:12px;
    color:var(--gray-light);
    margin-bottom:14px;
    display:block;
  }
  .learn-more{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:16px;
    font-size:13.5px;
    font-weight:600;
    color:var(--blue);
  }
  .learn-more span{ transition:transform .15s ease; }
  .learn-more:hover span{ transform:translateX(3px); }

  /* ===== Process ===== */
  .process{ padding:96px 0; }
  .process-row{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:0;
    position:relative;
  }
  .process-row::before{
    content:"";
    position:absolute;
    top:19px; left:6%; right:6%;
    height:1px;
    background:repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  }
  .process-step{ padding:0 22px 0 0; position:relative; }
  .step-marker{
    width:38px; height:38px;
    border-radius:50%;
    background:var(--white);
    border:2px solid var(--blue);
    color:var(--blue);
    font-family:'Inter', 'Segoe UI', sans-serif;
    font-weight:700;
    font-size:13px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:24px;
    position:relative;
    z-index:2;
  }
  .process-step h3{ font-size:18px; margin-bottom:10px;}
  .process-step p{ font-size:14px; }

  /* ===== Stats ===== */
  .stats{
    background:var(--navy);
    padding:72px 0;
  }
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
  }
  .stat h4{
    font-family:'Manrope', 'Segoe UI', sans-serif;
    color:var(--white);
    font-size:clamp(30px,4vw,44px);
    font-weight:800;
  }
  .stat h4 span{ color:var(--blue); }
  .stat p{
    color:#93A6C9;
    font-size:13.5px;
    margin-top:8px;
    font-family:'Inter', 'Segoe UI', sans-serif;
    text-transform:uppercase;
    letter-spacing:.05em;
  }

  /* ===== Work ===== */
  .work{ padding:96px 0; }
  .work-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .work-card{
    border-radius:var(--radius);
    overflow:hidden;
    border:1px solid var(--line);
    background:var(--white);
  }
  .work-visual{
    aspect-ratio:4/3;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
  }
  .work-visual svg{ width:60%; height:60%; }
  .work-body{ padding:22px 24px 26px; }
  .work-body .tagline{
    font-family:'Inter', 'Segoe UI', sans-serif;
    font-size:11.5px;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:var(--blue);
    margin-bottom:8px;
    display:block;
  }
  .work-body h3{ font-size:18px; margin-bottom:8px; }
  .work-body p{ font-size:14px; }

  /* ===== Testimonials ===== */
  .testimonials{ padding:96px 0; background:var(--paper); }
  .test-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .test-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:30px 28px;
  }
  .stars{ color:var(--blue); font-size:14px; letter-spacing:2px; margin-bottom:18px; }
  .test-card p.quote{
    font-size:15px;
    color:var(--ink);
    line-height:1.65;
    margin-bottom:22px;
  }
  .test-author{ display:flex; align-items:center; gap:12px; }
  .avatar{
    width:38px; height:38px;
    border-radius:50%;
    background:var(--navy);
    color:var(--white);
    font-family:'Manrope', 'Segoe UI', sans-serif;
    font-weight:800;
    font-size:14px;
    display:flex; align-items:center; justify-content:center;
  }
  .test-author .name{ font-weight:600; font-size:14px; color:var(--navy); }
  .test-author .role{ font-size:12.5px; color:var(--gray-light); }

  /* ===== CTA ===== */
  .cta{
    margin:0 32px 96px;
    max-width:calc(var(--maxw) - 64px);
    margin-left:auto; margin-right:auto;
    background:var(--navy);
    border-radius:24px;
    padding:64px 60px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
  }
  .cta::before{
    content:"";
    position:absolute;
    right:-80px; top:-80px;
    width:280px; height:280px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(4,102,200,0.35), transparent 70%);
  }
  .cta h2{ color:var(--white); font-size:clamp(26px,3vw,34px); max-width:440px; position:relative;}
  .cta p{ color:#93A6C9; margin-top:12px; max-width:420px; position:relative; }
  .cta-actions{ display:flex; gap:14px; flex-shrink:0; position:relative; }
  .btn-white{ background:var(--white); color:var(--navy); }
  .btn-white:hover{ transform:translateY(-1px); box-shadow:0 8px 20px rgba(0,0,0,0.25); }
  .btn-outline-light{ border-color:rgba(255,255,255,0.3); color:var(--white); }
  .btn-outline-light:hover{ border-color:var(--white); }

  /* ===== Footer ===== */
  footer{ padding:56px 0 32px; background:var(--white); border-top:1px solid var(--line); }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
  }
  .footer-brand img{ height:28px; margin-bottom:16px; }
  .footer-brand p{ font-size:14px; max-width:260px; line-height:1.6; color:var(--gray); }
  .footer-col h5{
    font-family:'Inter', 'Segoe UI', sans-serif;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--gray-light);
    margin-bottom:16px;
    font-weight:600;
  }
  .footer-col a{
    display:block;
    font-size:14px;
    color:var(--gray);
    margin-bottom:12px;
    transition:color .15s;
    line-height:1.6;
  }
  .footer-col a:hover{ color:var(--blue); }
  .footer-bottom{
    padding-top:28px;
    border-top:1px solid var(--line);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
  }
  .footer-bottom p{ font-size:13px; color:var(--gray-light); }
  .socials{ display:flex; gap:14px; }
  .socials a{
    width:36px; height:36px;
    border-radius:50%;
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    transition:all .2s ease;
  }
  .socials a:hover{ border-color:var(--blue); background:var(--blue-light); }
  .socials svg{ width:16px; height:16px; stroke:var(--gray); transition:stroke .2s ease; }
  .socials a:hover svg{ stroke:var(--blue); }

  /* ===== Reveal on scroll ===== */
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    .chart-path, .chart-fill, .chart-dot, .float-card, .reveal{ animation:none !important; opacity:1 !important; transform:none !important; stroke-dashoffset:0 !important; }
  }

  /* ===== Responsive ===== */
  
  /* Tablet: 768px - 980px */
  @media (max-width: 980px){
    .wrap{ padding:0 24px; }
    .nav{ padding:12px 24px; }
    .nav-links{ display:none; }
    .nav-cta .btn:first-child{ display:none; }
    .menu-btn{ display:block; }
    .hero{ padding:64px 0 50px; }
    .hero-grid{ grid-template-columns:1fr; gap:40px; }
    .hero h1{ font-size:clamp(32px, 3.8vw, 48px); }
    .hero-visual{ order:-1; max-width:380px; margin:0 auto; }
    .section-head { margin-bottom:40px; }
    .section-head h2{ font-size:clamp(24px, 2.8vw, 32px); }
    .service-grid{ grid-template-columns:repeat(2,1fr); gap:16px; }
    .service-card { padding:28px 22px; }
    .process-row{ grid-template-columns:repeat(2,1fr); row-gap:40px; }
    .process-row::before{ display:none; }
    .stats-grid{ grid-template-columns:repeat(2,1fr); row-gap:32px; gap:24px; }
    .work-grid{ grid-template-columns:1fr 1fr; gap:16px; }
    .test-grid{ grid-template-columns:1fr; gap:16px; }
    .pricing-grid{ grid-template-columns:repeat(2,1fr); }
    .price-card.featured{ transform:none; }
    .footer-grid{ grid-template-columns:repeat(2,1fr); gap:32px; row-gap:32px; }
    .footer-brand{ grid-column:1/3; }
    .contact-grid{ grid-template-columns:1fr; }
    .cta{ flex-direction:column; align-items:flex-start; padding:44px 32px; }
  }
  
  /* Mobile: 360px - 767px */
  @media (max-width: 767px){
    html, body{ width:100%; overflow-x:hidden; }
    .wrap{ padding:0 16px; width:100%; box-sizing:border-box; }
    .nav{ padding:12px 16px; gap:12px; }
    .nav img{ height:40px; }
    .nav-cta{ display:none; }
    .menu-btn{ display:block; }
    
    .hero{ padding:48px 0 40px; }
    .hero-grid{ grid-template-columns:1fr; gap:32px; }
    .hero h1{ font-size:clamp(26px, 5.5vw, 36px); margin-top:16px; line-height:1.2; }
    .hero p.lead{ font-size:15px; line-height:1.6; }
    .hero-actions{ flex-direction:column; gap:10px; }
    .hero-actions .btn{ width:100%; padding:14px 16px; font-size:14px; }
    .hero-visual{ max-width:100%; width:100%; }
    .float-card{ display:none; }
    .hero-tags{ margin-top:32px; gap:8px; flex-wrap:wrap; }
    .tag{ font-size:11px; padding:5px 10px; }
    
    .services{ padding:48px 0; }
    .section-head{ margin-bottom:24px; }
    .section-head h2{ font-size:clamp(24px, 4.5vw, 28px); margin-top:12px; }
    .section-head p{ font-size:14.5px; margin-top:12px; }
    .service-grid{ grid-template-columns:1fr; gap:12px; }
    .service-card{ padding:20px 16px; }
    .service-card h3{ font-size:16px; margin-bottom:8px; }
    .service-card p{ font-size:13px; }
    .learn-more{ font-size:12.5px; }
    
    .process{ padding:48px 0; }
    .process-row{ grid-template-columns:1fr; gap:0; row-gap:24px; }
    .step-marker{ width:32px; height:32px; font-size:12px; }
    .process-step h3{ font-size:15px; margin-bottom:6px; }
    .process-step p{ font-size:13px; }
    
    .stats{ padding:40px 0; }
    .stats-grid{ grid-template-columns:1fr; gap:20px; }
    .stat h4{ font-size:clamp(22px, 5vw, 30px); }
    .stat p{ font-size:11.5px; }
    
    .work{ padding:48px 0; }
    .work-grid{ grid-template-columns:1fr; gap:16px; }
    .work-body{ padding:16px 14px; }
    .work-body .tagline{ font-size:10px; margin-bottom:4px; }
    .work-body h3{ font-size:15px; margin-bottom:4px; }
    .work-body p{ font-size:12px; }
    
    .testimonials{ padding:48px 0; }
    .test-grid{ grid-template-columns:1fr; gap:12px; }
    .test-card{ padding:20px 16px; }
    .test-card p.quote{ font-size:13px; margin-bottom:14px; }
    .avatar{ width:32px; height:32px; font-size:11px; }
    .test-author .name{ font-size:12px; }
    .test-author .role{ font-size:10.5px; }
    
    .pricing{ padding:40px 0 32px; overflow-x:hidden; }
    .pricing-grid{
      display:flex;
      flex-direction:column;
      gap:14px;
      width:100%;
      max-width:100%;
      box-sizing:border-box;
    }
    .price-card{
      padding:20px 16px;
      width:100%;
      max-width:100%;
      box-sizing:border-box;
      margin:0;
      min-width:0;
    }
    .price-card.featured{ transform:none; }
    .price-card.featured::before{ top:-8px; left:16px; font-size:9px; padding:3px 8px; }
    .price-card h3{ font-size:14px; margin-bottom:8px; font-weight:600; }
    .price-amount{ font-size:24px; margin:8px 0 6px; font-weight:700; }
    .price-amount span{ font-size:10px; font-weight:400; }
    .price-note{ font-size:11px; margin-bottom:12px; line-height:1.4; }
    .price-list{ display:flex; flex-direction:column; gap:0; margin-bottom:12px; }
    .price-list li{ font-size:11px; padding:8px 0; word-break:break-word; line-height:1.4; display:flex; align-items:flex-start; gap:6px; }
    .price-list svg{ width:12px; height:12px; margin-top:3px; flex-shrink:0; }
    .pricing-foot{ margin-top:16px; font-size:11px; }
    .price-card .btn{ width:100%; font-size:13px; padding:10px 12px; }
    
    .contact-section{ padding:40px 0 32px; overflow-x:hidden; }
    .contact-grid{ display:flex; flex-direction:column; gap:20px; width:100%; }
    .contact-info-card{ padding:20px 16px; background:var(--navy); border-radius:10px; color:var(--white); }
    .contact-info-card h3{ font-size:16px; margin-bottom:8px; color:var(--white); font-weight:600; }
    .contact-info-card p{ font-size:12px; margin-bottom:12px; color:#93A6C9; line-height:1.4; }
    .contact-line{ display:flex; align-items:flex-start; gap:10px; padding:10px 0; border-top:1px solid rgba(255,255,255,0.14); }
    .contact-line:first-of-type{ border-top:none; }
    .contact-line svg{ width:14px; height:14px; margin-top:2px; flex-shrink:0; stroke:#6FA8F0; }
    .contact-line > div{ flex:1; }
    .contact-line .lbl{ font-size:9px; text-transform:uppercase; letter-spacing:.06em; color:#6F86AE; font-weight:600; }
    .contact-line .val{ font-size:12px; color:var(--white); margin-top:2px; }
    .contact-info-card .socials{ margin-top:16px; gap:10px; }
    .contact-info-card .socials a{ width:28px; height:28px; }
    .contact-info-card .socials svg{ width:12px; height:12px; }
    .form-card{ padding:20px 16px; background:var(--white); border:1px solid var(--line); border-radius:10px; width:100%; box-sizing:border-box; }
    .form-row{ display:flex; flex-direction:column; gap:12px; }
    .field{ margin-bottom:0; }
    .field label{ font-size:12px; margin-bottom:6px; font-weight:600; }
    .field input, .field select, .field textarea{ font-size:16px; padding:10px 12px; border-radius:6px; width:100%; box-sizing:border-box; }
    .field textarea{ min-height:100px; }
    .form-submit{ width:100%; font-size:13px; padding:11px 12px; }
    
    .cta{ margin:0 0 48px; padding:24px 16px; border-radius:12px; }
    .cta h2{ font-size:clamp(20px, 4vw, 24px); max-width:100%; }
    .cta p{ font-size:12px; margin-top:8px; max-width:100%; }
    .cta-actions{ flex-direction:column; gap:10px; }
    .btn{ padding:11px 14px; font-size:13px; }
    
    footer{ padding:40px 0 20px; background:var(--white); border-top:1px solid var(--line); }
    .footer-grid{ grid-template-columns:1fr; gap:20px; padding-bottom:20px; width:100%; }
    .footer-brand{ margin-bottom:4px; }
    .footer-brand img{ height:20px; margin-bottom:10px; }
    .footer-brand p{ font-size:12px; line-height:1.5; }
    .footer-col h5{ font-size:9px; margin-bottom:10px; letter-spacing:.08em; color:var(--gray-light); font-weight:600; text-transform:uppercase; }
    .footer-col a{ font-size:11px; margin-bottom:6px; line-height:1.4; color:var(--gray); display:block; }
    .footer-col a:hover{ color:var(--blue); }
    .footer-bottom{ flex-direction:column; align-items:flex-start; gap:12px; padding-top:14px; border-top:1px solid var(--line); width:100%; }
    .footer-bottom p{ font-size:10px; color:var(--gray-light); }
    .socials{ margin-top:12px; gap:10px; }
    .socials a{ width:28px; height:28px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; }
    .socials a:hover{ border-color:var(--blue); background:var(--blue-light); }
    .socials svg{ width:12px; height:12px; stroke:var(--gray); }
    .socials a:hover svg{ stroke:var(--blue); }
  }
  
  @media (max-width: 600px){
    .hero-actions .btn{ width:100%; }
  }
  
  /* Very small phones (under 360px) */
  @media (max-width: 360px) {
    .nav img{ height:36px; }
    .hero h1{ font-size:clamp(24px, 5vw, 32px); }
    .hero p.lead{ font-size:14px; }
    .tag{ font-size:10px; padding:4px 8px; }
    .section-head h2{ font-size:clamp(20px, 4vw, 24px); }
    .cta{ padding:24px 16px; margin:0 12px 48px; }
  }

/* ===== Pricing ===== */
.pricing{ padding:96px 0; background:var(--paper); }
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}
.price-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 30px;
  display:flex;
  flex-direction:column;
}
.price-card.featured{
  background:var(--navy);
  border-color:var(--navy);
  position:relative;
  transform:translateY(-8px);
}
.price-card.featured::before{
  content:"Most popular";
  position:absolute;
  top:-13px; left:30px;
  background:var(--blue);
  color:var(--white);
  font-family:'Inter', 'Segoe UI', sans-serif;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  padding:5px 12px;
  border-radius:999px;
}
.price-card h3{ font-size:19px; }
.price-card.featured h3, .price-card.featured .price-note{ color:var(--white); }
.price-amount{
  font-family:'Manrope', 'Segoe UI', sans-serif;
  font-size:40px;
  font-weight:800;
  color:var(--navy);
  margin:18px 0 4px;
}
.price-card.featured .price-amount{ color:var(--white); }
.price-amount span{
  font-family:'Inter', 'Segoe UI', sans-serif;
  font-size:14px;
  font-weight:500;
  color:var(--gray-light);
}
.price-card.featured .price-amount span{ color:#93A6C9; }
.price-note{ font-size:13.5px; color:var(--gray); margin-bottom:26px; }
.price-list{ list-style:none; padding:0; margin:0 0 30px; flex-grow:1; }
.price-list li{
  font-size:14.5px;
  color:var(--gray);
  padding:10px 0;
  border-top:1px solid var(--line);
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.price-card.featured .price-list li{ color:#C7D3E8; border-color:rgba(255,255,255,0.14); }
.price-list li:first-child{ border-top:none; }
.price-list svg{ width:16px; height:16px; flex-shrink:0; margin-top:2px; stroke:var(--blue); }
.price-card.featured .price-list svg{ stroke:#6FA8F0; }
.price-card .btn{ width:100%; }
.pricing-foot{
  text-align:center;
  margin-top:34px;
  font-size:14px;
  color:var(--gray);
}
.pricing-foot a{ color:var(--blue); font-weight:600; }

/* ===== Contact form ===== */
.contact-section{ padding:96px 0; }
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:56px;
  align-items:start;
}
.contact-info-card{
  background:var(--navy);
  border-radius:var(--radius);
  padding:40px 34px;
  color:var(--white);
}
.contact-info-card h3{ color:var(--white); font-size:22px; margin-bottom:14px;}
.contact-info-card p{ color:#93A6C9; font-size:14.5px; margin-bottom:30px; }
.contact-line{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,0.14);
}
.contact-line:first-of-type{ border-top:none; }
.contact-line svg{ width:18px; height:18px; stroke:#6FA8F0; flex-shrink:0; }
.contact-line .lbl{ font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:#6F86AE; font-family:'Inter', 'Segoe UI', sans-serif; font-weight:700; }
.contact-line .val{ font-size:14.5px; color:var(--white); margin-top:2px; }
.contact-info-card .socials{ margin-top:30px; }
.contact-info-card .socials a{ border-color:rgba(255,255,255,0.25); }
.contact-info-card .socials svg{ stroke:#C7D3E8; }

.form-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:38px 36px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--navy);
  margin-bottom:8px;
}
.field input, .field select, .field textarea{
  width:100%;
  font-family:'Inter', 'Segoe UI', sans-serif;
  font-size:14.5px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:9px;
  background:var(--paper);
  color:var(--ink);
  transition:border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(4,102,200,0.12);
}
.field textarea{ resize:vertical; min-height:110px; }
.field .err{
  display:none;
  font-size:12.5px;
  color:#C0362C;
  margin-top:6px;
  font-family:'Inter', 'Segoe UI', sans-serif;
}
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color:#C0362C; }
.field.invalid .err{ display:block; }
.form-submit{ width:100%; justify-content:center; font-size:15px; padding:14px 22px; }
.form-note{ font-size:12.5px; color:var(--gray-light); margin-top:14px; text-align:center; }
.form-success{
  display:none;
  text-align:center;
  padding:50px 20px;
}
.form-success.show{ display:block; }
.form-success .check{
  width:56px; height:56px;
  border-radius:50%;
  background:var(--blue-light);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px;
}
.form-success .check svg{ width:26px; height:26px; stroke:var(--blue); }
.form-success h3{ font-size:20px; margin-bottom:10px; }
.form-success p{ font-size:14.5px; max-width:320px; margin:0 auto; }
.form-fields.hide{ display:none; }

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

/* ===== Service detail pages ===== */
.svc-hero{ padding:64px 0 60px; }
.svc-hero-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center; }
.svc-hero h1{ font-size:clamp(32px,4.2vw,50px); margin-top:16px; }
.svc-hero p.lead{ font-size:17px; margin-top:18px; max-width:480px; }
.svc-hero-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.svc-visual{
  aspect-ratio:1/0.85;
  border-radius:20px;
  background:var(--blue-light);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.svc-visual svg{ width:46%; height:46%; }
.breadcrumb{
  font-family:'Inter', 'Segoe UI', sans-serif;
  font-size:12.5px;
  color:var(--gray-light);
  display:flex; align-items:center; gap:8px;
  margin-bottom:10px;
}
.breadcrumb a{ color:var(--gray); }
.breadcrumb a:hover{ color:var(--blue); }

.svc-includes{ padding:80px 0; background:var(--paper); }
.includes-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.includes-item{ background:var(--white); padding:28px 30px; display:flex; gap:16px; }
.includes-item svg{ width:22px; height:22px; stroke:var(--blue); flex-shrink:0; margin-top:2px; }
.includes-item h4{ font-size:16px; margin-bottom:6px; color:var(--navy); font-family:'Manrope', 'Segoe UI', sans-serif; font-weight:800; }
.includes-item p{ font-size:14px; }

.svc-related{ padding:80px 0; }
.related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.related-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 24px;
  transition:border-color .15s, transform .15s;
  display:block;
}
.related-card:hover{ border-color:var(--blue); transform:translateY(-2px); }
.related-card h4{ font-size:16px; margin-bottom:8px; }
.related-card p{ font-size:13.5px; }
.related-card .arrow{ margin-top:14px; font-size:13px; color:var(--blue); font-weight:600; }

@media (max-width: 980px){
  .svc-hero{ padding:48px 0 40px; }
  .svc-hero-grid{ grid-template-columns:1fr; gap:40px; }
  .svc-hero h1{ font-size:clamp(28px, 3.8vw, 40px); }
  .svc-hero p.lead{ font-size:16px; }
  .svc-visual{ order:-1; max-width:380px; margin:0 auto; }
  .includes-grid{ grid-template-columns:repeat(2,1fr); }
  .related-grid{ grid-template-columns:repeat(2,1fr); gap:16px; }
}

@media (max-width: 767px){
  .svc-hero{ padding:40px 0 32px; }
  .svc-hero-grid{ grid-template-columns:1fr; gap:28px; }
  .svc-hero h1{ font-size:clamp(22px, 5vw, 30px); margin-top:14px; line-height:1.2; }
  .svc-hero p.lead{ font-size:14px; margin-top:12px; line-height:1.6; }
  .svc-hero-actions{ gap:10px; flex-wrap:wrap; }
  .svc-hero-actions .btn{ padding:12px 16px; font-size:13px; }
  .svc-visual{ max-width:100%; aspect-ratio:4/3; }
  .breadcrumb{ font-size:11px; gap:6px; margin-bottom:8px; }
  .svc-includes{ padding:56px 0; }
  .includes-grid{ grid-template-columns:1fr; }
  .includes-item{ padding:18px 16px; gap:12px; }
  .includes-item svg{ width:20px; height:20px; margin-top:1px; }
  .includes-item h4{ font-size:14px; margin-bottom:4px; }
  .includes-item p{ font-size:12.5px; line-height:1.5; }
  .svc-related{ padding:56px 0; }
  .related-grid{ grid-template-columns:1fr; gap:12px; }
  .related-card{ padding:18px 16px; }
  .related-card h4{ font-size:14px; margin-bottom:6px; }
  .related-card p{ font-size:12px; }
  .related-card .arrow{ margin-top:10px; font-size:12px; }
}
