*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0a1628; --navy2: #1a2d4e; --blue: #4a90d9; --blue-l: #7ab8f5;
  --gray: #f4f5f7; --white: #fff; --muted: #5a6a80;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--gray); color: var(--navy); overflow-x: hidden; padding-top: 36px; }
h1,h2,h3,.nav-name,.fname { font-family: 'Cormorant Garamond', serif; }
em { font-style: italic; }

/* ANNOUNCE BAR */
.announce-bar { position: fixed; top: 0; left: 0; right: 0; background: var(--navy); height: 36px; overflow: hidden; z-index: 999; }
.announce-track { display: flex; white-space: nowrap; animation: ticker 35s linear infinite; }
.announce-track span { font-size: 12px; color: var(--blue-l); letter-spacing: 1px; padding: 10px 0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* NAVBAR */
#navbar { position: fixed; top: 36px; left: 0; right: 0; z-index: 100; transition: background 0.4s ease; background: transparent; }
#navbar.scrolled { background: rgba(10,22,40,0.96); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; transition: opacity 0.2s; }
.nav-brand:hover { opacity: 0.8; }
.nav-logo { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#0a1628,#1a2d4e); display: flex; align-items: center; justify-content: center; color: white; font-size: 10px; font-weight: 700; letter-spacing: 2px; box-shadow: 0 0 20px rgba(74,144,217,0.3); transition: transform 0.2s; }
.nav-brand:hover .nav-logo { transform: scale(1.1); }
.nav-name { font-size: 20px; font-weight: 600; letter-spacing: 3px; color: white; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link-item { display: block; padding: 8px 12px; font-size: 13px; color: var(--blue); text-decoration: none; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.nav-link-item:hover { color: var(--blue-l); background: rgba(74,144,217,0.1); }
#navbar.scrolled .nav-link-item { color: rgba(255,255,255,0.8); }
.nav-arr { font-size: 10px; }
.nav-quote { background: var(--blue) !important; color: white !important; border-radius: 20px !important; padding: 8px 18px !important; margin-left: 8px; }
.nav-quote:hover { background: #3a7bc8 !important; }

/* MEGA MENU */
.mega-menu { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #0d1e35; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; min-width: 600px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); z-index: 200; pointer-events: auto; }
.nav-item.has-mega:hover .mega-menu { display: block; }
.mega-menu:hover { display: block; }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 20px; }
.mega-col p.mega-heading { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-l); margin-bottom: 12px; }
.mega-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; padding: 5px 0; transition: color 0.2s; }
.mega-col a:hover { color: var(--blue-l); }
.mbadge { font-size: 9px; background: rgba(74,144,217,0.2); color: var(--blue-l); padding: 2px 6px; border-radius: 10px; margin-left: 4px; }
.mega-feat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; width: 150px; }
.mf-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-l); margin-bottom: 8px; }
.mf-name { font-family: 'Cormorant Garamond',serif; font-size: 18px; color: white; font-weight: 400; margin-bottom: 6px; }
.mf-spec { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 12px; line-height: 1.5; }
.mf-link { font-size: 12px; color: var(--blue-l); text-decoration: none; }

/* HAMBURGER & MOBILE */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; background: rgba(8,16,32,0.99); padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-menu.open { display: flex; }
.mob-group { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-head { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-l); margin-bottom: 10px; }
.mob-group a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; padding: 8px 0; }
.mob-cta { margin-top: 8px; padding: 14px; background: var(--blue); color: white; border: none; border-radius: 12px; font-size: 14px; cursor: pointer; font-family: 'DM Sans',sans-serif; }

/* HERO SLIDER */
.hero-slider { position: relative; overflow: hidden; height: 100vh; min-height: 600px; }
.slides-track { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.slide { min-width: 100%; height: 100%; position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding-top: 100px; }
.s-dark { background: linear-gradient(135deg,#0a1628 0%,#1a2d4e 40%,#0d2040 70%,#0a1628 100%); }
.s-light { background: linear-gradient(135deg,#c8dff5,#e2eef9); }
.s2 { background: linear-gradient(135deg,#0a1628,#0d2040 50%,#162947); }
.s4 { background: linear-gradient(135deg,#060e1a,#0a1628 50%,#1a2d4e); }
.dot-grid { position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(74,144,217,0.15) 1px,transparent 1px); background-size: 28px 28px; pointer-events: none; opacity: 0.5; }
.glow-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.g1 { width: 400px; height: 400px; background: rgba(74,144,217,0.1); top: 10%; left: 15%; }
.g2 { width: 300px; height: 300px; background: rgba(74,144,217,0.07); bottom: 15%; right: 10%; }
.g3 { width: 500px; height: 500px; background: rgba(74,144,217,0.08); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.slide-content { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; padding: 0 48px; width: 100%; }
.slide-eye { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.slide-eye span { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--blue-l); }
.acc-line { height: 1px; width: 40px; background: linear-gradient(90deg,var(--blue),var(--blue-l)); flex-shrink: 0; }
.acc-line.sm { width: 32px; }
.hero-words { margin-bottom: 20px; }
.hw { font-size: clamp(3rem,7vw,6.5rem); font-weight: 300; color: white; line-height: 0.92; }
.hw.italic { font-style: italic; }
.hw.blue { color: var(--blue-l); }
.slide-big { font-family: 'Cormorant Garamond',serif; font-size: clamp(2.5rem,6vw,5.5rem); font-weight: 300; color: white; line-height: 1; margin-bottom: 20px; }
.dark-h1 { color: var(--navy) !important; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.stag { font-size: 12px; padding: 5px 14px; border-radius: 20px; background: rgba(74,144,217,0.2); color: var(--blue-l); border: 1px solid rgba(74,144,217,0.3); }
.lt-stag { background: rgba(10,22,40,0.12); color: var(--navy); border-color: rgba(10,22,40,0.2); }
.slide-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 520px; margin-bottom: 32px; }
.dark-sub { color: rgba(10,22,40,0.6) !important; }
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.sbtn-primary { padding: 14px 32px; background: var(--blue); color: white; text-decoration: none; border-radius: 40px; font-size: 14px; transition: all 0.3s; display: inline-block; }
.sbtn-primary:hover { background: #3a7bc8; box-shadow: 0 8px 24px rgba(74,144,217,0.4); }
.sbtn-ghost { padding: 14px 32px; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); text-decoration: none; border-radius: 40px; font-size: 14px; transition: all 0.3s; display: inline-block; }
.sbtn-ghost:hover { border-color: white; color: white; }
.sbtn-dark { padding: 14px 32px; background: var(--navy); color: white; text-decoration: none; border-radius: 40px; font-size: 14px; transition: all 0.3s; display: inline-block; }
.sbtn-dark:hover { background: var(--navy2); }

/* SLIDER CONTROLS */
.sl-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; width: 48px; height: 48px; border-radius: 50%; font-size: 22px; cursor: pointer; z-index: 10; transition: all 0.3s; backdrop-filter: blur(8px); }
.sl-btn:hover { background: rgba(74,144,217,0.4); }
.sl-prev { left: 24px; }
.sl-next { right: 24px; }
.sl-dots { position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.sldot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.sldot.active { background: var(--blue-l); width: 24px; border-radius: 4px; }

/* STATS BAR */
.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(6,14,26,0.85); backdrop-filter: blur(20px); display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,0.06); z-index: 5; }
.hstat { text-align: center; padding: 16px; }
.hstat-v { display: block; font-family: 'Cormorant Garamond',serif; font-size: 22px; color: var(--blue-l); }
.hstat-l { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }

/* CAT STRIP */
.cat-strip { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); }
.strip-wrap { max-width: 1400px; margin: 0 auto; display: flex; overflow-x: auto; scrollbar-width: none; }
.strip-wrap::-webkit-scrollbar { display: none; }
.strip-item { display: flex; align-items: center; gap: 10px; padding: 18px 28px; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.06); transition: all 0.2s; }
.strip-item:hover { color: var(--blue-l); background: rgba(74,144,217,0.06); }

/* SECTIONS */
.sec-inner { max-width: 1400px; margin: 0 auto; padding: 80px 24px; }
.rel { position: relative; z-index: 1; }
.prods-sec { }
.bg-gray { background: var(--gray); }
.bg-white { background: white; }
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.acc-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.blue-ey { color: var(--blue-l); }
h2 { font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; color: var(--navy); line-height: 1.1; }
.wh2 { color: white; }
.blue-em { color: var(--blue-l); }
.sec-desc { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-top: 12px; }
.wdesc { color: rgba(255,255,255,0.45); max-width: 600px; margin: 12px auto 0; }

/* PRODUCT CARDS */
.prods-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pcard { border-radius: 24px; overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.pcard:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(10,22,40,0.14); }
.dark-pcard { background: white; border: 1px solid rgba(10,22,40,0.06); }
.light-pcard { background: var(--gray); border: 1px solid rgba(10,22,40,0.06); }
.pcard-top { padding: 36px; position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; min-height: 180px; }
.dark-top { background: linear-gradient(135deg,#0a1628,#1a2d4e); }
.dt2 { background: linear-gradient(135deg,#0d1e38,#162947); }
.dt3 { background: linear-gradient(135deg,#0a1628,#0d2040); }
.light-top { background: linear-gradient(135deg,#c8dff5,#e0eefa); }
.lt2 { background: linear-gradient(135deg,#bdd5f0,#d5e9f8); }
.lt3 { background: linear-gradient(135deg,#d0e6f7,#e8f3fc); }
.pbadge { position: absolute; top: 16px; right: 16px; font-size: 10px; padding: 4px 12px; border-radius: 20px; background: rgba(122,184,245,0.2); color: var(--blue-l); }
.orange-badge { background: rgba(255,165,0,0.2); color: #ffa500; }
.green-badge { background: rgba(72,199,116,0.2); color: #48c774; }
.dark-badge-sm { background: rgba(10,22,40,0.12); color: var(--navy); }
.pcard-visual,.dark-visual { text-align: left; }
.pv-res { font-family: 'Cormorant Garamond',serif; font-size: 48px; font-weight: 300; color: rgba(255,255,255,0.15); line-height: 1; }
.pv-dark { color: rgba(10,22,40,0.12) !important; }
.pv-size { font-size: 14px; color: rgba(255,255,255,0.3); letter-spacing: 2px; margin-top: -8px; }
.pv-dark-s { color: rgba(10,22,40,0.3) !important; }
.pcard-body { padding: 24px; }
.pcard-series { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.pcard-name { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.pcard-tag { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.pspecs { margin-bottom: 20px; }
.pspec-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(10,22,40,0.06); }
.pspec-row:last-child { border: none; }
.psk { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #8a9ab0; }
.psv { font-size: 12px; font-weight: 500; color: var(--navy); }
.pcard-btn { width: 100%; padding: 12px; border: 1px solid rgba(10,22,40,0.15); border-radius: 12px; background: none; cursor: pointer; font-size: 13px; color: var(--navy); font-family: 'DM Sans',sans-serif; transition: all 0.3s; }
.pcard-btn:hover { background: var(--navy); color: white; }
.dark-pcard-btn:hover { background: var(--navy); color: white; }

/* TRUST */
.trust-sec { background: linear-gradient(135deg,#0a1628,#1a2d4e,#0d2040); position: relative; overflow: hidden; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 32px; }
.tcard { background: rgba(10,22,40,0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 28px; transition: all 0.4s ease; }
.tcard:hover { border-color: rgba(74,144,217,0.5); background: rgba(74,144,217,0.07); box-shadow: 0 0 40px rgba(74,144,217,0.15),0 20px 60px rgba(0,0,0,0.3); transform: translateY(-6px); }
.tcard:hover .ttitle { color: var(--blue-l); text-shadow: 0 0 30px rgba(74,144,217,0.3); }
.tcard:hover .tdot { background: var(--blue-l); box-shadow: 0 0 6px rgba(74,144,217,0.8); }
.tcard:hover .ticon { background: rgba(74,144,217,0.2); box-shadow: 0 0 24px rgba(74,144,217,0.3); }
.ticon { width: 52px; height: 52px; border-radius: 16px; background: rgba(10,22,40,0.6); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.4s; }
.ttitle { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 400; color: white; margin-bottom: 10px; transition: all 0.4s; }
.tdesc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
.tlist { list-style: none; }
.tlist li { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.tdot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; transition: all 0.4s; }
.cert-bar { background: rgba(6,14,26,0.7); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 20px 32px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 32px; }
.cert { text-align: center; }
.cn { display: block; font-size: 13px; font-weight: 500; color: white; margin-bottom: 2px; }
.cs { display: block; font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

/* PARTNERS */
.partners-sec { background: white; }
.partners-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.partner-card { border-radius: 20px; overflow: hidden; background: var(--gray); border: 1px solid rgba(10,22,40,0.06); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.partner-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(10,22,40,0.12); }
.partner-img-wrap { position: relative; overflow: hidden; height: 260px; }
.partner-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.partner-card:hover .partner-img { transform: scale(1.05); }
.partner-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,22,40,0.5) 0%,transparent 60%); display: flex; align-items: flex-end; justify-content: flex-end; padding: 14px; opacity: 0; transition: opacity 0.3s; }
.partner-card:hover .partner-overlay { opacity: 1; }
.partner-award-icon { font-size: 28px; }
.partner-info { padding: 18px 20px; }
.partner-name { font-family: 'Cormorant Garamond',serif; font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.partner-city { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.partner-badge { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); background: rgba(74,144,217,0.1); padding: 4px 10px; border-radius: 20px; }

/* FAQ */
.faq-sec { background: var(--gray); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(10,22,40,0.08); }
.faq-q { width: 100%; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-family: 'DM Sans',sans-serif; color: var(--navy); cursor: pointer; text-align: left; font-weight: 500; }
.faq-ic { font-size: 20px; color: var(--blue); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-ans { max-height: 200px; padding-bottom: 20px; }

/* CTA */
.cta-sec { background: white; }
.cta-box { max-width: 720px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.cta-desc { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 480px; margin: 16px auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-pri { padding: 16px 40px; background: var(--navy); color: white; border: none; border-radius: 40px; cursor: pointer; font-size: 14px; font-family: 'DM Sans',sans-serif; transition: all 0.3s; }
.btn-pri:hover { background: var(--navy2); box-shadow: 0 8px 24px rgba(10,22,40,0.2); }
.btn-sec { padding: 16px 32px; border: 1px solid rgba(10,22,40,0.2); color: var(--navy); text-decoration: none; border-radius: 40px; font-size: 14px; transition: all 0.3s; display: inline-block; }
.btn-sec:hover { background: var(--gray); }

/* FOOTER */
footer { background: #060e1a; padding: 64px 24px 0; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; }
.flogo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.flogo { width: 32px; height: 32px; border-radius: 50%; background: #1e3a5f; display: flex; align-items: center; justify-content: center; color: #7ab8f5; font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.fname { font-size: 20px; letter-spacing: 3px; color: white; }
.ftagline { font-size: 13px; color: #8aaac4; line-height: 1.7; margin-bottom: 20px; }
.fsocials { display: flex; gap: 10px; }
.fsoc { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #2a4a6a; display: flex; align-items: center; justify-content: center; color: #6a8aaa; font-size: 11px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.fsoc:hover { border-color: var(--blue-l); color: var(--blue-l); }
.fhead { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #4a6a8a; margin-bottom: 16px; }
.fcol { display: flex; flex-direction: column; }
.fcol a { text-decoration: none; color: #a8bdd4; font-size: 13px; margin-bottom: 10px; position: relative; display: inline-block; transition: color 0.3s, text-shadow 0.3s; }
.fcol a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: linear-gradient(90deg,var(--blue),var(--blue-l)); transition: width 0.3s; }
.fcol a:hover { color: var(--blue-l); text-shadow: 0 0 20px rgba(74,144,217,0.4); }
.fcol a:hover::after { width: 100%; }
.fcontact { font-size: 13px; color: #8aaac4; margin-bottom: 10px; line-height: 1.6; }
.fbottom { max-width: 1400px; margin: 0 auto; border-top: 1px solid #1a2e42; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.fbottom p { font-size: 12px; color: #4a6a8a; }
.flegals { display: flex; gap: 20px; flex-wrap: wrap; }
.flegals a { text-decoration: none; font-size: 12px; color: #6a849e; transition: color 0.3s; }
.flegals a:hover { color: var(--blue-l); }

/* POPUP */
.popup-overlay { position: fixed; inset: 0; z-index: 999; background: rgba(5,10,20,0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box { background: white; border-radius: 24px; width: 100%; max-width: 580px; padding: 36px; position: relative; transform: translateY(20px); transition: transform 0.3s; max-height: 90vh; overflow-y: auto; }
.popup-overlay.active .popup-box { transform: translateY(0); }
.popup-close { position: absolute; top: 16px; right: 16px; background: var(--gray); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 14px; color: var(--muted); transition: background 0.2s; }
.popup-close:hover { background: #e0e2e6; }
.popup-hdr { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.popup-logo { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; letter-spacing: 2px; flex-shrink: 0; }
.popup-title { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 400; color: var(--navy); }
.popup-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.popup-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: 11px; letter-spacing: 1px; color: #8a9ab0; text-transform: uppercase; }
.fg input, .fg select, .fg textarea { padding: 11px 14px; border: 1px solid rgba(10,22,40,0.12); border-radius: 10px; font-size: 14px; font-family: 'DM Sans',sans-serif; color: var(--navy); background: #f9fafb; outline: none; transition: all 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(74,144,217,0.1); background: white; }
.fg textarea { resize: vertical; }
.fg optgroup { font-size: 12px; font-weight: 600; color: var(--navy); }
.popup-submit { padding: 14px; background: var(--navy); color: white; border: none; border-radius: 12px; cursor: pointer; font-size: 14px; font-family: 'DM Sans',sans-serif; margin-top: 4px; transition: all 0.3s; }
.popup-submit:hover { background: var(--navy2); box-shadow: 0 8px 24px rgba(10,22,40,0.2); }
.success-msg { display: none; flex-direction: column; align-items: center; text-align: center; padding: 28px 0; gap: 14px; }
.succ-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(74,144,217,0.1); color: var(--blue); font-size: 26px; display: flex; align-items: center; justify-content: center; }
.success-msg h3 { font-family: 'Cormorant Garamond',serif; font-size: 26px; color: var(--navy); }
.success-msg p { font-size: 13px; color: var(--muted); max-width: 280px; }

/* SCROLL REVEAL */
.reveal-ready { opacity: 0.2; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-ready.revealed { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .prods-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .fbrand { grid-column: 1 / -1; }
  .mega-inner { grid-template-columns: 1fr 1fr; }
  .mega-feat { display: none; }
}
@media (max-width: 768px) {
  .announce-bar { display: none; }
  body { padding-top: 0; }
  #navbar { top: 0; }
  .slide { padding-top: 80px; }
  .slide-content { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .prods-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .fbottom { flex-direction: column; text-align: center; }
  .cert-bar { gap: 20px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
}