/* ============================================
   313Q Pro Sdn. Bhd. — Corporate Website
   Design: Professional, clean, trustworthy
   Font: Plus Jakarta Sans + Inter
   Palette: Deep navy + warm gold accent
   ============================================ */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --navy-950: #0a0f1e;
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --navy-600: #475569;
    --navy-500: #64748b;
    --navy-400: #94a3b8;
    --navy-300: #cbd5e1;
    --navy-200: #e2e8f0;
    --navy-100: #f1f5f9;
    --navy-50: #f8fafc;

    --gold-500: #c8a84e;
    --gold-400: #d4b85c;
    --gold-300: #e0ca7a;
    --gold-200: #f0e4b8;

    --white: #ffffff;
    --black: #000000;

    /* Semantic */
    --text-primary: var(--navy-900);
    --text-secondary: var(--navy-600);
    --text-muted: var(--navy-400);
    --bg-primary: var(--white);
    --bg-secondary: var(--navy-50);
    --accent: var(--gold-500);
    --accent-hover: var(--gold-400);
    --border: var(--navy-200);

    /* Spacing */
    --section-py: 7rem;
    --container-max: 1200px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 250ms;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-img--footer {
    height: 52px;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-600);
    border-radius: 6px;
    transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy-900);
    background: var(--navy-100);
}

.nav-cta {
    display: none;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
    background: var(--accent);
    text-decoration: none;
    border-radius: 6px;
    transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.nav-cta:hover {
    background: var(--accent-hover);
}

@media (min-width: 768px) {
    .nav-cta {
        display: block;
    }
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy-700);
    border-radius: 1px;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.25rem;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 350ms var(--ease), opacity 250ms var(--ease);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.25;
    max-width: 640px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    max-width: 560px;
    line-height: 1.7;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-950);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-glow--1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
    opacity: 0.12;
}

.hero-glow--2 {
    width: 500px;
    height: 500px;
    background: #1e40af;
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-300);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(200, 168, 78, 0.25);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s var(--ease) both;
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s var(--ease) 0.1s both;
}

.hero-title--accent {
    color: var(--accent);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--navy-400);
    max-width: 540px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s var(--ease) 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.btn--primary {
    background: var(--accent);
    color: var(--navy-950);
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 168, 78, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--navy-300);
    border: 1px solid var(--navy-700);
}

.btn--ghost:hover {
    border-color: var(--navy-500);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn--full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.6s var(--ease) 0.4s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat__number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero-stat__label {
    font-size: 0.8rem;
    color: var(--navy-500);
    font-weight: 500;
}

.hero-stat__divider {
    width: 1px;
    height: 36px;
    background: var(--navy-700);
}

/* Scroll Cue */
.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-cue__line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--navy-600), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 4rem;
    }
}

.about-main .section-title {
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy-700);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Story Card */
.about-story {
    background: var(--navy-50);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.about-story__icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.about-story__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

.about-story__text {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vm-card {
    border-radius: 12px;
    padding: 2.5rem;
}

.vm-card--vision {
    background: var(--navy-900);
    color: var(--white);
}

.vm-card--mission {
    background: var(--navy-50);
    border: 1px solid var(--border);
}

.vm-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.vm-card--vision .vm-card__label {
    color: var(--gold-300);
}

.vm-card--mission .vm-card__label {
    color: var(--accent);
}

.vm-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vm-card--vision .vm-card__title {
    color: var(--white);
}

.vm-card--mission .vm-card__title {
    color: var(--navy-900);
}

.vm-card__text {
    font-size: 0.975rem;
    line-height: 1.75;
    color: var(--navy-300);
}

.vm-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vm-card__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.vm-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* Corporate Values */
.values-section {
    padding-top: 1rem;
}

.values-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.value-item:hover {
    border-color: var(--navy-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-item__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--navy-50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.value-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.2rem;
}

.value-item__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-card__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy-300);
    font-variant-numeric: tabular-nums;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background: var(--navy-900);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

.service-card__desc {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card__features li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--navy-600);
    line-height: 1.5;
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.why-card {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.why-card:hover {
    border-color: var(--navy-300);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.why-card__icon {
    width: 44px;
    height: 44px;
    background: var(--navy-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.why-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.why-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CLIENTS / SECTORS SECTION
   ============================================ */
.clients {
    padding: var(--section-py) 0;
    background: var(--navy-900);
}

.clients .section-label {
    color: var(--gold-300);
}

.clients .section-title {
    color: var(--white);
    margin-bottom: 2.5rem;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.client-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--navy-300);
    font-size: 0.875rem;
    font-weight: 500;
    transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.client-tag:hover {
    border-color: var(--accent);
    background: rgba(200, 168, 78, 0.08);
    color: var(--white);
}

.client-tag svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }
}

.contact-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-detail h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.15rem;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-700);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.925rem;
    font-family: inherit;
    color: var(--navy-900);
    background: var(--navy-50);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--navy-400);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.12);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-950);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-logo .logo-mark {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--navy-400);
    margin-bottom: 0.25rem;
}

.footer-company {
    font-size: 0.8rem;
    color: var(--navy-500);
}

.footer-col__title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-400);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--navy-400);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-400);
    text-decoration: none;
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.social-link:hover {
    background: var(--accent);
    color: var(--navy-950);
    border-color: var(--accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--navy-500);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    .hero-badge,
    .hero-title,
    .hero-description,
    .hero-actions,
    .hero-stats {
        animation: none;
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 480px) {
    :root {
        --section-py: 4.5rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .hero-stat__divider {
        display: none;
    }

    .hero-stat {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .vm-card {
        padding: 1.75rem;
    }
}
