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

:root {
    --primary: #005057;
    --primary-dark: #003d42;
    --primary-light: #007580;
    --accent: #de720e;
    --accent-light: #f5a623;
    --accent-dark: #b85c00;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 50px -12px rgba(0, 80, 87, 0.25);
    --shadow-accent: 0 10px 40px -10px rgba(222, 114, 14, 0.4);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 10px 0;
    position: relative;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 80, 87, 0.15);
}

.picto {
    width: 100%;
}

.logo {
    height: 80px;
    transition: transform var(--transition-smooth);
}

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

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--white) 0%, #e8f4f5 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(222, 114, 14, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 80, 87, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
    margin-right: -60px;
    z-index: 1;
    display: flex;
    align-items: stretch;
    margin-top: 100px;
    max-height: 557px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
    mask-image: linear-gradient(to right, black 60%, transparent 100%);
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 35px 60px -15px rgba(0, 80, 87, 0.3);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: 80px;
    bottom: 25px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.25;
    transition: all var(--transition-smooth);
}

.hero-image:hover::before {
    opacity: 0.35;
    transform: translate(-5px, -5px);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -60px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.15;
    animation: pulse-dot 3s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.25; }
}

.features {
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.features h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.accent-text {
    color: var(--accent);
}

.accent-bg {
    background-color: var(--accent);
    color: white;
    padding: 0px 10px;
    border-radius: 15px 0px 15px 0px;
    font-size: 0.7em;
}

.features .tagline {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.features .tagline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 80, 87, 0.05);
    position: relative;
    overflow: hidden;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.features-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 80, 87, 0.1);
}

.features-list li:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-bounce);
    box-shadow: 0 4px 12px rgba(0, 80, 87, 0.2);
}

.features-list li:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Countdown Timer */
.countdown-container {
    position: absolute;
    bottom: 25%;
    left: 5.5%;
    border-radius: 16px;
    padding: 0px;
    z-index: 10;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-align: center;
}

.countdown-timer {
    display: flex;
    gap: 5px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.countdown-item span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-unit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.form-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(222, 114, 14, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-container {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.form-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.form-container .subtitle {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.signup-benefits {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 35px;
    backdrop-filter: blur(5px);
}

.benefits-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding-left: 24px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: flex;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 14px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(222, 114, 14, 0.25), var(--shadow-md);
    background: var(--white);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 14px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    resize: vertical;
    min-height: 100px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(222, 114, 14, 0.25), var(--shadow-md);
    background: var(--white);
    transform: translateY(-2px);
}

.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 14px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(222, 114, 14, 0.25), var(--shadow-md);
    background-color: var(--white);
    transform: translateY(-2px);
}

.form-group select option {
    padding: 10px;
}

.form-group select optgroup {
    font-weight: 600;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Checkbox styling */
.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent);
}

.checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-text {
    flex: 1;
}

.checkbox-label:hover .checkmark {
    box-shadow: 0 0 0 3px rgba(222, 114, 14, 0.3);
}

.btn {
    padding: 16px 44px;
    border: none;
    border-radius: 14px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(222, 114, 14, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.success-message h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.8);
}

/* House Loader Animation */
.loader-overlay {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.loader-overlay.active {
    display: flex;
}

.house-loader {
    position: relative;
    width: 120px;
    height: 140px;
}

.house-foundation {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 100px;
    height: 8px;
    background: #8B7355;
    border-radius: 2px;
    animation: foundationBuild 0.3s ease-out forwards;
}

.house-walls {
    position: absolute;
    bottom: 8px;
    left: 15px;
    width: 90px;
    height: 70px;
}

.brick {
    position: absolute;
    background: var(--accent);
    border-radius: 3px;
    opacity: 0;
    transform: translateY(-20px);
}

.brick-1 {
    bottom: 0;
    left: 0;
    width: 42px;
    height: 20px;
    animation: brickFall 0.4s ease-out 0.3s forwards;
}

.brick-2 {
    bottom: 0;
    right: 0;
    width: 42px;
    height: 20px;
    animation: brickFall 0.4s ease-out 0.5s forwards;
}

.brick-3 {
    bottom: 24px;
    left: 0;
    width: 42px;
    height: 20px;
    animation: brickFall 0.4s ease-out 0.7s forwards;
}

.brick-4 {
    bottom: 24px;
    right: 0;
    width: 42px;
    height: 20px;
    animation: brickFall 0.4s ease-out 0.9s forwards;
}

.brick-5 {
    bottom: 48px;
    left: 0;
    width: 42px;
    height: 20px;
    animation: brickFall 0.4s ease-out 1.1s forwards;
}

.brick-6 {
    bottom: 48px;
    right: 0;
    width: 42px;
    height: 20px;
    animation: brickFall 0.4s ease-out 1.3s forwards;
}

.house-roof {
    position: absolute;
    bottom: 78px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 50px solid #c46209;
    opacity: 0;
    transform: translateY(-30px);
    animation: roofDrop 0.5s ease-out 1.5s forwards;
}

.house-door {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 35px;
    background: #5D4E37;
    border-radius: 3px 3px 0 0;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out 1.8s forwards;
}

.house-window {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #87CEEB;
    border: 2px solid #5D4E37;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out 2s forwards;
}

.house-window::before,
.house-window::after {
    content: '';
    position: absolute;
    background: #5D4E37;
}

.house-window::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.house-window::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.loader-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes foundationBuild {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

/* Success Message Enhanced */
.success-message {
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    animation: checkBounce 0.6s ease-out 0.2s both;
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--text-dark) 0%, #0d0d0d 100%);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.social-links span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--accent);
    color: var(--white);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
    .countdown-container {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 16px;
        background: rgba(0, 80, 87, 0.15);
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 50px;
    }
    
    .features h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        animation: none;
        margin-right: 0;
    }
    
    .hero-image img {
        border-radius: 24px;
        -webkit-mask-image: none;
        mask-image: none;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .hero-image::after {
        display: none;
    }
    
    .features {
        padding-left: 0;
    }

    .features h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .features .tagline {
        text-align: center;
        display: block;
    }
    
    .features .tagline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features-list li {
        padding: 16px;
    }
    
    .features-list li:hover {
        transform: none;
    }

    .countdown-container {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 16px;
        background: rgba(0, 80, 87, 0.15);
        backdrop-filter: blur(10px);
    }

    .countdown-item {
        min-width: 40px;
    }

    .countdown-item span:first-child {
        font-size: 1.4rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .form-section {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 35px 25px;
        margin: 0 10px;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .btn-secondary {
        order: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .features h1 {
        font-size: 1.9rem;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-image {
        animation: none;
    }
}