/* =============================================
   PostingLeverage.com — Main Stylesheet
   Brand: Navy + Gold + Orange
   Fonts: Barlow Condensed (display) + DM Sans (body)
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
    --ink:       #081530;
    --navy:      #0E2044;
    --card:      #122554;
    --card-2:    #1A3068;
    --gold:      #F5B800;
    --gold-lt:   #FFCF33;
    --orange:    #F97316;
    --orange-lt: #FB923C;
    --blue:      #2D8FD5;
    --sky:       #38BDF8;
    --green:     #22C55E;
    --red:       #EF4444;
    --cream:     #F8FAFC;
    --light:     #E2E8F0;
    --muted:     #94A3B8;
    --border:    rgba(255,255,255,0.07);
    --border-lt: rgba(255,255,255,0.14);
    --shadow:    0 16px 48px rgba(0,0,0,0.55);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.35);
    --glow-gold: 0 0 50px rgba(245,184,0,0.20);
    --glow-org:  0 0 40px rgba(249,115,22,0.22);
    --radius:    14px;
    --radius-sm: 8px;
    --maxw:      1100px;
    --success:   #22C55E;
    --danger:    #EF4444;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--cream);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-lt); }

/* ---- Typography ---- */
h1, h2, h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

.display-xl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.text-gold    { color: var(--gold); }
.text-orange  { color: var(--orange); }
.text-sky     { color: var(--sky); }
.text-blue    { color: var(--blue); }
.text-muted   { color: var(--muted); }
.text-green   { color: var(--green); }
.text-red     { color: var(--red); }
.text-center  { text-align: center; }

/* ---- Layout ---- */
.container      { max-width: var(--maxw); margin: 0 auto; padding: 5rem 2rem; }
.container-sm   { max-width: 780px; margin: 0 auto; padding: 4rem 2rem; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 5rem 2rem; }

section + section { border-top: 1px solid var(--border); }

/* ---- BETA TOP BANNER ---- */
.beta-ribbon {
    background: linear-gradient(90deg, var(--orange) 0%, #c2410c 100%);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
}
.beta-ribbon a { color: #fff; text-decoration: underline; }
.beta-ribbon strong { font-weight: 800; }

/* ---- NAV ---- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(8,21,48,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}
.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo img { height: 50px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
}
.nav-links a {
    color: var(--light);
    font-size: 0.93rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(245,184,0,0.08); }

.nav-cta-link {
    background: var(--gold) !important;
    color: var(--ink) !important;
    font-weight: 700 !important;
    border-radius: var(--radius-sm) !important;
    padding: 0.5rem 1.2rem !important;
}
.nav-cta-link:hover { background: var(--gold-lt) !important; color: var(--ink) !important; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 0.9rem 1.85rem;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.01em;
}
.btn-gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 4px 24px rgba(245,184,0,0.38);
}
.btn-gold:hover {
    background: var(--gold-lt);
    color: var(--ink);
    box-shadow: 0 4px 32px rgba(245,184,0,0.55);
    transform: translateY(-1px);
}
.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(249,115,22,0.38);
}
.btn-orange:hover {
    background: var(--orange-lt);
    color: #fff;
    box-shadow: 0 4px 28px rgba(249,115,22,0.50);
    transform: translateY(-1px);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: rgba(245,184,0,0.09); color: var(--gold); }
.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--cream);
    border: 1px solid var(--border-lt);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); color: var(--cream); }
.btn-lg  { padding: 1.1rem 2.25rem; font-size: 1.1rem; }
.btn-sm  { padding: 0.6rem 1.2rem;  font-size: 0.88rem; }

/* ---- CARDS ---- */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--border-lt); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.card-gold  { border-color: rgba(245,184,0,0.30); }
.card-gold:hover  { border-color: rgba(245,184,0,0.60); box-shadow: var(--glow-gold); }
.card-orange { border-color: rgba(249,115,22,0.28); }
.card-orange:hover { border-color: rgba(249,115,22,0.55); box-shadow: var(--glow-org); }

/* ---- GRIDS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ---- SECTION LABELS ---- */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.65rem;
}
.section-intro {
    color: var(--muted);
    max-width: 620px;
    margin: 0.9rem 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---- CHECK / X LISTS ---- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 0.97rem;
}
.check-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.22rem;
    background: rgba(34,197,94,0.14);
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.cross-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.cross-list li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 0.97rem; color: var(--muted);
}
.cross-list li::before {
    content: '✕';
    color: var(--red);
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.22rem;
    background: rgba(239,68,68,0.12);
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #081530 0%, #0E2044 55%, #081530 100%);
    padding: 4.5rem 2rem 4rem;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(ellipse, rgba(245,184,0,0.09) 0%, transparent 65%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245,184,0,0.10);
    border: 1px solid rgba(245,184,0,0.30);
    color: var(--gold);
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.hero-badge .dot {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}
.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: var(--muted);
    max-width: 650px;
    margin: 1.25rem auto 2.5rem;
    line-height: 1.72;
}
.hero-banner-img {
    max-width: 920px;
    margin: 2.5rem auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow), var(--glow-gold);
    border: 1px solid rgba(245,184,0,0.20);
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--navy);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
}
.stats-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; font-weight: 500; }

/* ---- PLATFORM ICONS ---- */
.platform-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.platform-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border-lt);
    border-radius: 100px;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light);
}
.platform-chip .icon { font-size: 1.25rem; }

/* ---- ABSORBING QUESTIONS ---- */
.question-block {
    background: linear-gradient(135deg, var(--card) 0%, var(--card-2) 100%);
    border: 1px solid rgba(245,184,0,0.18);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--cream);
    font-style: italic;
}

/* ---- MATH COMPARISON ---- */
.math-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}
.math-card-bad  { background: rgba(239,68,68,0.08);  border: 1px solid rgba(239,68,68,0.25);  border-radius: var(--radius); padding: 2rem; text-align: center; }
.math-card-good { background: rgba(34,197,94,0.08);  border: 1px solid rgba(34,197,94,0.30);  border-radius: var(--radius); padding: 2rem; text-align: center; }
.math-grade {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}
.math-grade.bad  { color: var(--red); }
.math-grade.good { color: var(--green); }
.vs-circle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--muted);
    background: var(--card);
    border: 1px solid var(--border-lt);
    border-radius: 50%;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
}

/* ---- STEPS / HOW IT WORKS ---- */
.step-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(245,184,0,0.15);
    line-height: 1;
    margin-bottom: -0.5rem;
}
.step-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

/* ---- PRICING CARDS ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.price-card.featured {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}
.price-card.coming-soon {
    border-color: var(--border);
    opacity: 0.80;
}
.price-badge {
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 0 0 8px 8px;
    white-space: nowrap;
}
.price-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 1rem;
}
.price-founding-tag {
    display: inline-block;
    background: rgba(245,184,0,0.12);
    border: 1px solid rgba(245,184,0,0.30);
    color: var(--gold);
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.4rem;
}
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: 1rem 0 0.25rem;
}
.price-dollar { font-size: 1.4rem; font-weight: 700; color: var(--muted); }
.price-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
}
.price-period { font-size: 0.9rem; color: var(--muted); }
.price-was {
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 1rem;
}
.price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}
.price-cta { display: block; width: 100%; margin-top: 1.75rem; text-align: center; }

/* ---- COMPARISON TABLE ---- */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}
.compare-table th {
    padding: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: var(--card-2);
    border: 1px solid var(--border);
}
.compare-table th.pl-col {
    background: linear-gradient(135deg, var(--navy), var(--card-2));
    border-color: var(--gold);
    color: var(--gold);
}
.compare-table td {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    vertical-align: middle;
    background: var(--card);
}
.compare-table td.pl-col {
    background: rgba(245,184,0,0.05);
    border-color: rgba(245,184,0,0.20);
}
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table tr:nth-child(even) td.pl-col { background: rgba(245,184,0,0.06); }
.compare-table td:first-child { color: var(--light); font-weight: 500; }
.chk  { color: var(--green); font-size: 1.2rem; font-weight: 900; }
.xmark { color: var(--red);   font-size: 1.1rem; font-weight: 900; }
.partial { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* ---- AVERY PANEL ---- */
.avery-panel {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--card);
    border: 1px solid rgba(245,184,0,0.20);
    border-radius: var(--radius);
    padding: 2rem;
    overflow: hidden;
}
.avery-img { border-radius: var(--radius); overflow: hidden; }
.avery-img img { width: 100%; height: 240px; object-fit: cover; object-position: top; }
.avery-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
}
.avery-tag {
    display: inline-block;
    background: rgba(56,189,248,0.12);
    border: 1px solid rgba(56,189,248,0.30);
    color: var(--sky);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.speech-bubble {
    background: var(--card-2);
    border: 1px solid var(--border-lt);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    position: relative;
    font-style: italic;
    color: var(--light);
    line-height: 1.65;
    margin-top: 1rem;
}

/* ---- SPOTS COUNTER ---- */
.spots-bar {
    background: var(--navy);
    border: 1px solid rgba(249,115,22,0.30);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    text-align: center;
}
.spots-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.progress-track {
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    height: 10px;
    margin: 0.75rem auto;
    max-width: 320px;
    overflow: hidden;
}
.progress-fill {
    background: linear-gradient(90deg, var(--orange), var(--gold));
    height: 100%;
    border-radius: 100px;
    width: 30%;
    animation: fillbar 1.5s ease-out forwards;
}
@keyframes fillbar {
    from { width: 0; }
    to   { width: 30%; }
}

/* ---- FORM ---- */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.9rem; font-weight: 600; color: var(--light); }
.form-input {
    background: var(--card-2);
    border: 1px solid var(--border-lt);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    color: var(--cream);
    width: 100%;
    transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); }
.form-select {
    background: var(--card-2);
    border: 1px solid var(--border-lt);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    color: var(--cream);
    width: 100%;
    cursor: pointer;
}
.form-select:focus { outline: none; border-color: var(--gold); }
.form-check { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--muted); cursor: pointer; }
.form-check input { margin-top: 0.25rem; accent-color: var(--gold); }
#formMsg { margin-top: 1rem; font-weight: 600; font-size: 0.95rem; }

/* ---- ADVANCED TEASER ---- */
.advanced-teaser {
    position: relative;
    background: linear-gradient(135deg, var(--card) 0%, var(--card-2) 100%);
    border: 1px solid rgba(249,115,22,0.35);
    border-radius: var(--radius);
    padding: 2.5rem;
    overflow: hidden;
    text-align: center;
}
.advanced-teaser::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.20) 0%, transparent 70%);
    pointer-events: none;
}
.lock-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ---- FOOTER ---- */
.site-footer {
    background: #050E1F;
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1.5rem;
}
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-brand-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cream);
}
.footer-brand-text span { color: var(--gold); }
.footer-tagline { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; line-height: 1.6; }
.footer-heading { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: var(--light); font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: var(--muted);
}

/* ---- OPENING SOON SIGN (used on contact page) ---- */
.soon-sign {
    max-width: 520px;
    margin: 0 auto 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ---- UTILITY ---- */
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.75rem; }
.mb-2  { margin-bottom: 1.5rem; }
.mb-3  { margin-bottom: 2.5rem; }
.mt-1  { margin-top: 0.75rem; }
.mt-2  { margin-top: 1.5rem; }
.mt-3  { margin-top: 2.5rem; }
.gap-1 { gap: 0.75rem; }
.gap-2 { gap: 1.5rem; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.inline-flex { display: inline-flex; align-items: center; gap: 0.5rem; }

.highlight-box {
    background: rgba(245,184,0,0.07);
    border: 1px solid rgba(245,184,0,0.22);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
}
.orange-box {
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.25);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
    .container, .container-wide { padding: 3rem 1.25rem; }
    .container-sm { padding: 2.5rem 1.25rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .math-row { grid-template-columns: 1fr; }
    .vs-circle { margin: 0 auto; }
    .avery-panel { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .compare-table { display: block; overflow-x: auto; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(8,21,48,0.98);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        z-index: 199;
    }
}
