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

:root {
    /* Colors inspired by skuCALC app */
    --teal-primary: #14B8A6;
    --teal-dark: #0F9488;
    --teal-light: #5EEAD4;
    --red-alert: #EF4444;
    --red-light: #FEE2E2;
    --green-success: #10B981;
    --green-light: #D1FAE5;

    /* Neutrals */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-display: 'Instrument Sans', -apple-system, system-ui, sans-serif;
    --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --section-padding: 8rem;
    --container-padding: 2rem;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-teal: 0 10px 40px -10px rgba(20, 184, 166, 0.3);
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--teal-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo svg {
    width: 28px;
    height: 28px;
}

.logo-text {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--teal-primary);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--teal-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-teal);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--teal-primary);
    color: var(--teal-primary);
    background: rgba(20, 184, 166, 0.05);
}

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

/* Hero Section */
.hero {
    padding-top: calc(72px + 6rem);
    padding-bottom: 6rem;
    background: linear-gradient(to bottom, var(--gray-50), #FFFFFF);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: none;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out 0.1s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.proof-item {
    border-left: 2px solid var(--teal-primary);
    padding-left: 1rem;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Dashboard Preview */
.hero-visual {
    animation: slideLeft 1s ease-out 0.2s backwards;
    margin-right: calc(-50vw + 50%);
    padding-right: 2rem;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    max-width: 900px;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-preview {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preview-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--gray-100);
    padding: 0.25rem;
    border-radius: 8px;
}

.tab {
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab.active {
    background: var(--teal-primary);
    color: white;
}

.preview-year {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gray-900);
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.chart-container {
    margin-bottom: 1.5rem;
}

.chart-wrapper {
    position: relative;
    background: #FAFAFA;
    border-radius: 8px;
    padding: 1.5rem 1rem 1rem;
    margin-bottom: 0.75rem;
}

.period-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    text-align: center;
}

.period-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.period-label.off-peak {
    background: transparent;
}

.period-label.peak {
    background: rgba(239, 68, 68, 0.05);
    border-radius: 0 8px 0 0;
}

.chart-grid {
    display: flex;
    gap: 0.4rem;
    height: 180px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.chart-bar {
    flex: 1;
    position: relative;
    border-radius: 6px 6px 0 0;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: barGrow 0.8s ease-out backwards;
}

.chart-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--teal-primary);
    height: var(--teal-height);
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.chart-bar::after {
    content: '';
    position: absolute;
    bottom: var(--teal-height);
    left: 0;
    right: 0;
    background: #EF4444;
    height: var(--red-height);
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: translateY(-4px);
}

.chart-bar:hover::before {
    background: var(--teal-dark);
}

.chart-bar:hover::after {
    background: #DC2626;
}

.chart-bar.highlight-bar::before {
    background: var(--teal-primary);
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.4);
}

.chart-bar.future {
    opacity: 0.3;
    cursor: default;
}

.chart-bar.future::before,
.chart-bar.future::after {
    background: var(--gray-300);
}

.chart-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    right: 1rem;
    bottom: 2.5rem;
    pointer-events: none;
    z-index: 2;
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.15s; }
.chart-bar:nth-child(3) { animation-delay: 0.2s; }
.chart-bar:nth-child(4) { animation-delay: 0.25s; }
.chart-bar:nth-child(5) { animation-delay: 0.3s; }
.chart-bar:nth-child(6) { animation-delay: 0.35s; }
.chart-bar:nth-child(7) { animation-delay: 0.4s; }
.chart-bar:nth-child(8) { animation-delay: 0.45s; }
.chart-bar:nth-child(9) { animation-delay: 0.5s; }
.chart-bar:nth-child(10) { animation-delay: 0.55s; }

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.label-highlight {
    color: var(--teal-primary);
    font-weight: 600;
}

.label-future {
    color: var(--gray-400);
}

.data-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.data-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.data-card:nth-child(1) { animation-delay: 0.6s; }
.data-card:nth-child(2) { animation-delay: 0.7s; }

.data-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.data-card.aged {
    background: var(--red-light);
    border-color: var(--red-alert);
}

.data-card.new-selection {
    background: var(--green-light);
    border-color: var(--green-success);
}

.card-icon {
    font-size: 1.5rem;
}

.card-content {
    flex: 1;
}

.card-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.card-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.card-detail {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Features Section */
.features {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--teal-primary);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card.primary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(20, 184, 166, 0.02));
    border-color: var(--teal-primary);
}

.feature-card.square-card .feature-visual {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-card.square-card .feature-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-visual {
    margin-bottom: 1.5rem;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-screenshot {
    box-shadow: var(--shadow-md);
}

.mini-chart {
    display: flex;
    gap: 0.5rem;
    height: 80px;
    align-items: flex-end;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.mini-bar {
    flex: 1;
    background: var(--teal-primary);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.feature-card:hover .mini-bar {
    background: var(--teal-dark);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meta-badge {
    padding: 0.25rem 0.75rem;
    background: var(--teal-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.insight-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-900);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.insight-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.insight-icon {
    font-size: 2.5rem;
}

.insight-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.insight-card p {
    color: var(--gray-400);
    max-width: 500px;
}

.insight-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-horizontal {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-left {
    flex: 1;
}

.pricing-plan-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-plan-description {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-features-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-primary);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.feature-check {
    color: var(--teal-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-right {
    flex-shrink: 0;
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    min-width: 280px;
}

.pricing-amount {
    margin-bottom: 1.5rem;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 0.5rem;
}

.price-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.pricing-right .btn-primary {
    width: 100%;
    margin-bottom: 1rem;
}

.pricing-meta {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pricing-offer {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.pricing-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--teal-primary);
    border-width: 2px;
    box-shadow: var(--shadow-teal);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.price-period {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
}

.check {
    color: var(--teal-primary);
    font-weight: 700;
}

.check.muted {
    color: var(--gray-300);
}

.muted {
    color: var(--gray-400);
}

.pricing-card button {
    width: 100%;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-content {
    margin-bottom: 2.5rem;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
}

.cta-form form {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cta-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    transition: all 0.2s ease;
}

.cta-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-form button {
    background: var(--gray-900);
    color: white;
    padding: 1rem 2rem;
    white-space: nowrap;
}

.cta-form button:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
}

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

.success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    margin-top: 1rem;
    font-weight: 500;
    animation: slideUp 0.4s ease-out;
}

.success-message.show {
    display: flex;
}

.success-icon {
    width: 24px;
    height: 24px;
    background: white;
    color: var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--teal-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray-400);
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--teal-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--teal-primary);
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0 4rem;
    background: var(--gray-50);
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 1rem;
    color: var(--gray-500);
    font-family: var(--font-mono);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--gray-700);
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-section li strong {
    color: var(--gray-900);
    font-weight: 600;
}

.contact-info {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--teal-primary);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 6rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        margin-right: 0;
        padding-right: 0;
    }

    .hero-screenshot {
        max-width: 100%;
    }

    h1 {
        font-size: 3rem;
    }

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

    .feature-card.primary {
        grid-column: 1 / -1;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-horizontal {
        flex-direction: column;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
        --container-padding: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a:not(.btn-primary) {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .social-proof {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .insight-card {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-stats {
        gap: 2rem;
    }

    .cta-card {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-form form {
        flex-direction: column;
    }

    .pricing-horizontal {
        padding: 2rem 1.5rem;
    }

    .pricing-plan-name {
        font-size: 1.75rem;
    }

    .pricing-features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-right {
        width: 100%;
        min-width: auto;
    }

    .price-number {
        font-size: 3rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal-links {
        gap: 1.5rem;
    }
}
