/* ============================
   WYLVENA.COM — Global Styles
   Warm amber & deep navy palette
   ============================ */

:root {
    /* Color Palette — Warm & Elegant */
    --bg-primary: #08090e;
    --bg-secondary: #0d0f16;
    --bg-card: #12151e;
    --bg-card-hover: #181c28;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.1);

    --text-primary: #f2f0ed;
    --text-secondary: #9b968e;
    --text-muted: #645f56;

    /* Accent — Warm Amber/Gold */
    --accent-1: #d4a853;
    --accent-2: #e8c572;
    --accent-3: #c78936;
    --accent-glow: rgba(212, 168, 83, 0.25);
    --accent-gradient: linear-gradient(135deg, #c78936 0%, #e8c572 50%, #d4a853 100%);
    --accent-gradient-text: linear-gradient(135deg, #e8c572 0%, #d4a853 50%, #c78936 100%);

    /* Typography */
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Layout */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s var(--ease-out);
    --t-smooth: 0.4s var(--ease-out);
    --t-spring: 0.6s var(--ease-spring);
}

/* ============================
   Reset & Base
   ============================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Accent text utility */
.text-accent {
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================
   Navigation
   ============================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--t-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 9, 14, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 3px;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 10px;
    -webkit-text-fill-color: var(--bg-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-gradient);
    transition: width var(--t-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    font-size: 0.84rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--bg-primary);
    background: var(--accent-gradient);
    border-radius: 8px;
    transition: all var(--t-smooth);
    letter-spacing: 0.3px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--t-fast);
}

/* ============================
   Buttons
   ============================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--t-smooth);
    border: none;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.2px;
}

.btn-primary {
    color: var(--bg-primary);
    background: var(--accent-gradient);
    box-shadow: 0 4px 24px var(--accent-glow);
}

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

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

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
}

/* ============================
   Section Headers
   ============================ */

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 6px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title.left-align {
    text-align: left;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================
   Hero Section
   ============================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--accent-1), transparent 70%);
    top: -15%;
    right: -8%;
    animation: orb-drift 10s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #3d2c0a, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: orb-drift 12s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.4), transparent 70%);
    top: 50%;
    left: 30%;
    animation: orb-drift 8s ease-in-out infinite alternate;
}

@keyframes orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25px, -25px) scale(1.08); }
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(212, 168, 83, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
}

.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fadeUp 0.7s ease-out;
}

.overline-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent-gradient);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease-out 0.15s both;
}

.hero-accent {
    font-style: italic;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto 44px;
    animation: fadeUp 0.7s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 72px;
    animation: fadeUp 0.7s ease-out 0.45s both;
}

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease-out 0.6s both;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.metric-sep {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, var(--border-hover), transparent);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 0.7s ease-out 0.9s both;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--accent-1), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; height: 48px; }
    50% { opacity: 1; height: 64px; }
}

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

/* ============================
   Services Section
   ============================ */

.services {
    padding: var(--section-padding);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--t-smooth);
}

.service-card:hover {
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-6px);
}

.service-card.featured {
    border-color: rgba(212, 168, 83, 0.2);
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.06) 0%, var(--bg-card) 50%);
}

.service-card.featured:hover {
    border-color: rgba(212, 168, 83, 0.35);
}

.service-card-badge {
    position: absolute;
    top: 0;
    right: 24px;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-primary);
    background: var(--accent-gradient);
    border-radius: 0 0 8px 8px;
}

.service-card-inner {
    padding: 40px 32px;
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
}

.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.12);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--accent-2);
    transition: all var(--t-smooth);
}

.service-card:hover .service-icon-wrap {
    background: rgba(212, 168, 83, 0.12);
    transform: scale(1.05);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--accent-2);
    border-radius: 50%;
}

.service-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.03) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--t-smooth);
}

.service-card:hover .service-card-shine {
    opacity: 1;
}

/* ============================
   Process Section
   ============================ */

.process {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.process-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 28px;
    padding: 36px 0;
    transition: all var(--t-smooth);
}

.process-step:hover .step-body h3 {
    color: var(--accent-2);
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 56px;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-2);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
    background: rgba(212, 168, 83, 0.05);
    flex-shrink: 0;
}

.step-line {
    display: block;
    width: 1px;
    flex: 1;
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.2), transparent);
    margin-top: 12px;
    min-height: 20px;
}

.step-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color var(--t-fast);
}

.step-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================
   About Section
   ============================ */

.about {
    padding: var(--section-padding);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-eyebrow {
    margin-bottom: 16px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pillar-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 12px;
    color: var(--accent-2);
}

.pillar h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pillar p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all var(--t-smooth);
}

.about-stat-card:hover {
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-4px);
}

.about-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================
   Contact Section
   ============================ */

.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all var(--t-smooth);
}

.contact-card:hover {
    border-color: rgba(212, 168, 83, 0.15);
    transform: translateX(4px);
}

.contact-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.12);
    border-radius: 12px;
    color: var(--accent-2);
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-card a,
.contact-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-card a:hover {
    color: var(--accent-2);
}

/* Contact Form */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 18px;
    outline: none;
    transition: all var(--t-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-3);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239b968e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================
   Footer
   ============================ */

.footer {
    padding: 64px 0 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 300px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color var(--t-fast);
}

.footer-col a:hover {
    color: var(--accent-2);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 9, 14, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 1.3rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero-metrics {
        gap: 28px;
    }

    .metric-sep {
        display: none;
    }

    .overline-line {
        width: 24px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Scroll Reveal
   ============================ */

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: all 0.7s var(--ease-out);
}

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