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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-snap-type: y mandatory;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* ===================================
   Design System - Variables (Hampton-Inspired)
   =================================== */
:root {
    /* Colors - Kairos Brand Palette */
    --primary-color: #c2007c;
    --primary-dark: #9a0062;
    --secondary-color: #2F394D;
    --accent-color: #c2007c;
    --success-color: #7cc200;
    --text-primary: #2F394D;
    --text-secondary: #5a6578;
    --text-light: #94a3b8;
    --bg-white: #fdfeff;
    --bg-cream: #f7f8fa;
    --bg-dark: #111827;
    --bg-light: #fdfeff;
    --border-color: #e5e7eb;

    /* Color Variations */
    --primary-10: rgba(194, 0, 124, 0.1);
    --primary-20: rgba(194, 0, 124, 0.2);
    --secondary-dark: #8a5a3c;
    --secondary-light: #c9a085;

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-code: 'Space Mono', monospace;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 80px;

    /* Layout */
    --max-width: 1200px;
    --section-padding: 80px 40px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

a:hover {
    color: var(--primary-dark);
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hidden {
    display: none;
}

/* Full-height snap sections */
.hero-section,
.problem-solution-section,
.value-props-section,
.services-section,
.how-it-works-section,
.case-study-section,
.trust-section,
.faq-section,
.contact-section {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-footer {
    scroll-snap-align: start;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #1f2937;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.18);
}

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

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* ===================================
   Header / Navigation
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.site-header.scrolled {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 600;
    transition: color var(--transition-fast);
}

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

.nav-menu .nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
}

.nav-menu .nav-cta:hover {
    background: var(--primary-dark);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--text-primary);
    position: relative;
    padding: 120px 48px 80px;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-size: clamp(3rem, 7.5vw, 6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.accent {
    background: linear-gradient(135deg, #c2007c 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 48px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-section .btn-primary {
    background: var(--bg-dark);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 20px 52px;
    font-size: 1.0625rem;
    transition: all 0.2s;
}

.hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.18);
}

.hero-note {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Hero proof strip */
.hero-proof {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 28px 48px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-white);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.proof-text {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.proof-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
}

/* ===================================
   Problem/Solution Section
   =================================== */
.problem-solution-section {
    padding: 112px 4%;
    background: var(--bg-dark);
    color: white;
}

@media (min-width: 768px) {
    .problem-solution-section {
        padding: 112px 5%;
    }
}

@media (min-width: 1440px) {
    .problem-solution-section {
        padding: 112px 10%;
    }
}

.problem-split {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-left h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.problem-left p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.problem-right {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 64px;
}

.problem-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.problem-item:first-child {
    padding-top: 0;
}

.problem-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.problem-num {
    font-family: var(--font-code);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.problem-item p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Value Propositions Section
   =================================== */
.value-props-section {
    padding: 112px 4%;
    background: var(--bg-cream);
}

@media (min-width: 768px) {
    .value-props-section {
        padding: 112px 5%;
    }
}

@media (min-width: 1440px) {
    .value-props-section {
        padding: 112px 10%;
    }
}

.value-headlines {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.value-headline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2xl);
    white-space: nowrap;
}

.value-headline:last-child {
    margin-bottom: 0;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 112px 4%;
    background: white;
}

@media (min-width: 768px) {
    .services-section {
        padding: 112px 5%;
    }
}

@media (min-width: 1440px) {
    .services-section {
        padding: 112px 10%;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl) var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.service-card {
    padding: 0 0 0 var(--spacing-lg);
    border: none;
    border-left: 2px solid var(--border-color);
    border-radius: 0;
    transition: border-color var(--transition-base);
    position: relative;
    background: transparent;
}

.service-card:hover {
    border-left-color: var(--primary-color);
}

.service-number {
    font-family: var(--font-code);
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    margin-bottom: var(--spacing-md);
}

.service-description {
    margin-bottom: var(--spacing-md);
}

.service-deliverable {
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works-section {
    padding: 112px 4%;
    background: var(--bg-dark);
    color: white;
}

.how-it-works-section .section-title {
    color: white;
}

.how-it-works-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .how-it-works-section {
        padding: 112px 5%;
    }
}

@media (min-width: 1440px) {
    .how-it-works-section {
        padding: 112px 10%;
    }
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    margin-bottom: var(--spacing-sm);
    color: white;
    font-size: 1.375rem;
    white-space: nowrap;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
}

.step-connector {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: normal;
}

/* ===================================
   Case Study Section
   =================================== */
.case-study-section {
    padding: 112px 4%;
    background: var(--bg-cream);
}

@media (min-width: 768px) {
    .case-study-section {
        padding: 112px 5%;
    }
}

@media (min-width: 1440px) {
    .case-study-section {
        padding: 112px 10%;
    }
}

.case-study-card {
    max-width: 1000px;
    margin: var(--spacing-2xl) auto 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.case-study-visual {
    width: 100%;
    overflow: hidden;
}

.case-study-visual img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.case-study-content {
    padding: 48px;
}

.case-study-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: var(--primary-10);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
}

.case-study-content h3 {
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.case-study-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.case-study-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-cream);
    border-radius: 8px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-code);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.case-study-details {
    margin-bottom: var(--spacing-lg);
}

.case-study-details h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.case-study-details ul {
    list-style: none;
    padding: 0;
}

.case-study-details li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.case-study-details li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-family: var(--font-code);
}

.case-study-outcome {
    font-style: italic;
    color: var(--text-secondary);
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--primary-color);
}

/* ===================================
   Trust/Credibility Section
   =================================== */
.trust-section {
    padding: 112px 4%;
    background: var(--bg-cream);
}

@media (min-width: 768px) {
    .trust-section {
        padding: 112px 5%;
    }
}

@media (min-width: 1440px) {
    .trust-section {
        padding: 112px 10%;
    }
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-text {
    margin-bottom: var(--spacing-2xl);
}

.trust-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

/* Founder Profile */
.founder-profile {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    padding: 48px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.founder-avatar {
    flex-shrink: 0;
}

.founder-avatar img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
}

.founder-info h3 {
    margin-bottom: var(--spacing-xs);
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.founder-linkedin {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.founder-linkedin:hover {
    color: var(--primary-dark);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 112px 4%;
    background: white;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 112px 5%;
    }
}

@media (min-width: 1440px) {
    .faq-section {
        padding: 112px 10%;
    }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    border: none;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.25s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 24px;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 112px 4%;
    background: var(--bg-dark);
    color: white;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 112px 5%;
    }
}

@media (min-width: 1440px) {
    .contact-section {
        padding: 112px 10%;
    }
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-content h2 {
    color: white;
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
}

.contact-content h2 .accent {
    background: linear-gradient(135deg, #e060b0 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.25s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-10);
}

.contact-form button {
    width: 100%;
    margin-top: var(--spacing-md);
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(194, 0, 124, 0.35);
    border-radius: 12px;
    padding: 0.85em 2em;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(194, 0, 124, 0.4);
    transform: translateY(-2px);
}

.form-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* Form field validation states */
.form-group input.field-error,
.form-group textarea.field-error {
    border-color: #ef4444;
}

.form-group input.field-valid,
.form-group textarea.field-valid {
    border-color: var(--success-color);
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 77px 4%;
    margin-top: 0;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 77px 5%;
    }
}

@media (min-width: 1440px) {
    .site-footer {
        padding: 77px 10%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer-contact p,
.footer-social a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

