/* ===== CSS RESET & CUSTOM PROPERTIES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #060b1a;
    --bg-secondary: #0a1128;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-card-hover: rgba(244, 121, 32, 0.4);

    --orange-500: #f47920;
    --orange-400: #f4a020;
    --orange-600: #d96a1b;
    --amber-400: #fbbf24;

    --text-primary: #f0f2f5;
    --text-secondary: rgba(240, 242, 245, 0.6);
    --text-tertiary: rgba(240, 242, 245, 0.4);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(6, 11, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--orange-500);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-500);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: #fff;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px rgba(244, 121, 32, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 121, 32, 0.45);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 32px 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        url('Images/hero-bg.png') center/cover no-repeat,
        linear-gradient(135deg, #060b1a 0%, #0f1b3d 50%, #1a0f05 100%);
    opacity: 0.25;
    z-index: 0;
}

.hero-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 11, 26, 0.5) 0%,
            rgba(6, 11, 26, 0.2) 40%,
            rgba(6, 11, 26, 0.7) 80%,
            rgba(6, 11, 26, 1) 100%);
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--orange-500);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    10% {
        opacity: 0.6;
        transform: scale(1);
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-200px) scale(0.5);
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    opacity: 0.12;
    animation: floatBob 8s ease-in-out infinite;
}

.float-icon svg {
    width: 60px;
    height: 60px;
}

.fi-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.fi-2 {
    top: 25%;
    right: 10%;
    animation-delay: 1.5s;
}

.fi-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.fi-4 {
    top: 60%;
    right: 6%;
    animation-delay: 2s;
}

.fi-5 {
    bottom: 15%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(3deg);
    }

    75% {
        transform: translateY(10px) rotate(-2deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: heroFadeIn 1.2s var(--ease-out) forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(244, 121, 32, 0.12);
    border: 1px solid rgba(244, 121, 32, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-400);
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-500);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 121, 32, 0.15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(244, 121, 32, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--amber-400) 50%, var(--orange-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--amber-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto 16px;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.15);
}

.input-wrapper input::placeholder {
    color: var(--text-tertiary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    box-shadow: 0 4px 24px rgba(244, 121, 32, 0.3);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(244, 121, 32, 0.45);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary:active {
    transform: translateY(0);
}

.subscribe-note {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--orange-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ===== SECTIONS COMMON ===== */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(244, 121, 32, 0.1);
    border: 1px solid rgba(244, 121, 32, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
    padding: var(--section-padding);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(244, 121, 32, 0.06);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 121, 32, 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--orange-500);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(244, 121, 32, 0.18);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

/* ===== COMING SOON BLOCK ===== */
.countdown-section {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.coming-soon-block {
    text-align: center;
    padding: 60px 32px;
}

.coming-soon-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(244, 121, 32, 0.12);
    border: 1px solid rgba(244, 121, 32, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-400);
    margin-bottom: 36px;
    animation: badgePulse 3s ease-in-out infinite;
}

.coming-soon-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.coming-soon-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-500), var(--amber-400));
    border-radius: 100px;
    margin: 0 auto 28px;
    position: relative;
    overflow: hidden;
}

.coming-soon-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 2s ease-in-out infinite;
}

.coming-soon-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.milestone-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.4s var(--ease-out);
}

.milestone-item:hover {
    border-color: var(--border-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.milestone-item.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.milestone-item.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.milestone-item.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.milestone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.milestone-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.milestone-icon {
    width: 22px;
    height: 22px;
    color: var(--orange-500);
    flex-shrink: 0;
}

.milestone-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
}

.milestone-percent {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange-500), var(--amber-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange-500), var(--amber-400));
    border-radius: 100px;
    transition: width 1.5s var(--ease-out);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.milestone-status {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.milestone-status.completed {
    color: #22c55e;
}

.milestone-status.in-progress {
    color: var(--orange-400);
}

.milestone-status.upcoming {
    color: var(--text-tertiary);
}

/* Spinner animation for subscribe loading */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: spin 1s linear infinite;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: var(--section-padding);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.contact-card:hover {
    border-color: var(--border-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 121, 32, 0.1);
    border-radius: 16px;
    margin: 0 auto 20px;
    color: var(--orange-500);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orange-400);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--orange-500);
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.contact-card.reveal:nth-child(2) {
    transition-delay: 0.15s;
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.footer-brand {
    margin-bottom: 28px;
}

/* center logo in footer (previously applied via inline style) */
.footer .nav-logo {
    justify-content: center;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-top: 12px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    border-color: var(--border-card-hover);
    color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(244, 121, 32, 0.15);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(6, 11, 26, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s var(--ease-out);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .subscribe-form {
        flex-direction: column;
        padding: 0 8px;
    }

    .btn-primary {
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 0 40%;
    }

    .floating-icons {
        display: none;
    }

    .section-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .section-desc {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .features,
    .countdown-section,
    .contact-section {
        padding: 64px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .milestone-tracker {
        gap: 20px;
    }

    .milestone-item {
        padding: 20px 20px;
    }

    .milestone-name {
        font-size: 0.95rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .scroll-indicator {
        display: none;
    }

    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 16px 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .subscribe-form {
        padding: 0;
    }

    .input-wrapper input {
        padding: 12px 14px 12px 42px;
        font-size: 0.88rem;
    }

    .btn-primary {
        padding: 14px 20px;
        font-size: 0.88rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.88rem;
    }

    .section-tag {
        font-size: 0.72rem;
    }

    .milestone-item {
        padding: 16px;
    }

    .milestone-header {
        flex-direction: row;
        gap: 8px;
    }

    .milestone-name {
        font-size: 0.88rem;
    }

    .milestone-percent {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-value {
        font-size: 0.95rem;
    }

    .footer-socials {
        gap: 12px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Touch device enhancements */
@media (hover: none) {

    .feature-card:hover,
    .milestone-item:hover,
    .contact-card:hover {
        transform: none;
        box-shadow: none;
    }

    .feature-card:active,
    .milestone-item:active,
    .contact-card:active {
        transform: scale(0.98);
        border-color: var(--border-card-hover);
    }

    .social-link:hover {
        transform: none;
    }

    .social-link:active {
        transform: scale(0.9);
    }
}
