/* ========== TOKENS ========== */
  :root{
    --navy-900:#0a1628;
    --navy-800:#0f1c33;
    --navy-700:#152741;
    --navy-600:#1e3050;
    --cyan-500:#06b6d4;
    --cyan-400:#22d3ee;
    --cyan-300:#67e8f9;
    --cyan-50:#ecfeff;
    --cyan-100:#cffafe;
    --gold:#fbbf24;
    --gold-soft:#fde68a;
    --bg:#eef3f9;
    --bg-soft:#f5f8fc;
    --white:#ffffff;
    --ink:#0f1c33;
    --ink-2:#1e293b;
    --muted:#64748b;
    --muted-2:#94a3b8;
    --border:#e2e8f0;
    --shadow-sm:0 1px 2px rgba(15,28,51,.05),0 1px 3px rgba(15,28,51,.08);
    --shadow:0 4px 6px -1px rgba(15,28,51,.08),0 10px 30px -5px rgba(15,28,51,.1);
    --shadow-lg:0 10px 25px -5px rgba(15,28,51,.1),0 20px 40px -10px rgba(15,28,51,.15);
  }

  /* ========== RESET ========== */
  *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
  html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
  body{
    font-family:"Inter",system-ui,-apple-system,sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.6;
    overflow-x:hidden;
  }
  img,svg{display:block;max-width:100%}
  a{color:inherit;text-decoration:none}
  button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
  ul{list-style:none}

  .container{width:100%;max-width:1240px;margin:0 auto;padding:0 clamp(1rem,4vw,2rem)}

  /* ========== TOP BAR ========== */
  .topbar{
    background:#050d1c;color:#94a3b8;
    font-size:.78rem;padding:.5rem 0;
    display:flex;align-items:center;justify-content:space-between;
    padding-left:clamp(1rem,4vw,2rem);padding-right:clamp(1rem,4vw,2rem);
  }
  .topbar strong{color:#cbd5e1;font-weight:600}
  .topbar-actions{display:flex;align-items:center;gap:1rem}
  .topbar-btn{
    padding:.35rem .9rem;border-radius:8px;
    background:rgba(255,255,255,.08);color:#cbd5e1;font-size:.78rem;font-weight:500;
    transition:background .2s;
  }
  .topbar-btn:hover{background:rgba(255,255,255,.14)}
  .topbar-icon{width:14px;height:14px;color:#94a3b8;cursor:pointer}

  /* ========== NAVBAR ========== */
  .nav-wrap{
    background:var(--navy-900);
    border-bottom:1px solid rgba(255,255,255,.05);
    position:sticky;top:0;z-index:100;
  }
  .nav{
    display:flex;align-items:center;justify-content:space-between;gap:2rem;
    padding:1.1rem 0;
  }
  .logo{display:flex;align-items:center;gap:.75rem}
  .logo-img{
    width:92px;height:92px;
    object-fit:contain;
    mix-blend-mode:screen;
    flex-shrink:0;
  }
  .logo-text{display:flex;flex-direction:column;line-height:1.1}
  .logo-text strong{
    font-size:1.3rem;font-weight:800;letter-spacing:-.01em;color:#fff;
  }
  .logo-text small{font-size:.72rem;color:#94a3b8;font-weight:500;margin-top:1px}

  .nav-links{display:flex;align-items:center;gap:.25rem;flex:1;justify-content:center}
  .nav-links a{
    padding:.6rem 1rem;border-radius:8px;
    font-size:.85rem;font-weight:600;letter-spacing:.04em;color:#cbd5e1;
    transition:color .2s;
  }
  .nav-links a:hover,.nav-links a.active{color:var(--cyan-400)}

  .nav-cta{
    display:inline-flex;align-items:center;gap:.5rem;
    padding:.85rem 1.5rem;border-radius:10px;
    background:linear-gradient(135deg,#06b6d4,#22d3ee);
    color:#fff;font-size:.85rem;font-weight:700;letter-spacing:.02em;
    box-shadow:0 4px 14px rgba(6,182,212,.4);
    transition:transform .2s,box-shadow .2s;
    white-space:nowrap;
  }
  .nav-cta:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(6,182,212,.55)}
  .nav-cta svg{width:16px;height:16px}

  .menu-toggle{display:none;width:40px;height:40px;border-radius:8px;color:#fff;align-items:center;justify-content:center;background:rgba(255,255,255,.06)}
  .menu-toggle svg{width:22px;height:22px}

  @media(max-width:1080px){
    .nav-links{
      position:absolute;top:100%;left:0;right:0;flex-direction:column;align-items:stretch;
      background:var(--navy-800);padding:.75rem;gap:.25rem;
      border-top:1px solid rgba(255,255,255,.05);
      transform:translateY(-12px);opacity:0;pointer-events:none;
      transition:all .3s ease;
    }
    .nav-links.open{transform:translateY(0);opacity:1;pointer-events:auto}
    .nav-links a{padding:.85rem 1rem;text-align:center}
    .menu-toggle{display:flex}
  }
  @media(max-width:560px){
    .nav-cta span.full{display:none}
    .nav-cta::after{content:"(321) 393-4474"}
    .topbar strong{display:none}
  }

  /* ========== HERO ========== */
  .hero{
    position:relative;
    background:
      radial-gradient(ellipse 80% 60% at 100% 100%,rgba(6,182,212,.2) 0%,transparent 60%),
      linear-gradient(180deg,var(--navy-900) 0%,var(--navy-800) 100%);
    color:#fff;
    padding:clamp(4rem,10vw,7rem) 0 clamp(6rem,12vw,9rem);
    overflow:hidden;
  }
  .hero::after{
    content:"";position:absolute;left:0;right:0;bottom:-1px;height:60px;
    background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 Q360,60 720,30 T1440,30 L1440,60 L0,60 Z' fill='%23eef3f9'/></svg>") no-repeat center/cover;
  }
  .hero-content{max-width:780px}
  .hero h1{
    font-size:clamp(2rem,4.8vw,3.6rem);
    font-weight:800;
    line-height:1.1;letter-spacing:-.02em;
    margin-bottom:1.5rem;color:#fff;
  }
  .hero h1 .accent{color:var(--cyan-400)}
  .hero p.lead{
    font-size:clamp(1rem,1.4vw,1.15rem);
    color:#cbd5e1;max-width:600px;margin-bottom:2.25rem;line-height:1.65;
  }
  .hero-cta{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:2.75rem}
  .btn{
    display:inline-flex;align-items:center;gap:.6rem;justify-content:center;
    padding:1rem 1.75rem;border-radius:12px;
    font-size:.95rem;font-weight:700;
    transition:all .25s ease;
  }
  .btn svg{width:18px;height:18px}
  .btn-primary{
    background:linear-gradient(135deg,#06b6d4,#22d3ee);
    color:#fff;
    box-shadow:0 6px 20px rgba(6,182,212,.4);
  }
  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(6,182,212,.55)}
  .btn-outline{
    background:transparent;border:2px solid rgba(255,255,255,.6);color:#fff;
  }
  .btn-outline:hover{border-color:#fff;background:rgba(255,255,255,.08);transform:translateY(-2px)}

  .trust-row{
    display:flex;flex-wrap:wrap;gap:1.5rem 2rem;align-items:center;
    color:#cbd5e1;font-size:.9rem;
  }
  .trust-row .item{display:flex;align-items:center;gap:.5rem}
  .trust-row strong{color:#fff;font-weight:700}
  .trust-row .star{color:var(--gold)}
  .trust-row svg{width:18px;height:18px;color:var(--cyan-400)}
  .trust-row .num{color:var(--gold);font-weight:700}

  /* ========== BADGES ROW ========== */
  .badges-row{
    background:var(--bg);
    padding:clamp(2rem,5vw,3.5rem) 0;
    border-top:1px solid var(--border);
  }
  .badges{
    display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;
    text-align:center;align-items:start;
  }
  @media(min-width:720px){.badges{grid-template-columns:repeat(4,1fr)}}
  .badge-item{display:flex;flex-direction:column;align-items:center;gap:.85rem}
  .badge-icon{
    width:60px;height:60px;border-radius:50%;
    background:#dbeafe;display:grid;place-items:center;
    color:var(--cyan-500);
  }
  .badge-icon.gold{background:#fef3c7;color:#d97706}
  .badge-icon svg{width:28px;height:28px}
  .badge-item strong{font-size:1rem;font-weight:700;color:var(--ink)}

  /* ========== SECTION HEAD ========== */
  section{padding:clamp(4rem,8vw,6rem) 0}
  .section-light{background:var(--white)}
  .section-gray{background:var(--bg)}
  .section-dark{background:var(--navy-900);color:#cbd5e1}
  .section-head{text-align:center;margin-bottom:clamp(2.5rem,5vw,4rem)}
  .section-head h2{
    font-size:clamp(1.8rem,4vw,2.6rem);
    font-weight:800;letter-spacing:-.02em;line-height:1.2;
    color:var(--ink);
    margin-bottom:1rem;
  }
  .section-dark .section-head h2{color:#fff}
  .section-head h2::after{
    content:"";display:block;width:60px;height:3px;
    background:var(--cyan-400);border-radius:2px;
    margin:1rem auto 0;
  }
  .section-head p{
    font-size:clamp(1rem,1.3vw,1.1rem);color:var(--muted);
    max-width:680px;margin:0 auto;
  }
  .section-dark .section-head p{color:#94a3b8}

  /* ========== SERVICES ========== */
  .services-grid{display:grid;gap:1.75rem;grid-template-columns:1fr}
  @media(min-width:840px){.services-grid{grid-template-columns:repeat(3,1fr)}}
  .service-card{
    background:#fff;border-radius:18px;padding:2.25rem 1.75rem;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    transition:transform .3s ease,box-shadow .3s ease;
    display:flex;flex-direction:column;
  }
  .service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
  .service-icon{
    width:64px;height:64px;border-radius:50%;
    background:#dbeafe;display:grid;place-items:center;
    color:var(--cyan-500);margin-bottom:1.5rem;
  }
  .service-icon svg{width:30px;height:30px}
  .service-card h3{
    font-size:1.2rem;font-weight:700;color:var(--ink);
    margin-bottom:.85rem;line-height:1.3;
  }
  .service-card p.desc{color:var(--muted);font-size:.95rem;margin-bottom:1.25rem;line-height:1.6}
  .service-card ul{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.5rem}
  .service-card li{display:flex;align-items:flex-start;gap:.6rem;font-size:.92rem;color:var(--ink-2)}
  .service-card li svg{flex-shrink:0;width:18px;height:18px;color:var(--cyan-500);margin-top:2px}
  .service-link{
    margin-top:auto;color:var(--cyan-500);font-weight:600;font-size:.92rem;
    display:inline-flex;align-items:center;gap:.4rem;transition:gap .2s;
  }
  .service-link:hover{gap:.7rem}
  .service-link svg{width:14px;height:14px}

  /* ========== ABOUT ========== */
  .about-grid{display:grid;gap:3rem;align-items:center}
  @media(min-width:980px){.about-grid{grid-template-columns:1.1fr 1fr}}
  .about-text h2{
    font-size:clamp(1.8rem,4vw,2.6rem);
    font-weight:800;color:#fff;letter-spacing:-.02em;line-height:1.15;
    margin-bottom:1.5rem;
  }
  .about-text h2 .accent{color:var(--cyan-400);display:block}
  .about-text p{color:#cbd5e1;margin-bottom:1.25rem;font-size:1rem;line-height:1.75;font-style:italic}
  .about-text p strong{color:#cbd5e1;font-weight:600}
  .stats-grid{
    display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;
  }
  .stat-card{
    background:var(--navy-700);
    border:1px solid rgba(255,255,255,.05);
    border-radius:16px;
    padding:2rem 1.5rem;text-align:center;
    transition:transform .3s ease;
  }
  .stat-card:hover{transform:translateY(-4px)}
  .stat-card .num{
    font-size:clamp(2rem,4vw,2.6rem);font-weight:800;line-height:1;
    color:var(--cyan-400);margin-bottom:.5rem;
  }
  .stat-card.gold .num{color:var(--gold)}
  .stat-card .label{font-size:.85rem;color:#94a3b8;font-weight:500}

  /* ========== PRICING ========== */
  .pricing-grid{display:grid;gap:1.5rem;grid-template-columns:1fr;max-width:1100px;margin:0 auto}
  @media(min-width:840px){.pricing-grid{grid-template-columns:repeat(3,1fr);align-items:start}}
  .price-card{
    background:#fff;border-radius:18px;padding:2.25rem 1.75rem;
    box-shadow:var(--shadow);border:1px solid var(--border);
    position:relative;display:flex;flex-direction:column;
    transition:transform .3s ease,box-shadow .3s ease;
  }
  .price-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
  .price-card.featured{
    border:2px solid var(--cyan-400);
    box-shadow:0 20px 40px rgba(6,182,212,.18);
  }
  @media(min-width:840px){.price-card.featured{transform:translateY(-12px)}.price-card.featured:hover{transform:translateY(-16px)}}
  .pop-tag{
    position:absolute;top:-14px;left:50%;transform:translateX(-50%);
    padding:.4rem 1.1rem;border-radius:999px;
    background:linear-gradient(135deg,#fbbf24,#f59e0b);
    color:#fff;font-size:.7rem;font-weight:800;
    letter-spacing:.08em;text-transform:uppercase;
    box-shadow:0 4px 12px rgba(245,158,11,.4);
    white-space:nowrap;
  }
  .price-card h3{font-size:1.4rem;font-weight:800;color:var(--ink);margin-bottom:.3rem}
  .price-card .sub{color:var(--muted);font-size:.92rem;margin-bottom:1.5rem}
  .price-amount{display:flex;flex-direction:column;margin-bottom:1.75rem}
  .price-amount .from{font-size:.78rem;color:var(--muted-2);font-weight:500;margin-bottom:.4rem}
  .price-amount .row{display:flex;align-items:baseline;gap:.4rem}
  .price-amount .value{
    font-size:clamp(2.2rem,4.2vw,3rem);font-weight:800;color:var(--ink);line-height:1;
    letter-spacing:-.02em;
  }
  .price-card.featured .price-amount .value{color:var(--cyan-500)}
  .price-amount .unit{color:var(--muted);font-size:.95rem;font-weight:500}
  .price-features{display:flex;flex-direction:column;gap:.7rem;margin-bottom:2rem}
  .price-features li{display:flex;align-items:flex-start;gap:.6rem;color:var(--ink-2);font-size:.92rem}
  .price-features svg{flex-shrink:0;width:18px;height:18px;color:var(--cyan-500);margin-top:2px}
  .price-cta{
    margin-top:auto;
    display:block;width:100%;text-align:center;
    padding:1rem;border-radius:12px;font-weight:700;font-size:.95rem;
    background:var(--navy-900);color:#fff;
    transition:transform .2s,box-shadow .2s;
  }
  .price-cta:hover{transform:translateY(-2px);box-shadow:0 8px 18px rgba(10,22,40,.3)}
  .price-card.featured .price-cta{
    background:linear-gradient(135deg,#06b6d4,#22d3ee);
    box-shadow:0 6px 18px rgba(6,182,212,.45);
  }
  .price-card.featured .price-cta:hover{box-shadow:0 10px 24px rgba(6,182,212,.6)}
  .price-note{text-align:center;color:var(--muted);font-size:.9rem;margin-top:2rem;max-width:560px;margin-left:auto;margin-right:auto}

  /* ========== AREAS ========== */
  .areas-grid{display:grid;gap:1.5rem;grid-template-columns:repeat(2,1fr);max-width:1100px;margin:0 auto}
  @media(min-width:840px){.areas-grid{grid-template-columns:repeat(4,1fr)}}
  .area-card{
    background:var(--bg-soft);border-radius:18px;padding:2rem 1.5rem;text-align:center;
    border:1px solid var(--border);
    transition:all .3s ease;
  }
  .area-card:hover{transform:translateY(-4px);background:#fff;box-shadow:var(--shadow);border-color:var(--cyan-300)}
  .area-icon{
    width:54px;height:54px;border-radius:50%;
    background:#dbeafe;display:grid;place-items:center;
    color:var(--cyan-500);margin:0 auto 1rem;
  }
  .area-icon svg{width:24px;height:24px}
  .area-card h3{font-size:1.1rem;font-weight:700;color:var(--ink);margin-bottom:.6rem}
  .area-card p{font-size:.88rem;color:var(--muted);line-height:1.55}
  .areas-cta{text-align:center;margin-top:2.5rem;color:var(--ink);font-size:1rem}
  .areas-cta a{color:var(--cyan-500);font-weight:700}

  /* ========== REVIEWS ========== */
  .reviews-meta{text-align:center;margin-top:-1rem;margin-bottom:3rem}
  .reviews-meta .stars{color:var(--gold);font-size:1.5rem;letter-spacing:.1em;display:block;margin-bottom:.5rem}
  .reviews-meta p{color:#94a3b8;font-size:1rem}
  .reviews-grid{display:grid;gap:1.5rem;grid-template-columns:1fr;max-width:1200px;margin:0 auto}
  @media(min-width:720px){.reviews-grid{grid-template-columns:repeat(2,1fr)}}
  @media(min-width:1080px){.reviews-grid{grid-template-columns:repeat(4,1fr)}}
  .review-card{
    background:#fff;border-radius:16px;padding:1.75rem 1.5rem;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
    display:flex;flex-direction:column;
    transition:transform .3s ease;
  }
  .review-card:hover{transform:translateY(-4px)}
  .review-card .stars{color:var(--gold);font-size:.95rem;letter-spacing:.1em;margin-bottom:.85rem}
  .review-card p{color:var(--ink-2);font-size:.9rem;line-height:1.6;margin-bottom:1.25rem;flex:1}
  .reviewer{display:flex;align-items:center;gap:.75rem;margin-top:auto;padding-top:1rem;border-top:1px solid var(--border)}
  .avatar{
    width:38px;height:38px;border-radius:50%;
    background:#dbeafe;color:var(--cyan-500);
    display:grid;place-items:center;font-weight:700;font-size:.78rem;
    flex-shrink:0;
  }
  .reviewer-info strong{display:block;color:var(--ink);font-size:.88rem;font-weight:700}
  .reviewer-info small{color:var(--muted);font-size:.78rem}
  .reviews-cta{text-align:center;margin-top:3rem}
  .btn-gold{
    display:inline-flex;align-items:center;gap:.6rem;
    padding:1rem 1.75rem;border-radius:12px;
    background:linear-gradient(135deg,#fbbf24,#f59e0b);
    color:#fff;font-weight:800;font-size:1.05rem;letter-spacing:.01em;
    box-shadow:0 6px 18px rgba(245,158,11,.4);
    transition:transform .2s,box-shadow .2s;
  }
  .btn-gold:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(245,158,11,.55)}
  .btn-gold svg{width:18px;height:18px}

  /* ========== FAQ ========== */
  .faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:.85rem}
  .faq-item{
    background:#fff;border-radius:12px;
    border:1px solid var(--border);overflow:hidden;
    transition:border-color .25s,box-shadow .25s;
  }
  .faq-item:hover{border-color:var(--cyan-300)}
  .faq-item.open{border:1.5px solid var(--ink);box-shadow:0 4px 12px rgba(15,28,51,.08)}
  .faq-question{
    width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;
    padding:1.25rem 1.5rem;text-align:left;font-weight:700;font-size:.98rem;color:var(--ink);
  }
  .faq-toggle{
    width:24px;height:24px;flex-shrink:0;color:var(--cyan-500);
    transition:transform .3s ease;display:grid;place-items:center;
  }
  .faq-toggle svg{width:18px;height:18px}
  .faq-item.open .faq-toggle{transform:rotate(180deg)}
  .faq-answer{
    max-height:0;overflow:hidden;
    transition:max-height .4s ease,padding .3s ease;
    padding:0 1.5rem;color:var(--muted);font-size:.95rem;line-height:1.7;
  }
  .faq-item.open .faq-answer{max-height:600px;padding:0 1.5rem 1.5rem}

  /* ========== CONTACT ========== */
  .contact-head{text-align:center;margin-bottom:3rem}
  .contact-head p{color:var(--muted);font-size:1.05rem;margin-top:.5rem}
  .contact-grid{display:grid;gap:2.5rem;align-items:start;max-width:1100px;margin:0 auto}
  @media(min-width:880px){.contact-grid{grid-template-columns:.9fr 1.1fr}}
  .contact-info-list{display:flex;flex-direction:column;gap:1rem}
  .info-card{
    display:flex;align-items:center;gap:1rem;
    padding:1.1rem 1.25rem;border-radius:14px;
    background:var(--bg-soft);border:1px solid var(--border);
    transition:all .25s;
  }
  .info-card:hover{transform:translateX(4px);border-color:var(--cyan-300)}
  .info-icon{
    width:46px;height:46px;border-radius:50%;flex-shrink:0;
    background:#dbeafe;color:var(--cyan-500);
    display:grid;place-items:center;
  }
  .info-card.wa .info-icon{background:#dcfce7;color:#16a34a}
  .info-icon svg{width:22px;height:22px}
  .info-text strong{display:block;color:var(--ink);font-weight:700;font-size:.95rem}
  .info-text small{color:var(--muted);font-size:.85rem}

  .form-card{
    background:var(--bg-soft);border-radius:18px;padding:2rem;
    border:1px solid var(--border);
  }
  label{display:block;font-size:.88rem;color:var(--ink);font-weight:600;margin-bottom:.45rem}
  input,select,textarea{
    width:100%;padding:.95rem 1rem;border-radius:10px;font-size:.95rem;
    border:1px solid var(--border);background:#fff;color:var(--ink);
    font-family:inherit;transition:all .2s;
  }
  input::placeholder,textarea::placeholder{color:var(--muted-2)}
  input:focus,select:focus,textarea:focus{
    outline:none;border-color:var(--cyan-400);box-shadow:0 0 0 3px rgba(34,211,238,.15);
  }
  textarea{resize:vertical;min-height:120px}
  select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2306b6d4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem}
  .form-row{margin-bottom:1.1rem}
  .submit-btn{
    width:100%;padding:1.1rem;border-radius:12px;font-weight:700;font-size:1rem;
    background:linear-gradient(135deg,#06b6d4,#22d3ee);color:#fff;
    box-shadow:0 6px 20px rgba(6,182,212,.4);
    transition:all .25s;display:flex;align-items:center;justify-content:center;gap:.6rem;
    margin-top:.5rem;
  }
  .submit-btn:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(6,182,212,.55)}
  .submit-btn svg{width:18px;height:18px}
  .form-note{text-align:center;color:var(--muted);font-size:.85rem;margin-top:1rem}

  /* ========== FOOTER ========== */
  footer{background:var(--navy-900);color:#94a3b8;padding:3.5rem 0 2rem}
  .footer-grid{
    display:grid;gap:2.5rem;grid-template-columns:1fr;
    margin-bottom:2.5rem;
  }
  @media(min-width:720px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr}}
  .footer-about .logo{margin-bottom:1rem}
  .footer-about .logo strong{color:#fff}
  .footer-about p{font-size:.9rem;line-height:1.7;color:#94a3b8;max-width:300px}
  .social{display:flex;gap:.6rem;margin-top:1.25rem}
  .social a{
    width:38px;height:38px;border-radius:50%;
    background:rgba(255,255,255,.05);
    display:grid;place-items:center;color:#cbd5e1;
    transition:all .25s;
  }
  .social a:hover{background:var(--cyan-500);color:#fff}
  .social svg{width:18px;height:18px}
  .footer-col h4{
    color:#fff;font-size:.92rem;font-weight:700;
    letter-spacing:.08em;text-transform:uppercase;margin-bottom:1rem;
  }
  .footer-col ul{display:flex;flex-direction:column;gap:.6rem}
  .footer-col li{font-size:.9rem}
  .footer-col li a{color:#94a3b8;transition:color .2s}
  .footer-col li a:hover{color:var(--cyan-400)}
  .footer-col li svg{width:14px;height:14px;color:var(--cyan-400);margin-right:.5rem;display:inline-block;vertical-align:-2px}
  .footer-bottom{
    padding-top:2rem;border-top:1px solid rgba(255,255,255,.06);
    display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;
    font-size:.82rem;color:#64748b;
  }

  /* ========== FLOATING SMS ========== */
  .float-wa{
    position:fixed;bottom:1.5rem;right:1.5rem;z-index:90;
    width:56px;height:56px;border-radius:14px;display:grid;place-items:center;
    background:linear-gradient(135deg,#06b6d4,#22d3ee);color:#fff;
    box-shadow:0 8px 24px rgba(6,182,212,.45);
    transition:transform .25s;
  }
  .float-wa:hover{transform:scale(1.08)}
  .float-wa svg{width:26px;height:26px}

  /* ========== REVEAL ========== */
  .reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
  .reveal.visible{opacity:1;transform:none}
  .reveal-d-1{transition-delay:.1s}.reveal-d-2{transition-delay:.2s}.reveal-d-3{transition-delay:.3s}

  @media (prefers-reduced-motion:reduce){
    *,*::before,*::after{animation-duration:0s!important;transition-duration:.1s!important}
    .reveal{opacity:1;transform:none}
  }
  :focus-visible{outline:2px solid var(--cyan-400);outline-offset:2px;border-radius:4px}

  /* ========== CHATBOT ========== */
  #chatbot-wrap{position:fixed;bottom:1.5rem;right:1.5rem;z-index:95;display:flex;flex-direction:column;align-items:flex-end}
  #chat-toggle{
    width:56px;height:56px;border-radius:14px;
    background:linear-gradient(135deg,#06b6d4,#22d3ee);
    color:#fff;display:grid;place-items:center;
    box-shadow:0 8px 24px rgba(6,182,212,.45);
    transition:transform .25s;cursor:pointer;border:none;font-family:inherit;position:relative;
  }
  #chat-toggle:hover{transform:scale(1.08)}
  #chat-toggle svg{width:26px;height:26px}
  .chat-badge{
    position:absolute;top:-7px;right:-7px;
    width:20px;height:20px;background:#ef4444;border-radius:50%;
    font-size:.68rem;font-weight:800;display:grid;place-items:center;color:#fff;
    animation:pulse-badge 2s ease-in-out infinite;
  }
  @keyframes pulse-badge{0%,100%{transform:scale(1)}50%{transform:scale(1.2)}}
  #chat-window{
    position:absolute;bottom:68px;right:0;width:320px;
    background:#fff;border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    overflow:hidden;transform-origin:bottom right;
    transition:transform .3s ease,opacity .3s ease;
    transform:scale(.85) translateY(16px);opacity:0;pointer-events:none;
  }
  #chat-window.chat-open{transform:scale(1) translateY(0);opacity:1;pointer-events:auto}
  .chat-header{
    background:linear-gradient(135deg,#0a1628,#152741);
    padding:1rem 1.25rem;display:flex;align-items:center;gap:.75rem;
  }
  .chat-av{
    width:42px;height:42px;border-radius:50%;flex-shrink:0;
    background:linear-gradient(135deg,#06b6d4,#22d3ee);
    display:grid;place-items:center;
    font-weight:900;font-size:.8rem;color:#fff;letter-spacing:-.01em;
  }
  .chat-hinfo{flex:1}
  .chat-hinfo strong{display:block;color:#fff;font-size:.9rem;font-weight:700}
  .chat-hinfo span{color:#22d3ee;font-size:.72rem;font-weight:500}
  #chat-close{background:none;border:none;color:#64748b;font-size:1.2rem;cursor:pointer;padding:.2rem;line-height:1;transition:color .2s;font-family:inherit}
  #chat-close:hover{color:#fff}
  #chat-msgs{
    padding:1rem;max-height:250px;overflow-y:auto;
    display:flex;flex-direction:column;gap:.75rem;background:#f8fafc;
  }
  #chat-msgs::-webkit-scrollbar{width:4px}
  #chat-msgs::-webkit-scrollbar-thumb{background:#cbd5e1;border-radius:4px}
  .cmsg{display:flex;gap:.5rem;align-items:flex-end}
  .cmsg-bot{justify-content:flex-start}
  .cmsg-user{justify-content:flex-end}
  .cmsg-av{width:26px;height:26px;border-radius:50%;background:linear-gradient(135deg,#06b6d4,#22d3ee);display:grid;place-items:center;font-size:.58rem;font-weight:900;color:#fff;flex-shrink:0}
  .cbubble{max-width:82%;padding:.6rem .85rem;border-radius:14px;font-size:.87rem;line-height:1.5}
  .cmsg-bot .cbubble{background:#fff;color:#0f1c33;border-bottom-left-radius:3px;box-shadow:0 2px 8px rgba(0,0,0,.07)}
  .cmsg-user .cbubble{background:linear-gradient(135deg,#06b6d4,#22d3ee);color:#fff;border-bottom-right-radius:3px}
  #chat-quick{padding:.75rem 1rem 1rem;display:flex;flex-direction:column;gap:.45rem;background:#fff;border-top:1px solid #e2e8f0}
  .qbtn{
    padding:.55rem .85rem;border-radius:10px;
    border:1.5px solid #e2e8f0;background:#fff;color:#0f1c33;
    font-size:.83rem;font-weight:600;cursor:pointer;text-align:left;
    transition:all .2s;font-family:inherit;
  }
  .qbtn:hover{border-color:#06b6d4;background:#ecfeff;color:#06b6d4}
  .qbtn.act{background:linear-gradient(135deg,#06b6d4,#22d3ee);color:#fff;border-color:transparent}
  .qbtn.act:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(6,182,212,.4)}
  @media(max-width:640px){
    #chat-window{width:calc(100vw - 3.5rem)}
    #chatbot-wrap{bottom:1rem;right:1rem}
  }

  /* ========== MOBILE FIRST ========== */
  @media(max-width:640px){
    /* Prevent iOS input zoom (requires 16px+) */
    input,select,textarea{font-size:16px}

    /* Hero CTA buttons stack full-width */
    .hero-cta{flex-direction:column}
    .hero-cta .btn{width:100%;justify-content:center}

    /* Touch targets min 44px */
    .btn,.nav-cta,.price-cta,.submit-btn,.info-card{min-height:48px}
    .faq-question{min-height:52px}

    /* Logo text smaller on mobile */
    .logo-text strong{font-size:1.1rem}
    .logo-img{width:76px;height:76px}

    /* Badges grid 2 cols always */
    .badges{grid-template-columns:repeat(2,1fr);gap:1.25rem}
    .badge-item strong{font-size:.88rem}

    /* Services cards full width */
    .service-card{padding:1.75rem 1.25rem}

    /* Stats 2x2 */
    .stats-grid{gap:.85rem}
    .stat-card{padding:1.5rem 1rem}
    .stat-card .num{font-size:2rem}

    /* Pricing full width with comfortable padding */
    .price-card{padding:1.75rem 1.25rem}
    .price-amount .value{font-size:2.4rem}

    /* Areas 2 cols on small phones */
    .areas-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
    .area-card{padding:1.25rem 1rem}

    /* Reviews single col already - padding adjustment */
    .review-card{padding:1.5rem 1.25rem}

    /* FAQ padding */
    .faq-question{padding:1rem 1.25rem;font-size:.95rem}
    .faq-answer{padding:0 1.25rem}
    .faq-item.open .faq-answer{padding:0 1.25rem 1.25rem}

    /* Contact form full width */
    .contact-grid{gap:1.5rem}
    .form-card{padding:1.5rem 1.25rem}

    /* Floating SMS button — avoid overlap with form */
    .float-wa{bottom:1rem;right:1rem;width:50px;height:50px}

    /* Section spacing tighter on mobile */
    section{padding:clamp(2.5rem,7vw,4rem) 0}
  }

  /* Tablet adjustments */
  @media(min-width:641px) and (max-width:840px){
    .hero-cta{flex-wrap:wrap}
    .hero-cta .btn{flex:1;min-width:180px}
  }