/**
 * Suite.Consulting — Marketing Pages
 * Location: /home/spreeywl/suite_consulting/css/marketing.css
 *
 * Styles for public marketing pages: landing, about, pricing, contact, showcase.
 * Uses existing CSS custom properties from suite-consulting.css.
 * No hardcoded colors — fully compatible with branding overrides.
 *
 * CREATED: February 13, 2026
 * PHASE: 7 — Showcase & Marketing Pages
 */

/* ==========================================================================
   MARKETING NAV (enhanced site-header for marketing pages)
   ========================================================================== */

.marketing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.marketing-nav.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-xs);
}

.marketing-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.marketing-nav .site-logo {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.marketing-nav .site-logo img {
    height: 32px;
    width: auto;
}

.marketing-nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.marketing-nav-links a {
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-muted);
    text-decoration: none;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.marketing-nav-links a:hover {
    color: var(--color-text);
    background-color: var(--color-surface);
}

.marketing-nav-links a.active {
    color: var(--primary);
}

.marketing-nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* Mobile hamburger */
.marketing-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    color: var(--color-text);
}

.marketing-nav-toggle svg {
    display: block;
}

/* Mobile menu */
.marketing-mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg);
    z-index: 199;
    padding: var(--space-6);
    overflow-y: auto;
}

.marketing-mobile-menu.open {
    display: block;
}

.marketing-mobile-menu a {
    display: block;
    padding: var(--space-3) 0;
    font-size: var(--text-lg);
    font-weight: var(--fw-medium);
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border-light);
}

.marketing-mobile-menu a:last-child {
    border-bottom: none;
}

.marketing-mobile-menu .btn {
    margin-top: var(--space-6);
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   MARKETING LAYOUT
   ========================================================================== */

.marketing-page {
    padding-top: var(--header-height);
}

.marketing-section {
    padding: 5rem 0;
}

.marketing-section-sm {
    padding: 3rem 0;
}

.marketing-section-lg {
    padding: 7rem 0;
}

.marketing-section-alt {
    background-color: var(--color-surface);
}

.marketing-section-dark {
    background-color: var(--color-text);
    color: var(--color-text-inverse);
}

.marketing-section-dark .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.marketing-section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.marketing-section-gradient {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

/* Section headings */
.section-label {
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.marketing-section-dark .section-title {
    color: var(--color-text-inverse);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 640px;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: var(--space-1) var(--space-4) var(--space-1) var(--space-2);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-success);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-10);
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-1);
}

/* ==========================================================================
   FEATURE GRID
   ========================================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--primary);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
}

/* Connecting line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    margin: 0 auto var(--space-5);
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-2);
}

.step-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
    padding: 3rem 0;
}

.stat-item .stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--fw-bold);
    color: var(--primary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-2);
}

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */

.cta-section {
    text-align: center;
    padding: 5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 4rem;
    color: white;
    text-align: center;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-4);
}

.cta-box p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn-white {
    background-color: white;
    color: var(--primary);
    font-weight: var(--fw-semibold);
}

.cta-box .btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.cta-box .btn-ghost-white {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta-box .btn-ghost-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   PRICING TABLES
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: start;
}

.pricing-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.pricing-card-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.pricing-price {
    margin-bottom: var(--space-4);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.pricing-period {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-left: var(--space-1);
}

.pricing-description {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--color-success);
    margin-top: 1px;
}

.pricing-features li.disabled {
    color: var(--color-text-light);
}

.pricing-features li.disabled svg {
    color: var(--color-text-light);
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   TESTIMONIALS / SOCIAL PROOF
   ========================================================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.testimonial-quote {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-5);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-semibold);
    font-size: var(--text-sm);
    color: var(--primary);
}

.testimonial-name {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* ==========================================================================
   CONTACT / FORMS
   ========================================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-4);
}

.contact-info p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-1);
}

.contact-detail-text p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.contact-form-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-hero {
    text-align: center;
    padding: 5rem 0 3rem;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-6);
}

.about-hero p {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.value-card {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-2);
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SHOWCASE / B2B PAGES
   ========================================================================== */

.showcase-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showcase-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-text) 0%, #0f172a 100%);
}

.showcase-hero .container {
    position: relative;
    z-index: 1;
}

.showcase-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.showcase-hero p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

/* Capability cards for showcase */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.capability-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    gap: var(--space-5);
}

.capability-card .feature-icon {
    flex-shrink: 0;
}

.capability-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-2);
}

.capability-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.comparison-table th {
    padding: var(--space-4);
    text-align: left;
    font-weight: var(--fw-semibold);
    background-color: var(--color-surface);
    border-bottom: 2px solid var(--color-border);
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border-light);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table .check {
    color: var(--color-success);
}

.comparison-table .dash {
    color: var(--color-text-light);
}

/* Platform owner badge */
.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: var(--space-1) var(--space-4);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-6);
}

/* ==========================================================================
   MARKETING FOOTER (enhanced)
   ========================================================================== */

.marketing-footer {
    background-color: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .site-logo {
    color: white;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    text-decoration: none;
    display: block;
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.7;
}

.footer-column h4 {
    color: white;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: var(--space-1) 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: white;
}

/* ==========================================================================
   SUCCESS / ALERT MESSAGES (for forms)
   ========================================================================== */

.form-success {
    background-color: var(--color-success-bg);
    border: 1px solid var(--color-success);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
}

.form-success h3 {
    color: var(--color-success);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-2);
}

.form-success p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .feature-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .marketing-nav-links {
        display: none;
    }

    .marketing-nav-toggle {
        display: block;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-stats {
        gap: var(--space-6);
    }

    .feature-grid,
    .steps-grid,
    .testimonial-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .marketing-section {
        padding: 3.5rem 0;
    }

    .marketing-section-lg {
        padding: 4.5rem 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .cta-box {
        padding: 3rem var(--space-6);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }
}
