/* ============================================================
   YOUR NEXT WEBSITE — v2.1.0 Static CSS
   Brand: Navy #0A2342 · Blue #0066FF · Teal #00C896 · Dark #0B1929 · Light #F0F4FF
   ============================================================ */

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

:root {
  --ynw-navy:       #0A2342;
  --ynw-dark:       #0B1929;
  --ynw-blue:       #0066FF;
  --ynw-blue-hover: #0052CC;
  --ynw-teal:       #00C896;
  --ynw-teal-hover: #00A87D;
  --ynw-light-bg:   #F0F4FF;
  --ynw-white:      #FFFFFF;
  --ynw-text:       #1A1A2E;
  --ynw-text-light: #5A6378;
  --ynw-border:     #E0E8F5;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
  color: var(--ynw-text);
  background: var(--ynw-white);
  margin: 0; padding: 0; line-height: 1.6;
}

a { color: var(--ynw-blue); transition: color 0.2s ease; }
a:hover { color: var(--ynw-blue-hover); }
h1,h2,h3,h4,h5,h6 { color: var(--ynw-navy); font-weight: 700; line-height: 1.25; margin-top: 0; }
img { max-width: 100%; height: auto; }
ul,ol { padding-left: 20px; }

/* ── HEADER ── */
.ynw-site-header {
  background: #ffffff;
  border-bottom: 1px solid #e8edf5;
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform;
}
.ynw-site-header.scrolled { box-shadow: 0 4px 20px rgba(10,35,66,0.10); }
.ynw-site-header.ynw-header-hidden { transform: translateY(-100%); }
body.ynw-nav-open { overflow: hidden; position: fixed; width: 100%; }

.ynw-header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.ynw-logo a { display: flex; align-items: center; text-decoration: none; }
.ynw-logo img { max-height: 80px; width: auto; }

.ynw-nav { display: flex; align-items: center; gap: 32px; }
.ynw-nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.ynw-nav-links a { color: var(--ynw-navy); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s ease; }
.ynw-nav-links a:hover { color: var(--ynw-teal); }

.ynw-nav-cta {
  background: var(--ynw-blue); color: #fff !important;
  padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: 0.88rem;
  text-decoration: none; transition: background 0.2s ease, transform 0.1s ease; white-space: nowrap;
}
.ynw-nav-cta:hover { background: var(--ynw-blue-hover) !important; color: #fff !important; transform: translateY(-1px); }

.ynw-mobile-toggle {
  display: none; background: none; border: 1.5px solid var(--ynw-border);
  border-radius: 6px; cursor: pointer; padding: 8px;
}
.ynw-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--ynw-navy); margin: 5px 0; transition: all 0.3s ease; }

/* ── BUTTONS ── */
.ynw-btn-primary, .btn-primary {
  background: var(--ynw-blue); border: 2px solid var(--ynw-blue);
  color: #fff !important; border-radius: 6px; font-weight: 600; letter-spacing: 0.02em;
  padding: 14px 28px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none; display: inline-block; cursor: pointer; font-size: 0.95rem; font-family: inherit;
}
.ynw-btn-primary:hover, .btn-primary:hover {
  background: var(--ynw-blue-hover) !important; border-color: var(--ynw-blue-hover) !important;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,102,255,0.35);
}
.ynw-btn-secondary, .btn-secondary {
  background: transparent; border: 2px solid var(--ynw-blue); color: var(--ynw-blue) !important;
  border-radius: 6px; font-weight: 600; padding: 12px 26px; transition: all 0.2s;
  text-decoration: none; display: inline-block; font-family: inherit; cursor: pointer;
}
.ynw-btn-secondary:hover, .btn-secondary:hover { background: var(--ynw-blue) !important; color: #fff !important; }
.btn-white { background: #fff; color: var(--ynw-blue) !important; border: 2px solid #fff; padding: 14px 28px; border-radius: 6px; font-weight: 700; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-white:hover { background: transparent; color: #fff !important; }
.btn-ghost-white { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,0.5); padding: 14px 28px; border-radius: 6px; font-weight: 600; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── HERO ── */
.ynw-hero {
  background: linear-gradient(135deg, var(--ynw-dark) 0%, var(--ynw-navy) 60%, #0d2f5e 100%);
  color: #fff; padding: 100px 0 80px; position: relative; overflow: hidden;
}
.ynw-hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.18) 0%, transparent 70%); pointer-events: none;
}
.ynw-hero::after {
  content: ''; position: absolute; bottom: -20%; left: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%); pointer-events: none;
}
.ynw-hero h1 { color: #fff; font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; margin-bottom: 1.2rem; }
.ynw-hero .hero-subtitle { color: rgba(255,255,255,0.80); font-size: 1.2rem; margin-bottom: 2rem; max-width: 580px; }
.ynw-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,150,0.15); border: 1px solid rgba(0,200,150,0.40);
  color: var(--ynw-teal); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}

/* ── SECTIONS ── */
.ynw-section { padding: 80px 0; }
.ynw-section-light { background: var(--ynw-light-bg); padding: 80px 0; }
.ynw-section-dark { background: var(--ynw-dark); color: #fff; padding: 80px 0; }
.ynw-section-dark h2,.ynw-section-dark h3,.ynw-section-dark p { color: #fff; }
.ynw-section-navy { background: var(--ynw-navy); color: #fff; padding: 80px 0; }
.ynw-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.ynw-section-title { text-align: center; margin-bottom: 56px; }
.ynw-section-title h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; margin-bottom: 0.75rem; }
.ynw-section-title p { color: var(--ynw-text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.ynw-eyebrow { display: inline-block; color: var(--ynw-blue); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }

/* ── PLANS ── */
.ynw-plans-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; margin-top: 40px; }
.ynw-plan-card {
  background: #fff; border: 1.5px solid var(--ynw-border); border-radius: 16px; padding: 36px 30px;
  position: relative; transition: transform 0.25s, box-shadow 0.25s;
}
.ynw-plan-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,102,255,0.12); }
.ynw-plan-card.featured { border-color: var(--ynw-blue); box-shadow: 0 8px 32px rgba(0,102,255,0.18); }
.ynw-plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ynw-blue); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px;
}
.ynw-plan-name { font-size: 1rem; font-weight: 700; color: var(--ynw-text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.ynw-plan-price { font-size: 2.8rem; font-weight: 800; color: var(--ynw-navy); line-height: 1; }
.ynw-plan-price span { font-size: 1rem; font-weight: 500; color: var(--ynw-text-light); }
.ynw-plan-card.featured .ynw-plan-price { color: var(--ynw-blue); }
.ynw-plan-desc { color: var(--ynw-text-light); font-size: 0.9rem; margin: 1rem 0 1.5rem; }
.ynw-plan-features { list-style: none; padding: 0; margin: 0 0 1.8rem; }
.ynw-plan-features li { padding: 7px 0 7px 24px; position: relative; font-size: 0.9rem; color: var(--ynw-text); border-bottom: 1px solid var(--ynw-border); }
.ynw-plan-features li:last-child { border-bottom: none; }
.ynw-plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--ynw-teal); font-weight: 700; }
.ynw-price-was { font-size: 1rem; color: #aaa; text-decoration: line-through; margin-right: 6px; font-weight: 500; }
.ynw-sale-badge {
  display: inline-block; background: linear-gradient(135deg,#FF4444,#FF6B35); color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px; vertical-align: middle; margin-left: 8px;
}
.ynw-savings-note { font-size: 0.78rem; color: #00C896; font-weight: 700; margin-top: 4px; }

/* ── CARDS ── */
.ynw-cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.ynw-card { background: #fff; border: 1.5px solid var(--ynw-border); border-radius: 14px; padding: 32px 26px; transition: transform 0.22s, box-shadow 0.22s; }
.ynw-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,102,255,0.10); }
.ynw-card-icon { width: 54px; height: 54px; background: linear-gradient(135deg,rgba(0,102,255,0.12),rgba(0,200,150,0.12)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.ynw-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.ynw-card p { color: var(--ynw-text-light); font-size: 0.9rem; line-height: 1.65; }
.ynw-card .card-price { font-weight: 700; color: var(--ynw-blue); font-size: 1rem; margin: 1rem 0; }

/* ── STEPS ── */
.ynw-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 32px; }
.ynw-step { text-align: center; padding: 24px; }
.ynw-step-number { width: 60px; height: 60px; background: linear-gradient(135deg,var(--ynw-blue),var(--ynw-teal)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; margin: 0 auto 1.2rem; }
.ynw-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.ynw-step p { color: var(--ynw-text-light); font-size: 0.88rem; line-height: 1.6; }

/* ── TRUST BADGES ── */
.ynw-trust-bar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; padding: 28px 0; }
.ynw-trust-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.90); padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }
.ynw-trust-badge .badge-icon { color: var(--ynw-teal); font-size: 1rem; }

/* ── CTA BANNER ── */
.ynw-cta-banner { background: linear-gradient(135deg,var(--ynw-navy) 0%,#0d2f5e 50%,var(--ynw-dark) 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.ynw-cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066FF' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.ynw-cta-banner h2 { color: #fff; font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 1rem; }
.ynw-cta-banner p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.ynw-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIALS ── */
.ynw-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; }
.ynw-testimonial { background: #fff; border: 1.5px solid var(--ynw-border); border-radius: 14px; padding: 28px; }
.ynw-testimonial .stars { color: #FFB800; font-size: 1rem; margin-bottom: 1rem; }
.ynw-testimonial p { color: var(--ynw-text); font-size: 0.92rem; line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.ynw-testimonial .author { font-weight: 700; color: var(--ynw-navy); font-size: 0.88rem; }
.ynw-testimonial .role { color: var(--ynw-text-light); font-size: 0.82rem; }

/* ── FAQ ── */
.ynw-faq { max-width: 780px; margin: 0 auto; }
.ynw-faq-item { border: 1.5px solid var(--ynw-border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.ynw-faq-item:hover { box-shadow: 0 4px 16px rgba(0,102,255,0.08); }
.ynw-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; cursor: pointer; font-weight: 600; color: var(--ynw-navy); font-size: 0.97rem; background: #fff; user-select: none; border: none; width: 100%; text-align: left; font-family: inherit; }
.ynw-faq-question::after { content: '+'; font-size: 1.4rem; color: var(--ynw-blue); transition: transform 0.25s; flex-shrink: 0; }
.ynw-faq-item.open .ynw-faq-question::after { transform: rotate(45deg); }
.ynw-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--ynw-light-bg); }
.ynw-faq-item.open .ynw-faq-answer { max-height: 400px; padding: 0 24px 20px; }
.ynw-faq-answer p { color: var(--ynw-text-light); font-size: 0.9rem; line-height: 1.7; padding-top: 16px; }

/* ── COMPARISON TABLE ── */
.ynw-compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.ynw-compare-table th { background: var(--ynw-navy); color: #fff; padding: 18px 20px; text-align: center; font-weight: 700; font-size: 0.95rem; }
.ynw-compare-table th:first-child { text-align: left; }
.ynw-compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--ynw-border); text-align: center; font-size: 0.9rem; color: var(--ynw-text); }
.ynw-compare-table td:first-child { text-align: left; font-weight: 500; color: var(--ynw-navy); }
.ynw-compare-table tr:last-child td { border-bottom: none; }
.ynw-compare-table tr:nth-child(even) td { background: var(--ynw-light-bg); }
.ynw-compare-table .check { color: var(--ynw-teal); font-weight: 700; font-size: 1.1rem; }
.ynw-compare-table .cross { color: #ccc; font-size: 1.1rem; }

/* ── SPLIT LAYOUT ── */
.ynw-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ── FORM ── */
.ynw-form-group { margin-bottom: 20px; }
.ynw-form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--ynw-navy); }
.ynw-form-group input,.ynw-form-group textarea,.ynw-form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--ynw-border); border-radius: 8px; font-size: 0.95rem; color: var(--ynw-text); background: #fff; transition: border-color 0.2s; outline: none; font-family: inherit; }
.ynw-form-group input:focus,.ynw-form-group textarea:focus,.ynw-form-group select:focus { border-color: var(--ynw-blue); }

/* ── SCROLL ANIMATION ── */
.ynw-animate { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.ynw-visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
.ynw-site-footer { background: var(--ynw-dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.ynw-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ynw-footer-brand p { color: rgba(255,255,255,0.60); font-size: 0.88rem; line-height: 1.7; margin-top: 12px; margin-bottom: 20px; }
.ynw-footer-brand img { max-height: 120px; width: auto; filter: brightness(0) invert(1); }
.ynw-footer-col h5 { color: #fff; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.ynw-footer-col ul { list-style: none; padding: 0; margin: 0; }
.ynw-footer-col ul li { margin-bottom: 10px; }
.ynw-footer-col ul li a { color: rgba(255,255,255,0.60); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.ynw-footer-col ul li a:hover { color: var(--ynw-teal); }
.ynw-footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ynw-footer-bottom p { color: rgba(255,255,255,0.40); font-size: 0.82rem; margin: 0; }
.ynw-footer-bottom a { color: rgba(255,255,255,0.50); text-decoration: none; font-size: 0.82rem; }
.ynw-footer-bottom a:hover { color: var(--ynw-teal); }

/* ── PAGE LOADER ── */
#ynw-page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #0A2342; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px; transition: opacity 0.5s, visibility 0.5s;
}
#ynw-page-loader.ynw-loader-hide { opacity: 0; visibility: hidden; }
.ynw-loader-logo { max-height: 64px; animation: ynwLogoPulse 1s ease-in-out infinite alternate; }
.ynw-loader-ring { width: 48px; height: 48px; border: 4px solid rgba(255,255,255,0.15); border-top-color: #00C896; border-radius: 50%; animation: ynwSpin 0.8s linear infinite; }
@keyframes ynwSpin { to { transform: rotate(360deg); } }
@keyframes ynwLogoPulse { from { opacity:0.7; transform:scale(0.97); } to { opacity:1; transform:scale(1.03); } }

/* ── EXIT POPUP ── */
#ynw-exit-popup { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
#ynw-exit-popup.active { display: flex; }
.ynw-exit-overlay { position: absolute; inset: 0; background: rgba(10,35,66,0.72); backdrop-filter: blur(4px); }
.ynw-exit-box { position: relative; z-index: 1; background: #fff; border-radius: 20px; padding: 48px 40px; max-width: 500px; width: 90%; text-align: center; box-shadow: 0 32px 80px rgba(0,0,0,0.30); animation: ynwPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes ynwPopIn { from { opacity:0; transform:scale(0.85) translateY(20px); } to { opacity:1; transform:scale(1); } }
.ynw-exit-icon { font-size: 3.5rem; margin-bottom: 16px; }
.ynw-exit-box h3 { font-size: 1.5rem; color: #0A2342; margin-bottom: 10px; }
.ynw-exit-box p { color: #5A6378; font-size: 0.95rem; margin-bottom: 28px; line-height: 1.65; }
.ynw-exit-cta { display: inline-block; background: #0066FF; color: #fff !important; padding: 14px 32px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: background 0.2s; margin-bottom: 12px; width: 100%; }
.ynw-exit-cta:hover { background: #0052CC; color: #fff !important; }
.ynw-exit-secondary { display: block; color: #999; font-size: 0.82rem; cursor: pointer; margin-top: 8px; }
.ynw-exit-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #aaa; line-height: 1; padding: 4px 8px; }
.ynw-exit-mockup { background: linear-gradient(135deg,#0A2342,#0066FF); border-radius: 12px; padding: 20px; margin-bottom: 24px; display: flex; align-items: center; gap: 16px; text-align: left; }
.ynw-exit-mockup-img { font-size: 2.5rem; }
.ynw-exit-mockup-text h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.ynw-exit-mockup-text p { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin: 0; }

/* ── STICKY CTA ── */
#ynw-sticky-cta { position: fixed; bottom: 28px; right: 28px; z-index: 800; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity 0.4s, visibility 0.4s, transform 0.4s; }
#ynw-sticky-cta.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ynw-sticky-btn { display: flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; text-decoration: none; white-space: nowrap; box-shadow: 0 6px 24px rgba(0,0,0,0.18); transition: transform 0.2s, box-shadow 0.2s; }
.ynw-sticky-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.22); }
.ynw-sticky-btn-primary { background: #0066FF; color: #fff !important; }

/* ── WHATSAPP FLOAT ── */
#ynw-whatsapp-float { position: fixed; bottom: 100px; right: 28px; z-index: 799; opacity: 0; visibility: hidden; transform: scale(0.7); transition: opacity 0.4s, visibility 0.4s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
#ynw-whatsapp-float.visible { opacity: 1; visibility: visible; transform: scale(1); }
.ynw-wa-button { display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff !important; padding: 12px 20px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.88rem; box-shadow: 0 6px 24px rgba(37,211,102,0.40); white-space: nowrap; }
.ynw-wa-button .wa-icon { font-size: 1.3rem; }

/* ── MOBILE NAV OVERLAY ── */
#ynw-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(10,35,66,0.60); backdrop-filter: blur(4px); z-index: 9000; opacity: 0; transition: opacity 0.3s; }
#ynw-nav-overlay.active { display: block; opacity: 1; }

/* ── TYPED TEXT ── */
.ynw-typed-text::after { content: '|'; color: #00C896; animation: ynwBlink 0.8s step-end infinite; margin-left: 2px; }
@keyframes ynwBlink { 50% { opacity: 0; } }

/* ── URGENCY BAR ── */
.ynw-urgency-bar { background: linear-gradient(90deg,#FF6B35,#FF4444); color: #fff; text-align: center; padding: 10px 20px; font-size: 0.85rem; font-weight: 600; position: relative; overflow: hidden; }
.ynw-urgency-bar::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.08),transparent); animation: ynwShimmer 2s infinite; }
@keyframes ynwShimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.ynw-urgency-bar .ynw-spots-count { font-size: 1.1em; font-weight: 800; }
.ynw-urgency-bar.ynw-urgency-hot { background: linear-gradient(90deg,#cc0000,#FF4444); }

/* ── DUAL CTA ── */
.ynw-dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.ynw-cta-path { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 28px 24px; text-align: center; }
.ynw-cta-path-icon { font-size: 2.2rem; margin-bottom: 12px; }
.ynw-cta-path h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.ynw-cta-path p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-bottom: 18px; line-height: 1.55; }
.ynw-cta-path-btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: transform 0.2s, opacity 0.2s; width: 100%; text-align: center; }
.ynw-cta-path-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.ynw-cta-path-btn.blue { background: #0066FF; color: #fff !important; }
.ynw-cta-path-btn.teal { background: #00C896; color: #fff !important; }

/* ── OFFER CARD ── */
.ynw-offer-section { position: relative; overflow: hidden; padding: 80px 0; background: linear-gradient(135deg,#0A2342 0%,#0B1929 60%,#0d2f5e 100%); }
.ynw-offer-section::before { content: ''; position: absolute; top: -20%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle,rgba(0,200,150,0.12) 0%,transparent 70%); pointer-events: none; }
.ynw-offer-card { background: linear-gradient(135deg,rgba(255,255,255,0.08),rgba(255,255,255,0.04)); border: 1.5px solid rgba(255,255,255,0.16); border-radius: 24px; padding: 48px 40px; max-width: 540px; margin: 0 auto; text-align: center; cursor: default; transition: transform 0.5s, box-shadow 0.5s; backdrop-filter: blur(10px); }
.ynw-offer-card-content { position: relative; z-index: 1; }
.ynw-offer-eyebrow { color: #00C896; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.ynw-offer-card h2 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.ynw-offer-price-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
.ynw-offer-price-was { font-size: 1.5rem; color: rgba(255,255,255,0.40); text-decoration: line-through; }
.ynw-offer-price-now { font-size: 3.5rem; font-weight: 800; color: #fff; line-height: 1; }
.ynw-offer-price-now span { font-size: 1.2rem; font-weight: 500; color: rgba(255,255,255,0.70); }
.ynw-offer-badge { background: linear-gradient(135deg,#FF6B35,#FF4444); color: #fff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; animation: ynwPulse 2s ease-in-out infinite; }
@keyframes ynwPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
.ynw-offer-features { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.ynw-offer-features li { padding: 8px 0 8px 28px; position: relative; color: rgba(255,255,255,0.82); font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ynw-offer-features li:last-child { border-bottom: none; }
.ynw-offer-features li::before { content: '✓'; position: absolute; left: 0; color: #00C896; font-weight: 800; }
.ynw-offer-btn { display: block; background: linear-gradient(135deg,#0066FF,#00C896); color: #fff !important; padding: 16px 32px; border-radius: 10px; font-weight: 800; font-size: 1.05rem; text-decoration: none; margin-top: 28px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 24px rgba(0,102,255,0.35); }
.ynw-offer-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,102,255,0.45); color: #fff !important; }
.ynw-offer-trust { color: rgba(255,255,255,0.45); font-size: 0.78rem; margin-top: 14px; }
.ynw-orb-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ynw-orb { position: absolute; border-radius: 50%; animation: ynwFloat 6s ease-in-out infinite; }
.ynw-orb-1 { width: 120px; height: 120px; top: 10%; left: 5%; background: radial-gradient(circle,rgba(255,107,53,0.25),transparent 70%); animation-duration: 7s; }
.ynw-orb-2 { width: 80px; height: 80px; top: 60%; right: 8%; background: radial-gradient(circle,rgba(0,200,150,0.20),transparent 70%); animation-delay: -2s; animation-duration: 9s; }
.ynw-orb-3 { width: 60px; height: 60px; bottom: 15%; left: 20%; background: radial-gradient(circle,rgba(0,102,255,0.20),transparent 70%); animation-delay: -4s; animation-duration: 8s; }
@keyframes ynwFloat { 0%,100%{transform:translateY(0) scale(1)} 33%{transform:translateY(-18px) scale(1.04)} 66%{transform:translateY(10px) scale(0.97)} }
.ynw-ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; }
.ynw-ring-1 { width: 600px; height: 600px; border: 1.5px solid rgba(255,255,255,0.06); animation: ynwRingPulse 3s ease-in-out infinite; }
.ynw-ring-2 { width: 750px; height: 750px; border: 1px dashed rgba(0,200,150,0.08); animation: ynwRingRotate 20s linear infinite; }
@keyframes ynwRingPulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.6} 50%{transform:translate(-50%,-50%) scale(1.05);opacity:1} }
@keyframes ynwRingRotate { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ── SPARKLE ── */
.ynw-sparkle { position: absolute; width: 6px; height: 6px; border-radius: 50%; pointer-events: none; animation: ynwSparkle 0.8s ease forwards; }
@keyframes ynwSparkle { 0%{opacity:1;transform:translate(0,0) scale(1)} 100%{opacity:0;transform:translate(var(--sx),var(--sy)) scale(0)} }

/* ── HERO STATS ── */
.ynw-hero-stats { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.ynw-stat-item { text-align: center; }
.ynw-stat-number { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.ynw-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.60); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .ynw-plans-grid { grid-template-columns: repeat(2,1fr); }
  .ynw-footer-grid { grid-template-columns: 1fr 1fr; }
  .ynw-cards-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .ynw-header-inner { height: 64px; padding: 0 16px; }
  .ynw-logo img { max-height: 56px; }
  .ynw-hero { padding: 52px 0 44px; }
  .ynw-hero h1 { font-size: clamp(1.6rem,5.5vw,2.4rem); }
  .ynw-hero .hero-subtitle { font-size: 1rem; }
  .ynw-hero-stats { gap: 20px; display: grid; grid-template-columns: 1fr 1fr; }
  .ynw-stat-number { font-size: 1.6rem; }
  .ynw-section, .ynw-section-light, .ynw-section-dark, .ynw-section-navy { padding: 52px 0; }
  .ynw-cta-banner { padding: 52px 0; }
  .ynw-section-title { margin-bottom: 36px; }
  .ynw-section-title h2 { font-size: clamp(1.5rem,5vw,2rem); }
  .ynw-plans-grid { grid-template-columns: 1fr; }
  .ynw-cards-grid { grid-template-columns: 1fr; }
  .ynw-steps { grid-template-columns: 1fr; }
  .ynw-split { grid-template-columns: 1fr; gap: 32px; }
  .ynw-testimonials-grid { grid-template-columns: 1fr; }
  .ynw-plan-card { transform: none !important; }
  .ynw-dual-cta { grid-template-columns: 1fr; gap: 16px; }
  .ynw-offer-section { padding: 52px 0; }
  .ynw-offer-card { padding: 32px 22px; }
  .ynw-offer-price-now { font-size: 2.6rem; }
  .ynw-orb-container, .ynw-ring { display: none; }
  .ynw-trust-bar { flex-wrap: wrap; gap: 10px; }
  .ynw-trust-badge { font-size: 0.78rem; padding: 8px 14px; }
  .ynw-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ynw-cta-btns { flex-direction: column; align-items: center; }
  .ynw-cta-btns a { width: 100%; max-width: 320px; text-align: center; }
  .ynw-step { padding: 16px; }
  #ynw-sticky-cta { bottom: 16px; right: 16px; }
  .ynw-sticky-btn .label { display: none; }
  .ynw-sticky-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  #ynw-whatsapp-float { bottom: 80px; right: 16px; }
  .ynw-wa-button .wa-label { display: none; }
  .ynw-wa-button { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  /* Mobile nav drawer */
  .ynw-mobile-toggle { display: flex !important; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: none; border: 1.5px solid var(--ynw-border); border-radius: 8px; cursor: pointer; flex-shrink: 0; }
  .ynw-mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--ynw-navy); transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
  .ynw-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .ynw-mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .ynw-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .ynw-nav { display: flex !important; flex-direction: column !important; position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: min(300px,82vw) !important; background: #fff !important; z-index: 9001 !important; padding: 72px 24px 40px !important; box-shadow: -4px 0 32px rgba(10,35,66,0.18) !important; overflow-y: auto !important; overflow-x: hidden !important; transform: translateX(100%) !important; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1) !important; gap: 0 !important; }
  .ynw-nav.open { transform: translateX(0) !important; }
  .ynw-nav::before { content: '✕'; position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--ynw-text-light); cursor: pointer; border-radius: 50%; background: var(--ynw-light-bg); pointer-events: none; }
  .ynw-nav-links { display: flex !important; flex-direction: column !important; list-style: none !important; margin: 0 !important; padding: 0 !important; gap: 0 !important; border-top: 1px solid #e8edf5; width: 100%; }
  .ynw-nav-links li { border-bottom: 1px solid #e8edf5; margin: 0 !important; }
  .ynw-nav-links a { display: flex !important; align-items: center !important; padding: 16px 4px !important; font-size: 1rem !important; font-weight: 600 !important; color: var(--ynw-navy) !important; min-height: 52px !important; text-decoration: none !important; transition: color 0.2s, padding-left 0.2s !important; }
  .ynw-nav-links a:hover { color: var(--ynw-teal) !important; padding-left: 10px !important; }
  .ynw-nav-cta { display: flex !important; align-items: center !important; justify-content: center !important; margin-top: 24px !important; padding: 16px 24px !important; font-size: 1rem !important; font-weight: 700 !important; border-radius: 8px !important; min-height: 52px !important; text-align: center !important; background: var(--ynw-blue) !important; color: #fff !important; }
}

/* ── RESPONSIVE: SMALL MOBILE ── */
@media (max-width: 480px) {
  html, body { overflow-x: hidden; }
  .ynw-container { padding: 0 16px; }
  .ynw-header-inner { height: 60px; padding: 0 14px; }
  .ynw-hero { padding: 44px 0 36px; }
  .ynw-hero h1 { font-size: 1.6rem; line-height: 1.3; }
  .ynw-hero .hero-subtitle { font-size: 0.95rem; }
  .ynw-hero-stats { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .ynw-stat-number { font-size: 1.4rem; }
  .ynw-stat-label { font-size: 0.68rem; }
  .ynw-section,.ynw-section-light,.ynw-section-dark,.ynw-section-navy { padding: 40px 0; }
  .ynw-section-title h2 { font-size: 1.4rem; }
  .ynw-cards-grid { grid-template-columns: 1fr; }
  .ynw-steps { grid-template-columns: 1fr; }
  .ynw-footer-grid { grid-template-columns: 1fr; }
  .ynw-footer-bottom { flex-direction: column; text-align: center; }
  .ynw-trust-bar { flex-direction: column; align-items: stretch; }
  .ynw-trust-badge { justify-content: center; }
  .ynw-plan-price { font-size: 2.2rem; }
  .ynw-offer-card { padding: 28px 16px; }
  .ynw-offer-price-now { font-size: 2.2rem; }
  .ynw-faq-question { font-size: 0.9rem; padding: 14px 18px; }
  .ynw-exit-box { padding: 32px 22px; }
  .ynw-exit-box h3 { font-size: 1.2rem; }
}

@media (max-width: 768px) {
  a, button, input[type="submit"], input[type="button"], .ynw-btn-primary, .ynw-btn-secondary { min-height: 44px; }
}

@font-face { font-family: 'Inter'; font-display: swap; }
