/* ============================================
   OGA SAAS - Shared Marketing Styles
   Used by: landing, pricing, features, compare,
   features-crm, features-email, features-finance,
   features-scheduling
   ============================================ */

/* --- Design Tokens --- */
:root {
    --primary-color: #ff8c00;
    --primary-dark: #cc7000;
    --primary-light: #ffb366;
    --accent-color: #4db5c3;
    --background-dark: #1e1e1e;
    --surface-color: #2d2d2d;
    --surface-light: #3d3d3d;
    --text-light: #f5f5f5;
    --text-dim: #a0a0a0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FFC107;
    --border-subtle: rgba(255, 140, 0, 0.1);
    --border-medium: rgba(255, 140, 0, 0.2);
    --glow-primary: rgba(255, 140, 0, 0.3);
    --max-width: 1200px;
    --nav-height: 64px;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
.mkt-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
    border-bottom: 1px solid var(--border-medium);
    height: var(--nav-height);
}

.mkt-nav .nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.mkt-nav .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.mkt-nav .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
}

.mkt-nav .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.mkt-nav .nav-link:hover,
.mkt-nav .nav-link.active {
    color: var(--primary-color);
    text-decoration: none;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: 2px;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface-color);
    border: 1px solid var(--border-medium);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-color);
    text-decoration: none;
}

.nav-dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn:hover { text-decoration: none; }

.btn-primary {
    background: var(--primary-color);
    color: var(--background-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--glow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
}

.btn-lg {
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero h1 .highlight { color: var(--primary-color); }

.hero .subtitle {
    font-size: 1.35rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Section Styles --- */
.section {
    padding: 5rem 2rem;
}

.section--alt {
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-dim);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: var(--text-dim);
    text-decoration: none;
}

.breadcrumbs a:hover { color: var(--primary-color); }
.breadcrumbs .sep { margin: 0 0.5rem; }

/* --- Feature Cards Grid --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--glow-primary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.card p {
    color: var(--text-dim);
    line-height: 1.7;
}

/* Checkmark list */
.check-list {
    list-style: none;
    margin-top: 1rem;
}

.check-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dim);
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* --- Pricing Cards --- */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.3s;
}

.pricing-toggle span.active { color: var(--text-light); font-weight: 600; }

.toggle-switch {
    width: 56px;
    height: 28px;
    background: var(--surface-light);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--text-light);
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.annual { background: var(--primary-color); }
.toggle-switch.annual::after { transform: translateX(28px); }

.annual-badge {
    background: var(--success-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-subtle);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px var(--glow-primary);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--background-dark);
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-subtitle {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.pricing-annual-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li i {
    color: var(--success-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-features li i.fa-times {
    color: var(--text-dim);
    opacity: 0.4;
}

.pricing-card .btn { margin-top: auto; }

/* "Or build your own" section */
.build-your-own {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    border: 1px dashed var(--border-medium);
    border-radius: 0.75rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.build-your-own p {
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

/* --- Comparison Table --- */
.comparison-table {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--surface-color);
    border-radius: 1rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th {
    background: rgba(255, 140, 0, 0.1);
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.comparison-table th.highlight-col {
    background: rgba(255, 140, 0, 0.2);
    color: var(--primary-color);
}

.comparison-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.comparison-table tr:hover {
    background: rgba(255, 140, 0, 0.04);
}

.comparison-table .row-total {
    background: rgba(255, 140, 0, 0.08);
    font-weight: 700;
}

.check-icon { color: var(--success-color); }
.dash-icon { color: var(--text-dim); opacity: 0.4; }
.dollar-icon { color: var(--warning-color); }

/* --- FAQ Accordion --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1.25rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover { color: var(--primary-color); }

.faq-question i {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
    padding-bottom: 1.25rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--background-dark);
}

.cta-banner p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(30, 30, 30, 0.75);
}

.cta-banner .btn {
    background: var(--background-dark);
    color: var(--primary-color);
    border: 2px solid var(--background-dark);
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
}

.cta-banner .btn:hover {
    background: transparent;
    color: var(--background-dark);
    border-color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.cta-banner .cta-sub {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(30, 30, 30, 0.55);
}

/* --- Time/Cost Savings Boxes --- */
.savings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.savings-box {
    background: var(--surface-color);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
}

.savings-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.savings-box .savings-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.savings-row {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.savings-row .old {
    color: var(--text-dim);
    text-decoration: line-through;
}

.savings-row .new { color: var(--success-color); font-weight: 600; }

.savings-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* --- How It Works --- */
.steps-flow {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--background-dark);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Connector arrow between steps */
.step-item:not(:last-child)::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -1.25rem;
    top: 18px;
    color: var(--primary-color);
    opacity: 0.5;
    font-size: 1.25rem;
}

/* --- Problem/Solution Split --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: start;
}

.split-panel {
    padding: 2rem;
    border-radius: 1rem;
}

.split-panel--problem {
    background: rgba(244, 67, 54, 0.08);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.split-panel--solution {
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.split-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.split-panel--problem h3 { color: var(--error-color); }
.split-panel--solution h3 { color: var(--success-color); }

.split-panel ul { list-style: none; }

.split-panel ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dim);
}

.split-panel--problem ul li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-size: 0.8rem;
}

.split-panel--solution ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.8rem;
}

/* --- Stats Bar --- */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2.5rem 0;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* --- Alternating Feature Sections --- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
    padding: 3rem 0;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-row-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.feature-row-text p {
    color: var(--text-dim);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.feature-row-visual {
    background: var(--surface-color);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.feature-row-visual i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.6;
}

/* --- Tool Replacement Calculator --- */
.tool-calc {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface-color);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
}

.tool-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tool-row .tool-name { color: var(--text-dim); }
.tool-row .tool-price { font-weight: 600; }

.tool-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--border-medium);
    font-weight: 700;
    font-size: 1.1rem;
}

.tool-savings {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.tool-savings .big {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-color);
}

/* --- Testimonial Cards --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--surface-color);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-card .author { font-weight: 600; }
.testimonial-card .role { font-size: 0.85rem; color: var(--text-dim); }

/* --- Footer --- */
.mkt-footer {
    background: var(--background-dark);
    padding: 3.5rem 2rem 1.5rem;
    border-top: 1px solid var(--border-medium);
}

.mkt-footer .footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.mkt-footer h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.mkt-footer .footer-about p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li { margin-bottom: 0.6rem; }

.footer-link-list a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-link-list a:hover { color: var(--primary-color); }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom a { color: var(--primary-color); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .mkt-footer .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mkt-nav .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(30, 30, 30, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        overflow-y: auto;
    }

    .mkt-nav .nav-links.open { display: flex; }

    .mkt-nav .nav-links .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
    }

    .mkt-nav .nav-links .btn {
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 1rem;
    }

    .nav-dropdown .nav-link::after { display: none; }

    .hamburger { display: flex; }

    .hero h1 { font-size: 2.25rem; }
    .hero .subtitle { font-size: 1.1rem; }
    .hero-cta { flex-direction: column; align-items: center; }

    .section-header h2 { font-size: 2rem; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .card-grid { grid-template-columns: 1fr; }

    .savings-grid,
    .split-section,
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .steps-flow { flex-direction: column; align-items: center; }
    .step-item::after { display: none; }
    .step-item { max-width: 100%; }

    .stats-bar { gap: 2rem; }

    .mkt-footer .footer-content { grid-template-columns: 1fr; }

    .cta-banner h2 { font-size: 2rem; }

    .comparison-table { border-radius: 0.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.6rem; }
    .pricing-price { font-size: 2.5rem; }
    .btn-lg { font-size: 1rem; padding: 0.85rem 2rem; }
}
