/*
Theme Name: Your NexT Website
Theme URI: https://yournextwebsite.com.au
Author: Your NexT Website
Author URI: https://yournextwebsite.com.au
Description: Melbourne-based AI-powered website agency backed by real human specialists. Professional websites for Australian small businesses starting from $39/month.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yournextwebsite
Tags: business, professional, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments
*/

/* ============================================================
   YOUR NEXT WEBSITE — BRAND COLOUR SYSTEM
   Primary:      Navy #0A2342
   Accent Blue:  Electric Blue #0066FF
   Accent Green: Electric Teal #00C896
   Dark:         #0B1929
   Light BG:     #F0F4FF
   ============================================================ */

: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;
  --primary-color:   #0066FF;
  --secondary-color: #0A2342;
  --third-color:     #00C896;
  --dark-color:      #0B1929;
}

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ynw-text);
  background-color: 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 / NAVIGATION
   ============================================================ */
.ynw-site-header {
  background-color: #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);
}
/* Auto-hide header on mobile scroll-down */
.ynw-site-header.ynw-header-hidden {
  transform: translateY(-100%);
}
/* Body scroll lock when nav open
   NOTE: position:fixed removed — scroll position saved/restored in JS instead.
   position:fixed caused the page to jump to top on iOS Safari when nav opened. */
body.ynw-nav-open {
  overflow: hidden;
  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,
.ynw-logo .custom-logo,
.ynw-logo .custom-logo-link img {
  max-height: 64px;
  width: auto;
  display: block;
}
/* WordPress wraps custom logo in an <a class="custom-logo-link"> */
.ynw-logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.ynw-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ynw-navy);
  letter-spacing: -0.02em;
}
.ynw-logo-text span { color: var(--ynw-teal); }

.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-color: var(--ynw-blue);
  color: #ffffff !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-color: 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;
}

/* Mobile nav — handled by drawer CSS below (appended section) */
@media (max-width: 768px) {
  .ynw-mobile-toggle { display: flex; }
  .ynw-nav-links { flex-direction: column; align-items: flex-start; gap: 0; }
}

/* ============================================================
   BUTTONS — GLOBAL
   ============================================================ */
.btn-primary,
.ynw-btn-primary,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
  background-color: var(--ynw-blue) !important;
  border: 2px solid var(--ynw-blue) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
}
.btn-primary:hover,
.ynw-btn-primary:hover {
  background-color: 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);
}
.btn-secondary, .ynw-btn-secondary {
  background-color: transparent !important;
  border: 2px solid var(--ynw-blue) !important;
  color: var(--ynw-blue) !important;
  border-radius: 6px !important;
  font-weight: 600;
  padding: 12px 26px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
}
.btn-secondary:hover, .ynw-btn-secondary:hover {
  background-color: var(--ynw-blue) !important;
  color: #ffffff !important;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.ynw-hero {
  background: linear-gradient(135deg, var(--ynw-dark) 0%, var(--ynw-navy) 60%, #0d2f5e 100%);
  color: #ffffff;
  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: #ffffff;
  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;
}

/* ============================================================
   SECTION LAYOUTS
   ============================================================ */
.ynw-section { padding: 80px 0; }
.ynw-section-light { background-color: var(--ynw-light-bg); padding: 80px 0; }
.ynw-section-dark { background-color: var(--ynw-dark); color: #ffffff; padding: 80px 0; }
.ynw-section-dark h2, .ynw-section-dark h3, .ynw-section-dark p { color: #ffffff; }
.ynw-section-navy { background-color: var(--ynw-navy); color: #ffffff; 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;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
/* Grid Layout */
.ynw-cards-grid{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:30px !important;
    max-width:1400px !important;
    margin:0 auto !important;
}

/* ALL cards same size */
.ynw-cards-grid .ynw-card{
    width:100% !important;
	min-width:620px !important; /* Devansh 1*/
    min-height:620px !important;
    padding:35px !important;
    border-radius:12px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:space-between !important;
    box-sizing:border-box !important;
}

/* Buttons align bottom */
.ynw-cards-grid .ynw-card button{
    margin-top:auto !important;
}

/* ============================================================
   SERVICE / FEATURE CARDS
   ============================================================ */
.ynw-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.ynw-card { background: #ffffff; border: 1.5px solid var(--ynw-border); border-radius: 14px; padding: 32px 26px; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.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; }
/* ============================================================
   CARDS GRID — unified rule
   ============================================================ */
.ynw-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.ynw-card {
  background: #ffffff;
  border: 1.5px solid var(--ynw-border);
  /*width:620px;*/ 
  border-radius: 14px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.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; }


/* ============================================================
   PROCESS / 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: #ffffff; 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; }
.ynw-trust-badge.light { background: var(--ynw-light-bg); border-color: var(--ynw-border); color: var(--ynw-navy); }

/* ============================================================
   CTA BANNERS
   ============================================================ */
.ynw-cta-banner { background: linear-gradient(135deg, var(--ynw-navy) 0%, #0d2f5e 50%, var(--ynw-dark) 100%); color: #ffffff; 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: #ffffff; 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: #ffffff; 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 ACCORDION
   ============================================================ */
.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 ease; }
.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: #ffffff; user-select: none; }
.ynw-faq-question::after { content: '+'; font-size: 1.4rem; color: var(--ynw-blue); transition: transform 0.25s ease; 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: #ffffff; 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: #ffffff; 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; }

/* ============================================================
   AI PROMPT BOX
   ============================================================ */
.ynw-prompt-box { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 28px 24px; max-width: 640px; }
.ynw-prompt-box label { display: block; color: rgba(255,255,255,0.70); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.ynw-prompt-box textarea, .ynw-prompt-box input[type="text"] { width: 100%; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.20); border-radius: 8px; color: #ffffff; padding: 14px 16px; font-size: 0.95rem; resize: none; margin-bottom: 14px; outline: none; transition: border-color 0.2s ease; font-family: inherit; }
.ynw-prompt-box textarea:focus, .ynw-prompt-box input:focus { border-color: var(--ynw-blue); }
.ynw-prompt-box textarea::placeholder, .ynw-prompt-box input::placeholder { color: rgba(255,255,255,0.40); }

/* ============================================================
   SPLIT / TWO-COLUMN LAYOUT
   ============================================================ */
.ynw-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .ynw-split { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   CONTACT 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: #ffffff; transition: border-color 0.2s ease; 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: 1; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }*/

.ynw-animate { opacity: 1;}
.ynw-visible { opacity: 1 !important ; transform: translateY(0) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.ynw-site-footer { background-color: 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 .ynw-logo-text { font-size: 1.2rem; font-weight: 800; color: #ffffff; }
.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-social { display: flex; gap: 12px; }
.ynw-footer-social a { color: rgba(255,255,255,0.50); font-size: 0.85rem; transition: color 0.2s ease; text-decoration: none; }
.ynw-footer-social a:hover { color: var(--ynw-teal); }
.ynw-footer-col h5 { color: #ffffff; 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 ease; }
.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); }

/* ============================================================
   MEDIA QUERIES — RESPONSIVE (comprehensive mobile-first)
   ============================================================ */

/* --- TABLET (≤1024px) --- */
@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); }*/
	.ynw-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* --- MOBILE (≤768px) --- */
@media (max-width: 768px) {
  /* Prevent horizontal scroll from off-screen drawer */
  html, body { overflow-x: hidden; }
	.ynw-section .ynw-cards-grid {
    grid-template-columns: 1fr !important;
  }
	/*@media (min-width: 769px) and (max-width: 1024px) {
  .ynw-section .ynw-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}*/
/*@media (max-width: 768px) {
  .ynw-section .ynw-cards-grid {
    grid-template-columns: 1fr !important;
  }
}*/

  /* Header — slimmer on mobile */
  .ynw-header-inner { height: 64px; padding: 0 16px; }
  .ynw-logo img,
  .ynw-logo .custom-logo,
  .ynw-logo .custom-logo-link img { max-height: 44px; }

  /* Hero */
  .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-badge { font-size: 0.75rem; padding: 5px 12px; }

  /* Hero stats — 2 × 2 grid */
  .ynw-hero-stats { gap: 20px; display: grid; grid-template-columns: 1fr 1fr; }
  .ynw-stat-number { font-size: 1.6rem; }

  /* Sections */
  .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); }

  /* Grids — stack to single column */
  .ynw-plans-grid { grid-template-columns: 1fr; }
  /*.ynw-cards-grid { grid-template-columns: 1fr; }*/
	.ynw-cards-grid { grid-template-columns: 1fr !important; }
  .ynw-steps { grid-template-columns: 1fr; }
  .ynw-split { grid-template-columns: 1fr; gap: 32px; }
  .ynw-testimonials-grid { grid-template-columns: 1fr; }

  /* Plan cards — remove negative transform */
  .ynw-plan-card { transform: none !important; }

  /* Dual CTA */
  .ynw-dual-cta { grid-template-columns: 1fr; gap: 16px; }

/* Consultation page card grids — responsive override */

  /* Offer card */
  .ynw-offer-section { padding: 52px 0; }
  .ynw-offer-card { padding: 32px 22px; }
  .ynw-offer-price-now { font-size: 2.6rem; }
  /* Disable 3D tilt and orbs on mobile */
  .ynw-orb-container, .ynw-ring { display: none; }

  /* Prompt box */
  .ynw-prompt-box { padding: 20px 16px; }

  /* Trust bar */
  .ynw-trust-bar { flex-wrap: wrap; gap: 10px; }
  .ynw-trust-badge { font-size: 0.78rem; padding: 8px 14px; }

  /* Footer */
  .ynw-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* CTA banner */
  .ynw-cta-btns { flex-direction: column; align-items: center; }
  .ynw-cta-btns a { width: 100%; max-width: 320px; text-align: center; }

  /* Steps */
  .ynw-step { padding: 16px; }

  /* Exit popup */
  .ynw-exit-box { padding: 32px 22px; }
  .ynw-exit-box h3 { font-size: 1.2rem; }
}

/* --- SMALL MOBILE (≤480px) --- */
@media (max-width: 480px) {
  html, body { overflow-x: hidden; }

  .ynw-container { padding: 0 16px; }

  /* Header */
  .ynw-header-inner { height: 60px; padding: 0 14px; }

  /* Hero */
  .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; }

  /* Sections */
  .ynw-section, .ynw-section-light, .ynw-section-dark, .ynw-section-navy { padding: 40px 0; }
  .ynw-section-title h2 { font-size: 1.4rem; }

  /* Grids */
  /*.ynw-cards-grid { grid-template-columns: 1fr; }*/
  .ynw-cards-grid { grid-template-columns: 1fr !important; }
  .ynw-steps { grid-template-columns: 1fr; }
  .ynw-footer-grid { grid-template-columns: 1fr; }
  .ynw-footer-bottom { flex-direction: column; text-align: center; }

  /* Trust bar */
  .ynw-trust-bar { flex-direction: column; align-items: stretch; }
  .ynw-trust-badge { justify-content: center; }

  /* Plan card pricing — prevent overflow */
  .ynw-plan-price { font-size: 2.2rem; }
  [style*="display:flex"][style*="align-items:baseline"] { flex-wrap: wrap; gap: 6px; }

  /* FAQ */
  .ynw-faq-question { font-size: 0.9rem; padding: 14px 18px; }

  /* Offer card */
  .ynw-offer-card { padding: 28px 16px; }
  .ynw-offer-price-now { font-size: 2.2rem; }

  /* Floating buttons — compact pill on small screens */
  #ynw-sticky-cta { bottom: 12px; right: 12px; }
  #ynw-whatsapp-float { bottom: 72px; right: 12px; }
  .ynw-sticky-btn .label, .ynw-wa-button .wa-label { display: none; }
  .ynw-sticky-btn { padding: 14px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; font-size: 1.2rem; }
  .ynw-wa-button { padding: 14px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
  .ynw-wa-button .wa-icon { font-size: 1.2rem; }

  /* Exit popup */
  .ynw-exit-box { padding: 28px 18px; margin: 16px; }
  .ynw-exit-mockup { flex-direction: column; text-align: center; }

  /* Page loader */
  .ynw-loader-logo { max-height: 48px; }
}

/* ============================================================
   SETUP NOTICE (admin only — shown after activation)
   ============================================================ */
.ynw-setup-notice { background: #fff; border-left: 4px solid #0066FF; padding: 16px 20px; display: flex; align-items: center; gap: 16px; }
.ynw-setup-notice p { margin: 0; font-size: 14px; }
.ynw-setup-notice a { color: #0066FF; font-weight: 600; }

/* ============================================================
   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 ease, visibility 0.5s ease;
}
#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-INTENT 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; 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; }
.ynw-exit-secondary { display: block; color: #999; font-size: 0.82rem; cursor: pointer; margin-top: 8px; position: static !important; top: auto !important; left: auto !important; }
.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;
}
@media (max-width: 768px) {
  .ynw-nav {
    display: none;
  }

  .ynw-nav.open {
    display: block !important;
  }
}
.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 FLOATING 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 ease, visibility 0.4s ease, transform 0.4s ease;
}
#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; }
.ynw-sticky-btn-wa { background: #25D366; color: #fff !important; }
@media (max-width: 480px) {
  #ynw-sticky-cta { bottom: 16px; right: 16px; }
  .ynw-sticky-btn span.label { display: none; }
  .ynw-sticky-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
#ynw-whatsapp-float {
  position: fixed; bottom: 100px; right: 28px; z-index: 799;
  opacity: 0; visibility: hidden;
  transform: scale(0.7);
  transition: opacity 0.4s ease, visibility 0.4s ease, 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;
  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; }
.ynw-wa-tooltip {
  position: absolute; right: 100%; top: 50%; transform: translateY(-50%);
  background: #0A2342; color: #fff; font-size: 0.78rem;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  margin-right: 10px; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
#ynw-whatsapp-float:hover .ynw-wa-tooltip { opacity: 1; }
@media (max-width: 480px) {
  #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 — full slide-in from right
   ============================================================ */
#ynw-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,35,66,0.60);
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  z-index: 9000;   /* above everything */ 
 opacity: 0;
  transition: opacity 0.3s ease;
}
#ynw-nav-overlay.active {
  display: none;
  opacity: 1;
}

@media (max-width: 768px) {
  /* Hamburger icon */
  .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 ease, opacity 0.3s ease;
    transform-origin: center;
  }
  /* Animated X when open */
  .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); }

  /* Nav drawer — slides in from right, above overlay */
  .ynw-nav {
    display: flex !important;           /* always in DOM, visible by transform */
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important; right: 0 !important; bottom: 0 !important;
    width: min(300px, 82vw) !important;
    background: #ffffff !important;
    z-index: 9001 !important;           /* above overlay */
    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;  /* hidden off-screen to right */
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    gap: 0 !important;
  }
  .ynw-nav.open {
    transform: translateX(0) !important;   /* slide into view */
  }

  /* Nav links inside drawer */
  .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, .ynw-nav-links a:focus {
    color: var(--ynw-teal) !important;
    padding-left: 10px !important;
  }
  /* CTA button at bottom of drawer */
  .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;
  }
  .ynw-nav-cta:hover { background: var(--ynw-blue-hover) !important; }

  /* Real close button injected by JS — replaces the non-functional ::before X */
  .ynw-nav-close-btn {
    /*position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px;*/
	display:none !important;
    /*display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--ynw-text-light);
    cursor: pointer; border-radius: 50%;
    background: var(--ynw-light-bg);
    border: none; outline: none;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;*/
  }
  .ynw-nav-close-btn:hover,
  .ynw-nav-close-btn:focus {
    background: #e0e6f0;
    color: var(--ynw-navy);
  }
}

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

/* ============================================================
   SALE / DISCOUNT PRICING
   ============================================================ */
.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;
}
.ynw-plan-card.featured .ynw-plan-price { color: var(--ynw-blue); }

/* ============================================================
   URGENCY / SCARCITY 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 PATHS SECTION
   ============================================================ */
.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; }
.ynw-cta-path-btn.teal { background: #00C896; color: #fff; }
@media (max-width: 640px) { .ynw-dual-cta { grid-template-columns: 1fr; } }

/* ============================================================
   OFFER CARD (particle + 3D tilt)
   ============================================================ */
.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 ease, box-shadow 0.5s ease;
  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; 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; }
.ynw-offer-trust { color: rgba(255,255,255,0.45); font-size: 0.78rem; margin-top: 14px; }

/* Orbital rings */
.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-delay: 0s; 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 BURST
   ============================================================ */
.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; }

/* ============================================================
   TOUCH TARGET MINIMUMS (mobile a11y)
   ============================================================ */
@media (max-width: 768px) {
  a, button, input[type="submit"], input[type="button"], .ynw-btn-primary, .ynw-btn-secondary {
    min-height: 44px;
  }
  .ynw-plan-card a, .ynw-card a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ============================================================
   GOOGLE FONTS SPEED — font-display swap override
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

/* ============================================================
   CONVERSION FEATURES v2.2 — Website Simulator, AI Score,
   ROI Calculator, Marquee Testimonials, Countdown, Confetti,
   Particle Canvas, GSAP Reveals, Portfolio Carousel
   ============================================================ */

:root {
  --ynw-orange:       #f28c28;
  --ynw-orange-glow:  rgba(242,140,40,0.28);
  --ynw-orange-soft:  rgba(242,140,40,0.10);
  --ynw-glass:        rgba(10,35,66,0.45);
  --ynw-glass-border: rgba(255,255,255,0.09);
}

/* ============================================================
   HERO CANVAS + GRID LAYOUT
   ============================================================ */
#ynw-hero-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.5;
}
.ynw-hero-bg-glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,140,40,0.09) 0%, transparent 65%);
  top: -15%; left: -8%;
  transition: transform 0.08s ease-out;
}
.ynw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ynw-hero-left {}

.ynw-hero-live-counter {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.22);
  color: #4ade80; font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 20px;
}
.ynw-live-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #4ade80; border-radius: 50%;
  animation: ynw-pulse-dot 1.5s infinite;
  flex-shrink: 0;
}
.ynw-hero-left h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff; font-weight: 900; line-height: 1.1; margin-bottom: 0;
}
.ynw-hero-typewriter { color: var(--ynw-orange); }
.ynw-tw-cursor {
  display: inline-block; width: 3px; height: 1em;
  background: var(--ynw-orange); margin-left: 4px;
  animation: ynw-blink 0.8s infinite; vertical-align: text-bottom;
}
@keyframes ynw-blink { 0%,100%{opacity:1;} 50%{opacity:0;} }
.ynw-hero-cta-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 28px 0 16px;
}
.ynw-hero-cta-row .ynw-btn-primary {
  background: var(--ynw-orange) !important;
  border-color: var(--ynw-orange) !important;
  box-shadow: 0 8px 28px var(--ynw-orange-glow);
}
.ynw-hero-cta-row .ynw-btn-primary:hover {
  background: #d97820 !important;
  border-color: #d97820 !important;
  box-shadow: 0 12px 36px rgba(242,140,40,0.45);
}
.ynw-hero-trust-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
}
.ynw-hero-trust-row span { display: flex; align-items: center; gap: 5px; }
.ynw-hero-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px; padding-top: 36px;
}
.ynw-hero-stats-row .ynw-stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ynw-hero-stats-row .ynw-stat-item:last-child { border-right: none; }
.ynw-hero-stats-row .ynw-stat-number {
  font-size: 1.9rem; font-weight: 900; color: #fff; margin-bottom: 4px;
}
.ynw-hero-stats-row .ynw-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 500;
}
.ynw-scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.ynw-scroll-indicator span { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.ynw-scroll-indicator svg { animation: ynw-bounce-down 2s infinite; }
@keyframes ynw-bounce-down { 0%,100%{transform:translateY(0);} 50%{transform:translateY(8px);} }

/* ============================================================
   WEBSITE SIMULATOR
   ============================================================ */
.ynw-simulator { perspective: 1000px; }
.ynw-sim-frame {
  background: var(--ynw-glass); border: 1px solid var(--ynw-glass-border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  transition: transform 0.12s ease-out;
  will-change: transform;
}
.ynw-sim-chrome {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--ynw-glass-border);
}
.ynw-sim-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ynw-sim-dot-r { background: #ff5f57; }
.ynw-sim-dot-y { background: #ffbd2e; }
.ynw-sim-dot-g { background: #28c840; }
.ynw-sim-url {
  flex: 1; margin-left: 10px; background: rgba(255,255,255,0.06);
  border-radius: 5px; padding: 5px 12px; font-size: 0.74rem;
  color: rgba(255,255,255,0.5);
}
.ynw-sim-body { padding: 22px; position: relative; }
.ynw-sim-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--ynw-orange); color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; letter-spacing: 0.5px;
}
.ynw-sim-select-wrap { margin-bottom: 18px; }
.ynw-sim-select-wrap label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.55); margin-bottom: 8px;
}
.ynw-sim-select {
  width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.06);
  border: 1px solid var(--ynw-glass-border); border-radius: 8px;
  color: #fff; font-size: 0.88rem; font-family: inherit;
  appearance: none; cursor: pointer; outline: none;
  transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b93a8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.ynw-sim-select option { background: #0d1220; color: #fff; }
.ynw-sim-select:focus { border-color: var(--ynw-orange); }
.ynw-sim-preview {
  background: rgba(255,255,255,0.03); border-radius: 10px; overflow: hidden;
  transition: opacity 0.35s, transform 0.35s;
}
.ynw-sim-preview-header {
  padding: 18px 20px; text-align: center;
  transition: background 0.5s;
}
.ynw-sim-preview-header h3 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; color: #fff; }
.ynw-sim-preview-header p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; }
.ynw-sim-features {
  padding: 14px 18px; display: flex; gap: 6px; flex-wrap: wrap;
}
.ynw-sim-feat {
  padding: 5px 10px; border-radius: 50px; font-size: 0.68rem; font-weight: 600;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65);
}
.ynw-sim-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-top: 1px solid var(--ynw-glass-border);
}
.ynw-sim-price { font-weight: 900; font-size: 1.5rem; color: var(--ynw-orange); }
.ynw-sim-old { text-decoration: line-through; color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 400; margin-right: 5px; }
.ynw-sim-per { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.ynw-sim-cta {
  background: var(--ynw-orange); color: #fff; border: none;
  padding: 9px 16px; border-radius: 50px; font-weight: 700;
  font-size: 0.78rem; cursor: pointer; font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
  display: inline-block; white-space: nowrap;
}
.ynw-sim-cta:hover { transform: scale(1.05); box-shadow: 0 4px 20px var(--ynw-orange-glow); color: #fff; }
.ynw-urgency-badge-inline {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ynw-orange-soft); border: 1px solid rgba(242,140,40,0.22);
  color: var(--ynw-orange); font-size: 0.78rem; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
}

/* ============================================================
   AI SCORE WIDGET
   ============================================================ */

.ynw-score-section {
  padding: 35px 0; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--ynw-dark) 0%, var(--ynw-navy) 100%);
}
.ynw-score-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,140,40,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: ynw-pulse-glow 4s ease-in-out infinite;
}
@keyframes ynw-pulse-glow {
  0%,100%{ transform:translate(-50%,-50%) scale(1); opacity:0.5; }
  50%{ transform:translate(-50%,-50%) scale(1.18); opacity:1; }
}
.ynw-score-inner {
  position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto;
}
.ynw-score-inner .ynw-eyebrow { color: var(--ynw-orange); }
.ynw-score-inner h2 { color: #fff; }
.ynw-score-inner p { color: rgba(255,255,255,0.65); }
.ynw-score-input-row {
  display: flex; gap: 12px; max-width: 480px; margin: 18px auto 0;
}
.ynw-score-input {
  flex: 1; padding: 15px 20px; background: rgba(255,255,255,0.07);
  border: 1px solid var(--ynw-glass-border); border-radius: 50px;
  color: #fff; font-size: 0.92rem; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.ynw-score-input::placeholder { color: rgba(255,255,255,0.4); }
.ynw-score-input:focus { border-color: var(--ynw-orange); }
.ynw-score-btn {
  padding: 15px 26px; background: var(--ynw-orange); color: #fff;
  border: none; border-radius: 50px; font-weight: 700; cursor: pointer;
  font-size: 0.88rem; font-family: inherit; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ynw-score-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--ynw-orange-glow); }
.ynw-score-results { display: none; margin-top: 28px; }
.ynw-score-meter-wrap { margin-bottom: 36px; }
.ynw-score-meter-label { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.ynw-score-meter {
  width: 100%; max-width: 400px; height: 10px;
  background: rgba(255,255,255,0.07); border-radius: 5px;
  margin: 0 auto; overflow: hidden; position: relative;
}
.ynw-score-meter-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #ff4444, var(--ynw-orange), #4ade80);
  border-radius: 5px; transition: width 1.6s cubic-bezier(.4,0,.2,1);
}
.ynw-score-value {
  font-weight: 900; font-size: 2.8rem; color: var(--ynw-orange);
  margin-top: 14px; font-family: 'Inter', sans-serif;
}
.ynw-score-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px;
}
.ynw-score-card {
  padding: 22px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--ynw-glass-border);
}
.ynw-score-card .sc-num {
  font-weight: 900; font-size: 1.75rem; color: var(--ynw-orange);
}
.ynw-score-card .sc-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.ynw-score-cta { margin-top: 32px; }
.ynw-score-cta .ynw-btn-primary {
  background: var(--ynw-orange) !important;
  border-color: var(--ynw-orange) !important;
}
.ynw-score-no-card {
  font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 10px;
}

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.ynw-roi-section { padding: 100px 0; background: var(--ynw-light-bg); }
.ynw-roi-section .ynw-section-title h2 span { color: var(--ynw-orange); }
.ynw-roi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  margin-top: 48px;
}
.ynw-roi-slider-group { margin-bottom: 32px; }
.ynw-roi-slider-group label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; font-weight: 600; margin-bottom: 12px;
  color: var(--ynw-navy);
}
.ynw-roi-slider-group label span {
  color: var(--ynw-orange); font-weight: 800; font-size: 1rem;
}
.ynw-roi-range {
  width: 100%; -webkit-appearance: none; appearance: none; height: 8px;
  background: rgba(10,35,66,0.12); border-radius: 4px; outline: none;
}
.ynw-roi-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px;
  background: var(--ynw-orange); border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 12px var(--ynw-orange-glow);
}
.ynw-roi-range::-moz-range-thumb {
  width: 24px; height: 24px; background: var(--ynw-orange);
  border-radius: 50%; cursor: pointer; border: none;
}
.ynw-roi-note {
  font-size: 0.84rem; color: var(--ynw-text-light); line-height: 1.6;
  margin-top: 20px;
}
.ynw-roi-result {
  padding: 44px; border-radius: 20px; background: var(--ynw-navy);
  text-align: center; color: #fff;
  box-shadow: 0 20px 60px rgba(10,35,66,0.22);
}
.ynw-roi-big {
  font-weight: 900; font-size: 3.2rem; color: #4ade80; line-height: 1;
  transition: transform 0.3s;
}
.ynw-roi-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 6px; }
.ynw-roi-vs { margin: 20px 0; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.ynw-roi-ratio {
  font-weight: 900; font-size: 1.8rem; color: var(--ynw-orange);
  transition: text-shadow 0.3s, transform 0.3s;
}
.ynw-roi-ratio.glow {
  text-shadow: 0 0 30px var(--ynw-orange-glow);
  animation: ynw-roi-pulse 1.8s ease-in-out infinite;
}
@keyframes ynw-roi-pulse {
  0%,100%{ transform:scale(1); } 50%{ transform:scale(1.06); }
}
.ynw-roi-cta { margin-top: 24px; }
.ynw-roi-cta .ynw-btn-primary {
  background: var(--ynw-orange) !important;
  border-color: var(--ynw-orange) !important;
}
.ynw-roi-cta .ynw-btn-primary.pulsing {
  animation: ynw-cta-pulse 2s ease-in-out infinite;
}
@keyframes ynw-cta-pulse {
  0%,100%{ box-shadow: 0 6px 20px var(--ynw-orange-glow); }
  50%{ box-shadow: 0 6px 40px rgba(242,140,40,0.55); }
}
.ynw-roi-no-card { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 10px; }

/* ============================================================
   TESTIMONIAL MARQUEE
   ============================================================ */
.ynw-marquee-section { padding: 100px 0; overflow: hidden; }
.ynw-marquee-row {
  display: flex; gap: 20px; margin-bottom: 20px;
  overflow: hidden;
}
.ynw-marquee-track {
  display: flex; gap: 20px; flex-shrink: 0;
}
.ynw-marquee-row:nth-child(1) .ynw-marquee-track { animation: ynw-marquee-l 40s linear infinite; }
.ynw-marquee-row:nth-child(2) .ynw-marquee-track { animation: ynw-marquee-r 40s linear infinite; }
.ynw-marquee-row:hover .ynw-marquee-track { animation-play-state: paused; }
@keyframes ynw-marquee-l { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
@keyframes ynw-marquee-r { 0%{transform:translateX(-50%);} 100%{transform:translateX(0);} }
.ynw-mtest-card {
  flex: 0 0 340px; padding: 24px; border-radius: 16px;
  background: #fff; border: 1.5px solid var(--ynw-border);
  box-shadow: 0 4px 20px rgba(10,35,66,0.07);
  transition: transform 0.25s;
}
.ynw-mtest-card:hover { transform: translateY(-5px); }
.ynw-mtest-stars { color: #ffbd2e; font-size: 0.9rem; margin-bottom: 12px; }
.ynw-mtest-text {
  font-size: 0.88rem; line-height: 1.65; color: var(--ynw-text);
  margin-bottom: 16px; font-style: italic;
}
.ynw-mtest-author { display: flex; align-items: center; gap: 12px; }
.ynw-mtest-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ynw-blue), var(--ynw-teal));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem; color: #fff;
}
.ynw-mtest-name { font-size: 0.84rem; font-weight: 700; color: var(--ynw-navy); }
.ynw-mtest-suburb { font-size: 0.74rem; color: var(--ynw-text-light); }

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.ynw-countdown-wrap {
  text-align: center; margin-top: 40px;
}
.ynw-countdown {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 20px 36px; border-radius: 14px;
  background: rgba(242,140,40,0.08); border: 1px solid rgba(242,140,40,0.18);
}
.ynw-countdown-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.ynw-countdown-time {
  font-weight: 900; font-size: 1.9rem; color: var(--ynw-orange);
  font-family: 'Inter', 'Courier New', monospace; letter-spacing: 2px;
}

/* ============================================================
   PORTFOLIO CAROUSEL
   ============================================================ */
.ynw-portfolio-section { padding: 100px 0; overflow: hidden; }
.ynw-portfolio-track {
  display: flex; gap: 28px; padding: 0 24px;
  animation: ynw-scroll-left 35s linear infinite;
}
.ynw-portfolio-track:hover { animation-play-state: paused; }
@keyframes ynw-scroll-left {
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}
.ynw-portfolio-item {
  flex: 0 0 360px; border-radius: 16px; overflow: hidden;
  background: var(--ynw-glass); border: 1px solid var(--ynw-glass-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; position: relative;
}
.ynw-portfolio-item:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(242,140,40,0.14);
}
.ynw-port-chrome {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: rgba(255,255,255,0.04);
}
.ynw-port-dot { width: 8px; height: 8px; border-radius: 50%; }
.ynw-port-dot-r { background: #ff5f57; }
.ynw-port-dot-y { background: #ffbd2e; }
.ynw-port-dot-g { background: #28c840; }
.ynw-port-body {
  height: 210px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: rgba(255,255,255,0.65); flex-direction: column; gap: 8px;
}
.ynw-port-body .ynw-port-icon { font-size: 2.4rem; }
.ynw-port-preview-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--ynw-orange); color: #fff; font-size: 0.8rem;
  font-weight: 700; padding: 8px 18px; border-radius: 50px;
  transition: transform 0.3s; white-space: nowrap;
}
.ynw-portfolio-item:hover .ynw-port-preview-badge {
  transform: translate(-50%, -50%) scale(1);
}
.ynw-port-info { padding: 14px 16px; }
.ynw-port-info h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ynw-port-info p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ============================================================
   CONFETTI
   ============================================================ */
.ynw-confetti-container {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 99999;
}
.ynw-confetti-piece {
  position: absolute; top: -12px;
  animation: ynw-confetti-fall 3s ease-in forwards;
}
@keyframes ynw-confetti-fall {
  0%{ transform:translateY(0) rotate(0deg); opacity:1; }
  100%{ transform:translateY(100vh) rotate(720deg); opacity:0; }
}

/* ============================================================
   GSAP REVEAL HELPERS
   ============================================================ */
.ynw-gsap-reveal {
  opacity: 0; transform: translateY(36px);
}
.ynw-gsap-reveal.revealed {
  opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease;
}

/*Added by Devansh (To make it visible) */
.ynw-gsap-reveal-visible {
	transform: translateY(36px);
}

/* ============================================================
   RESPONSIVE OVERRIDES FOR NEW FEATURES
   ============================================================ */
@media (max-width: 1024px) {
  .ynw-hero-grid { grid-template-columns: 1fr; }
  .ynw-simulator { margin-top: 32px; }
  .ynw-roi-grid { grid-template-columns: 1fr; }
  .ynw-hero-stats-row { grid-template-columns: repeat(2,1fr); }
  .ynw-score-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ynw-score-input-row { flex-direction: column; }
  .ynw-hero-stats-row { grid-template-columns: repeat(2,1fr); gap: 0; }
  .ynw-mtest-card { flex: 0 0 290px; }
  .ynw-portfolio-item { flex: 0 0 290px; }
  .ynw-hero-cta-row { flex-direction: column; align-items: flex-start; }
  .ynw-roi-result { padding: 28px; }
  .ynw-roi-big { font-size: 2.4rem; }
  .ynw-countdown-time { font-size: 1.4rem; }
}
