:root{
  --teal:#2EC4D6;--teal-dark:#1BAFBF;--teal-light:#E8F9FB;--teal-mid:#C2EFF4;
  --dark:#1A1A2E;--dark2:#2D3748;--charcoal:#374151;
  --gray:#6B7280;--gray-light:#9CA3AF;
  --bg:#FFFFFF;--bg2:#F5F7FA;--bg3:#EFF6FF;
  --text:#1A1A2E;--text-muted:#6B7280;
  --border:#E2E8F0;--radius:10px;--radius-lg:16px;
  --shadow:0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.12);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{background:var(--bg);color:var(--text);font-family:'Segoe UI',system-ui,-apple-system,sans-serif;line-height:1.6;}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:1000;background:#1A1A2E;box-shadow:0 2px 20px rgba(0,0,0,0.2);}
.nav-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:72px;padding:0 2rem;}
.logo-wrap{display:flex;align-items:center;text-decoration:none;}
.logo-wrap img{height:46px;width:auto;}
.nav-links{list-style:none;display:flex;align-items:center;gap:0.2rem;flex-wrap:wrap;}
.nav-links a{color:rgba(255,255,255,0.75);text-decoration:none;padding:0.45rem 0.85rem;border-radius:6px;font-size:0.83rem;font-weight:500;transition:all 0.2s;}
.nav-links a:hover,.nav-links a.active{color:#fff;background:rgba(255,255,255,0.1);}
.nav-cta{background:var(--teal)!important;color:#fff!important;font-weight:700!important;padding:0.5rem 1.2rem!important;border-radius:7px!important;}
.nav-cta:hover{background:var(--teal-dark)!important;color:#fff!important;}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;}
.hamburger span{width:24px;height:2px;background:#fff;border-radius:2px;transition:all 0.3s;}
.mob-menu{display:none;position:fixed;top:72px;left:0;right:0;background:#1A1A2E;z-index:999;padding:1rem 2rem;flex-direction:column;border-top:1px solid rgba(255,255,255,0.1);}
.mob-menu a{color:rgba(255,255,255,0.8);text-decoration:none;padding:0.7rem 0;border-bottom:1px solid rgba(255,255,255,0.08);font-size:0.9rem;}
.mob-menu a:last-child{border-bottom:none;}
.mob-menu.open{display:flex;}

/* PAGE OFFSET */
main{padding-top:72px;}

/* HERO */
.hero{background:linear-gradient(135deg,#1A1A2E 0%,#16213E 50%,#0F3460 100%);padding:5rem 2rem 4.5rem;color:#fff;position:relative;overflow:hidden;}
.hero::before{content:'';position:absolute;top:-60px;right:-80px;width:450px;height:450px;background:radial-gradient(circle,rgba(46,196,214,0.15),transparent 70%);pointer-events:none;}
.hero-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(46,196,214,0.15);border:1px solid rgba(46,196,214,0.3);border-radius:100px;padding:0.4rem 1rem;font-size:0.78rem;color:var(--teal);font-weight:600;letter-spacing:0.05em;text-transform:uppercase;margin-bottom:1.5rem;}
.hero-badge::before{content:'';width:6px;height:6px;background:var(--teal);border-radius:50%;animation:blink 2s infinite;}
@keyframes blink{0%,100%{opacity:1;}50%{opacity:0.3;}}
.hero h1{font-size:clamp(2.2rem,3.8vw,3.2rem);font-weight:900;line-height:1.1;letter-spacing:-0.02em;margin-bottom:1.2rem;}
.hero h1 .accent{color:var(--teal);}
.hero p{font-size:1.02rem;color:rgba(255,255,255,0.75);margin-bottom:2rem;max-width:480px;line-height:1.7;}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap;}
.btn-primary{background:var(--teal);color:#fff;padding:0.85rem 2rem;border-radius:var(--radius);font-weight:700;text-decoration:none;font-size:0.95rem;transition:all 0.2s;border:none;cursor:pointer;display:inline-block;}
.btn-primary:hover{background:var(--teal-dark);transform:translateY(-1px);box-shadow:0 8px 25px rgba(46,196,214,0.35);}
.btn-outline{background:transparent;color:#fff;padding:0.85rem 2rem;border-radius:var(--radius);font-weight:700;text-decoration:none;font-size:0.95rem;border:2px solid rgba(255,255,255,0.4);transition:all 0.2s;cursor:pointer;display:inline-block;}
.btn-outline:hover{border-color:var(--teal);color:var(--teal);}
.btn-teal-outline{background:transparent;color:var(--teal);padding:0.75rem 1.8rem;border-radius:var(--radius);font-weight:700;text-decoration:none;font-size:0.9rem;border:2px solid var(--teal);transition:all 0.2s;cursor:pointer;display:inline-block;}
.btn-teal-outline:hover{background:var(--teal);color:#fff;}
.hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2.5rem;}
.stat-box{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius);padding:1.2rem;text-align:center;backdrop-filter:blur(10px);}
.stat-num{font-size:1.9rem;font-weight:900;color:var(--teal);line-height:1;}
.stat-label{font-size:0.73rem;color:rgba(255,255,255,0.6);margin-top:0.3rem;text-transform:uppercase;letter-spacing:0.05em;}
.hero-visual{display:flex;flex-direction:column;gap:1rem;}
.vc{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);border-radius:var(--radius-lg);padding:1.4rem;backdrop-filter:blur(10px);}
.vc h4{font-size:0.68rem;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.5);margin-bottom:0.9rem;}
.tag-wrap{display:flex;flex-wrap:wrap;gap:0.5rem;}
.tag{background:rgba(46,196,214,0.15);border:1px solid rgba(46,196,214,0.3);color:var(--teal);padding:0.35rem 0.75rem;border-radius:100px;font-size:0.78rem;font-weight:600;}
.vert-mini{display:grid;grid-template-columns:repeat(3,1fr);gap:0.4rem;}
.vm{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);border-radius:7px;padding:0.5rem 0.4rem;text-align:center;font-size:0.73rem;font-weight:600;color:rgba(255,255,255,0.7);}

/* COMPLIANCE STRIP */
.comp-strip{background:#F0FAFB;border-top:1px solid var(--teal-mid);border-bottom:1px solid var(--teal-mid);padding:1rem 2rem;}
.comp-strip-inner{max-width:1200px;margin:0 auto;display:flex;gap:2rem;align-items:center;flex-wrap:wrap;justify-content:center;}
.cb{display:flex;align-items:center;gap:0.5rem;font-size:0.78rem;color:var(--charcoal);font-weight:600;}
.cb::before{content:'✓';color:var(--teal);font-weight:700;}

/* SECTIONS */
.section{padding:5rem 2rem;}
.section-inner{max-width:1200px;margin:0 auto;}
.section-alt{background:var(--bg2);}
.section-teal{background:linear-gradient(135deg,#1A1A2E,#0F3460);color:#fff;}
.eyebrow{font-size:0.72rem;text-transform:uppercase;letter-spacing:0.12em;color:var(--teal);font-weight:700;margin-bottom:0.7rem;}
.section-title{font-size:clamp(1.8rem,3vw,2.5rem);font-weight:800;letter-spacing:-0.02em;margin-bottom:1rem;line-height:1.15;color:var(--dark);}
.section-teal .section-title{color:#fff;}
.section-sub{color:var(--text-muted);font-size:1rem;max-width:600px;line-height:1.7;}
.divider{width:48px;height:3px;background:var(--teal);border-radius:2px;margin:1.2rem 0;}

/* CARDS */
.cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;margin-top:3rem;}
.card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.8rem;transition:all 0.3s;box-shadow:var(--shadow);}
.card:hover{border-color:var(--teal);transform:translateY(-3px);box-shadow:0 12px 35px rgba(46,196,214,0.12);}
.card-icon{width:50px;height:50px;background:var(--teal-light);border:1px solid var(--teal-mid);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;font-size:1.4rem;}
.card h3{font-size:1.05rem;font-weight:700;margin-bottom:0.6rem;color:var(--dark);}
.card p{color:var(--text-muted);font-size:0.88rem;line-height:1.6;}
.card-link{color:var(--teal);font-size:0.82rem;font-weight:600;margin-top:1rem;display:block;text-decoration:none;}
.card-link:hover{color:var(--teal-dark);}

/* PAGE HEADER */
.page-header{background:linear-gradient(135deg,#1A1A2E,#0F3460);padding:3.5rem 2rem 3rem;color:#fff;}
.page-header-inner{max-width:1200px;margin:0 auto;}
.breadcrumb{font-size:0.78rem;color:rgba(255,255,255,0.5);margin-bottom:0.8rem;}
.breadcrumb a{color:rgba(255,255,255,0.5);text-decoration:none;}
.breadcrumb a:hover{color:var(--teal);}
.breadcrumb span{color:var(--teal);}
.page-header h1{font-size:clamp(1.8rem,3vw,2.5rem);font-weight:900;margin-bottom:0.5rem;}
.page-header p{color:rgba(255,255,255,0.65);font-size:0.95rem;}

/* LEGAL CONTENT */
.legal-content{max-width:860px;margin:0 auto;}
.legal-content h2{font-size:1.15rem;font-weight:700;color:var(--dark);margin:2rem 0 0.7rem;padding-bottom:0.5rem;border-bottom:2px solid var(--teal-mid);}
.legal-content h3{font-size:1rem;font-weight:600;color:var(--teal-dark);margin:1.2rem 0 0.4rem;}
.legal-content p{color:var(--text-muted);font-size:0.9rem;line-height:1.7;margin-bottom:0.8rem;}
.legal-content ul{color:var(--text-muted);font-size:0.9rem;line-height:1.7;margin-bottom:0.8rem;padding-left:1.5rem;}
.legal-content ul li{margin-bottom:0.4rem;}
.highlight-box{background:var(--teal-light);border-left:4px solid var(--teal);border-radius:0 var(--radius) var(--radius) 0;padding:1.2rem 1.5rem;margin:1.2rem 0;}
.highlight-box p{color:var(--dark)!important;margin-bottom:0;}
.last-updated{font-size:0.8rem;color:var(--text-muted);font-style:italic;margin-bottom:2rem;padding:0.7rem 1rem;background:var(--bg2);border-radius:6px;}
.alert-box{background:var(--teal-light);border:1px solid var(--teal-mid);border-radius:var(--radius);padding:1.2rem 1.5rem;margin:1.2rem 0;display:flex;gap:0.8rem;align-items:flex-start;}
.alert-box .ai{font-size:1.1rem;margin-top:0.1rem;flex-shrink:0;}
.alert-box p{color:var(--dark)!important;margin:0;font-size:0.9rem;}

/* TIMELINE */
.timeline{position:relative;padding-left:2rem;margin-top:1.5rem;}
.timeline::before{content:'';position:absolute;left:8px;top:0;bottom:0;width:2px;background:var(--teal-mid);}
.tl-item{position:relative;margin-bottom:1.5rem;}
.tl-item::before{content:'';position:absolute;left:-1.6rem;top:0.4rem;width:10px;height:10px;background:var(--teal);border-radius:50%;border:2px solid #fff;box-shadow:0 0 0 2px var(--teal);}
.tl-item h4{font-size:0.9rem;font-weight:700;color:var(--dark);margin-bottom:0.3rem;}
.tl-item p{font-size:0.85rem;color:var(--text-muted);}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:3rem;margin-top:3rem;}
.ci{display:flex;gap:1rem;margin-bottom:1.8rem;align-items:flex-start;}
.c-icon{width:44px;height:44px;background:var(--teal-light);border:1px solid var(--teal-mid);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1rem;}
.ci h4{font-size:0.85rem;font-weight:700;color:var(--dark);margin-bottom:0.25rem;}
.ci p,.ci a{font-size:0.85rem;color:var(--text-muted);text-decoration:none;}
.ci a:hover{color:var(--teal);}
.form-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow);}
.form-card h3{color:var(--dark);margin-bottom:1.5rem;font-size:1.1rem;}
.form-group{margin-bottom:1.1rem;}
.form-group label{display:block;font-size:0.78rem;font-weight:700;color:var(--charcoal);margin-bottom:0.4rem;text-transform:uppercase;letter-spacing:0.04em;}
.form-group input,.form-group textarea,.form-group select{width:100%;background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:0.7rem 1rem;color:var(--dark);font-size:0.9rem;font-family:inherit;outline:none;transition:border-color 0.2s;}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(46,196,214,0.1);}
.form-group textarea{height:120px;resize:vertical;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.form-note{font-size:0.75rem;color:var(--text-muted);text-align:center;margin-top:0.8rem;}
.form-note a{color:var(--teal);}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.values-list{list-style:none;margin-top:1.5rem;}
.values-list li{padding:0.75rem 0;border-bottom:1px solid var(--border);display:flex;align-items:center;gap:0.8rem;font-size:0.9rem;color:var(--text-muted);}
.values-list li::before{content:'✓';color:var(--teal);font-weight:700;font-size:1rem;flex-shrink:0;}
.about-vis{background:var(--teal-light);border:1px solid var(--teal-mid);border-radius:var(--radius-lg);padding:2rem;display:flex;flex-direction:column;gap:1rem;}
.comp-item{background:#fff;border-left:3px solid var(--teal);border-radius:0 var(--radius) var(--radius) 0;padding:1rem 1.2rem;box-shadow:var(--shadow);}
.comp-item h4{font-size:0.88rem;font-weight:700;color:var(--dark);margin-bottom:0.25rem;}
.comp-item p{font-size:0.8rem;color:var(--text-muted);}
.address-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.5rem;margin-top:1.5rem;box-shadow:var(--shadow);display:flex;gap:1rem;align-items:flex-start;}
.address-card .ai{font-size:1.5rem;}
.address-card h4{font-size:0.85rem;font-weight:700;color:var(--dark);margin-bottom:0.3rem;}
.address-card p{font-size:0.85rem;color:var(--text-muted);}

/* VERT GRID */
.vert-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin-top:2rem;}
.vert-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.5rem;transition:all 0.3s;box-shadow:var(--shadow);}
.vert-card:hover{border-color:var(--teal);transform:translateY(-2px);box-shadow:0 10px 30px rgba(46,196,214,0.1);}
.vert-card .vi{font-size:2rem;margin-bottom:0.8rem;}
.vert-card h3{font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:0.4rem;}
.vert-card p{font-size:0.8rem;color:var(--text-muted);}

/* OPT OUT FORM */
.optout-box{background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius-lg);padding:2rem;margin-top:2rem;}
.optout-box h3{color:var(--dark);margin-bottom:1.2rem;font-size:1.05rem;}

/* CTA SECTION */
.cta-inner{text-align:center;max-width:700px;margin:0 auto;}
.cta-inner h2{font-size:2rem;font-weight:800;color:#fff;margin-bottom:0.8rem;}
.cta-inner p{color:rgba(255,255,255,0.7);margin-bottom:2rem;}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}

/* FOOTER */
footer{background:#1A1A2E;color:#fff;padding:4rem 2rem 2rem;}
.footer-inner{max-width:1200px;margin:0 auto;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem;}
.footer-brand{display:flex;flex-direction:column;gap:1rem;}
.footer-brand img{width: 8vw;}
.footer-brand p{color:rgba(255,255,255,0.55);font-size:0.85rem;line-height:1.7;}
.footer-col h5{font-size:0.72rem;text-transform:uppercase;letter-spacing:0.1em;color:var(--teal);font-weight:700;margin-bottom:1rem;}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:0.5rem;}
.footer-col ul li a{color:rgba(255,255,255,0.55);text-decoration:none;font-size:0.85rem;transition:color 0.2s;}
.footer-col ul li a:hover{color:var(--teal);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;}
.footer-bottom p{font-size:0.78rem;color:rgba(255,255,255,0.4);}
.footer-legal a{color:rgba(255,255,255,0.4);font-size:0.78rem;text-decoration:none;margin-left:1.2rem;transition:color 0.2s;}
.footer-legal a:hover{color:var(--teal);}
.comp-badges{display:flex;gap:0.6rem;flex-wrap:wrap;margin-top:1rem;}
.badge{background:rgba(46,196,214,0.1);border:1px solid rgba(46,196,214,0.2);color:var(--teal);padding:0.25rem 0.65rem;border-radius:100px;font-size:0.72rem;font-weight:600;}

@media(max-width:900px){
  .hero-inner,.about-grid,.contact-grid,.footer-grid{grid-template-columns:1fr;}
  .hero-visual{display:none;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .nav-links{display:none;}
  .hamburger{display:flex;}
}
@media(max-width:600px){
  .hero-stats{grid-template-columns:repeat(3,1fr);}
  .form-row{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;text-align:center;}
}
