/* CSS Variables & Reset */
:root {
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-text: #0F172A;
    --color-text-muted: #64748B;
    --color-primary: #10B981;
    --color-primary-dark: #059669;
    --color-border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Canvas Background Layer */
#dots-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* Let clicks pass through */
}

/* Clean Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #10B981;
    /* Green */
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #059669;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Selection Color */
::selection {
    background-color: #10B981;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--color-primary), #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.2s;
    cursor: pointer;
    font-size: 0.9375rem;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-text);
    background-color: var(--color-bg-alt);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    height: 4rem;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
    transform: scale(1.02);
}

@keyframes logo-pulse {
    0% {
        filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
    }

    100% {
        filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.2));
    }
}

.logo-img {
    height: 48px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    animation: logo-pulse 3s infinite ease-in-out;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.025em;
    margin-left: 0.25rem;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        font-size: 0.9375rem;
        font-weight: 500;
        color: var(--color-text-muted);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
    }

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

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.hero-subhead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}

.mockup-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 10;
    text-align: left;
    /* Keep internal card text left-aligned */
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #E0F2FE;
    color: #0284C7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.review-stars {
    color: #FBBF24;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.review-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.mockup-body {
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border);
    max-width: 800px;
    /* Increased width */
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 0;
    /* Handled by grid gap or row margin */
    text-align: left;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #10B981;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.guarantee-text {
    text-align: center;
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}



.mockup-review {
    align-self: flex-start;
    background-color: #F1F5F9;
    padding: 1.5rem;
    border-radius: 12px 12px 12px 2px;
    max-width: 85%;
    position: relative;
    margin-left: 3rem;
    /* Space for icon */
}

.mockup-review::before {
    content: '👤';
    /* Client Icon */
    position: absolute;
    left: -3rem;
    bottom: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.review-author {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.mockup-reply {
    align-self: flex-end;
    background: rgba(236, 253, 245, 0.85);
    /* Glassmorphism Green Tint */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    padding: 1.5rem;
    border-radius: 12px 12px 2px 12px;
    max-width: 85%;
    position: relative;
    margin-right: 3rem;
    /* Space for icon */
    opacity: 0;
    /* Hidden by default for animation */
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mockup-reply::after {
    content: '🤖';
    /* Robot Icon */
    position: absolute;
    right: -3rem;
    bottom: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.msg-content {
    flex: 1;
}

.msg-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.client-icon {
    order: -1;
}

.robot-icon {
    order: 1;
    /* Icon on the right */
}

.mockup-reply.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Removed .mockup-reply::after (Robot Icon) */

.reply-badge {
    display: inline-block;
    background-color: white;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    /* Increased size */
    height: 140%;
    /* Increased size */
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    filter: blur(20px);
    /* Soften edges */
    animation: glow-breathe 4s infinite ease-in-out;
    pointer-events: none;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    z-index: 10;
    position: relative;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    /* White outline for visibility */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #10B981;
    border-color: #10B981;
    transform: scale(1.2);
}

/* Annotation System */
.highlight-word {
    font-weight: 700;
    color: #10B981;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 4px;
    transition: all 0.2s;
}

.highlight-word:hover {
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
}

.annotation-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    /* Glassmorphism */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(16, 185, 129, 0.15);
    /* Greenish shadow */
    border: 1px solid rgba(16, 185, 129, 0.3);
    /* Green border */
    width: 220px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    top: 0;
    left: 0;
}

.annotation-card.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.annotation-content strong {
    display: block;
    color: #10B981;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.annotation-content p {
    font-size: 0.75rem;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
}

.annotation-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    overflow: visible;
}

@keyframes glow-breathe {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
}

.mockup-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
    /* Ensure consistent height */
    justify-content: center;
}

/* Social Proof */
.social-proof {
    padding: 2rem 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 20%,
            rgba(255, 255, 255, 1) 80%,
            rgba(255, 255, 255, 0) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.social-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Add fade masks on sides */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 4rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: running;
    /* Don't stop */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
        /* Adjust based on gap */
    }
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy transition */
}

.logo-item:hover {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    color: var(--color-primary);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-text);
}

/* How it Works */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 15%,
            rgba(255, 255, 255, 1) 85%,
            rgba(255, 255, 255, 0) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.text-highlight-anim {
    color: #10B981;
    position: relative;
    display: inline-block;
}

.text-highlight-anim::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: 4px;
    left: 0;
    background-color: rgba(16, 185, 129, 0.2);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    animation: underline-anim 1s 0.5s forwards;
}

@keyframes underline-anim {
    to {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent white */
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

.step-card:hover .step-number {
    color: var(--color-primary);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 15%,
            rgba(255, 255, 255, 1) 85%,
            rgba(255, 255, 255, 0) 100%);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    /* Increased margin */
    width: 100%;
    /* Ensure full width for centering */
}

.toggle-label {
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-badge {
    background-color: #DEF7EC;
    color: var(--color-primary);
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

.switch:hover .slider {
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

input:checked+.slider {
    background-color: var(--color-primary);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--color-primary);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 550px;
    /* Increased height */
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.15), 0 10px 10px -5px rgba(16, 185, 129, 0.1);
    transform: scale(1.02);
    position: relative;
    z-index: 2;
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 30px -5px rgba(16, 185, 129, 0.25), 0 15px 15px -5px rgba(16, 185, 129, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--color-text);
}

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

/* Contact */
.contact {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    gap: 4rem;
}



.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    background-color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 800;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}