/* ============================================
   COPPERSAAS — Premium SaaS Landing Page
   Palette: Copper & Slate
   Typography: Cormorant Garamond + Manrope
   ============================================ */

/* CSS Variables */
:root {
    /* Copper & Slate Palette */
    --copper: #B87333;
    --copper-light: #D4A574;
    --copper-dark: #8B5A2B;
    --slate: #2F3640;
    --slate-light: #4A5568;
    --slate-dark: #1A1D23;
    --cream: #F5F0EB;
    --cream-dark: #E8E0D5;
    --white: #FAFAFA;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-copper: 0 10px 40px -10px rgba(184, 115, 51, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--slate);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(47, 54, 64, 0.05);
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(250, 250, 250, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate);
}

.logo-icon {
    color: var(--copper);
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-light);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--slate);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--slate);
    color: var(--white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--copper);
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate);
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(72px + var(--space-2xl)) 0 var(--space-2xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream-dark) 100%);
    opacity: 0.6;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(184, 115, 51, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(47, 54, 64, 0.05) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--copper);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--slate);
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--copper);
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: linear-gradient(90deg, var(--copper-light), transparent);
    z-index: -1;
    opacity: 0.4;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--slate-light);
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn svg {
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--copper);
    color: var(--white);
    box-shadow: var(--shadow-copper);
}

.btn-primary:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(184, 115, 51, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--slate);
    border: 1.5px solid var(--slate);
}

.btn-secondary:hover {
    background: var(--slate);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--slate);
    border: 1.5px solid var(--cream-dark);
}

.btn-outline:hover {
    border-color: var(--copper);
    color: var(--copper);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--slate);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
}

.dashboard-dots span:first-child { background: #FF5F57; }
.dashboard-dots span:nth-child(2) { background: #FFBD2E; }
.dashboard-dots span:last-child { background: #28CA42; }

.dashboard-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-light);
}

.dashboard-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.workflow-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-dark);
}

.workflow-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.workflow-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workflow-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate);
}

.workflow-status {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-top: 2px;
}

.workflow-status.running {
    background: rgba(40, 202, 66, 0.15);
    color: #28CA42;
}

.workflow-status.completed {
    background: rgba(184, 115, 51, 0.15);
    color: var(--copper);
}

.workflow-status.queued {
    background: rgba(47, 54, 64, 0.1);
    color: var(--slate-light);
}

.workflow-progress {
    width: 80px;
    height: 4px;
    background: var(--cream-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--copper), var(--copper-light));
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.progress-bar.complete {
    background: #28CA42;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
    animation: float 3s ease-in-out infinite;
}

.float-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
}

.float-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1.5s;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--slate);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-light);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.feature-card {
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-dark);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--copper-light);
}

.feature-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--slate) 0%, var(--slate-light) 100%);
    color: var(--white);
    border-color: transparent;
}

.feature-card.featured .feature-icon {
    background: rgba(255,255,255,0.1);
    color: var(--copper-light);
}

.feature-card.featured .feature-title {
    color: var(--white);
}

.feature-card.featured .feature-desc {
    color: rgba(255,255,255,0.8);
}

.feature-card.featured .feature-link {
    color: var(--copper-light);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--copper);
    margin-bottom: var(--space-md);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: var(--space-xs);
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--slate-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.feature-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--copper);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.feature-link:hover {
    gap: 8px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-dark);
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--slate);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--copper);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-display);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    color: var(--white);
    font-weight: 600;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--slate);
}

.author-role {
    font-size: 0.875rem;
    color: var(--slate-light);
}

.testimonial-rating {
    color: var(--copper);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    color: var(--slate);
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: var(--space-xs);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--copper);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 1px solid var(--cream-dark);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    background: var(--white);
    border-color: var(--copper);
    box-shadow: var(--shadow-copper);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--copper);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: var(--space-md);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: var(--space-xs);
}

.pricing-desc {
    font-size: 0.9375rem;
    color: var(--slate-light);
}

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

.price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate);
}

.period {
    font-size: 1rem;
    color: var(--slate-light);
}

.pricing-features {
    flex: 1;
    margin-bottom: var(--space-lg);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--slate);
}

.pricing-features li.disabled {
    color: var(--slate-light);
    opacity: 0.6;
}

.pricing-features .check {
    color: var(--copper);
    font-weight: 700;
}

.pricing-features .x {
    color: var(--slate-light);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--slate) 0%, var(--slate-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 115, 51, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 115, 51, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xl);
}

.cta-form {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.cta-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    outline: none;
    transition: all var(--transition-base);
}

.cta-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.cta-input:focus {
    border-color: var(--copper);
    background: rgba(255,255,255,0.15);
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--slate-dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-md);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--copper);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-column li {
    margin-bottom: var(--space-xs);
}

.footer-column a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--copper-light);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.featured {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid var(--cream-dark);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        font-size: 1.125rem;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding-top: calc(72px + var(--space-xl));
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.featured {
        grid-column: span 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .cta-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-input {
        min-width: auto;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    :root {
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-quote {
        font-size: 1.125rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}