/* ============================================
   THE BABY PRO — Custom Styles
   Palette: Plum (#5B2C6F) + Amber (#D4A843)
   Fonts: Cormorant Garamond + Inter
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum: #5B2C6F;
    --plum-light: #7B3F8E;
    --plum-dark: #3D1D4A;
    --plum-faint: #F5EEF8;
    --plum-muted: #E8D5F0;
    --amber: #D4A843;
    --amber-light: #E8C76A;
    --amber-dark: #B8912E;
    --amber-faint: #FDF8EC;
    --cream: #FAFAF8;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-900: #2D2D2D;
    --gray-700: #5A5A5A;
    --gray-500: #8A8A8A;
    --gray-300: #C8C8C8;
    --gray-100: #F0F0EE;
    --gray-50: #FAFAF8;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray-900);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

address {
    font-style: normal;
}

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

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: var(--plum-dark);
    margin-bottom: var(--space-md);
}

.section-title--light {
    color: var(--white);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    border-bottom-color: var(--gray-300);
    box-shadow: 0 1px 20px rgba(91, 44, 111, 0.06);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--plum-dark);
}

.nav__logo-mark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--plum);
    border: 1.5px solid var(--plum);
    padding: 2px 7px;
    letter-spacing: 0.05em;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-700);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--plum);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--amber-dark);
    border: 1px solid var(--amber);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--amber);
    color: var(--white);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--plum-dark);
    transition: all var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--plum-dark);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--amber-dark);
}

.mobile-menu__divider {
    width: 40px;
    height: 1px;
    background: var(--gray-300);
    margin: var(--space-sm) 0;
}

.mobile-menu__phone,
.mobile-menu__email {
    font-size: 0.85rem;
    color: var(--gray-700);
    letter-spacing: 0.05em;
}

.mobile-menu__phone:hover {
    color: var(--plum);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.btn--primary:hover {
    background: var(--plum-light);
    border-color: var(--plum-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(91, 44, 111, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--plum-dark);
    border-color: var(--plum);
}

.btn--ghost:hover {
    background: var(--plum);
    color: var(--white);
}

.btn--large {
    padding: 18px 44px;
    font-size: 0.85rem;
}

.btn--full {
    width: 100%;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--space-lg) var(--space-xl);
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
}

.hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.hero__headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.15;
    color: var(--plum-dark);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.hero__subheadline {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--plum);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 3/4;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero__image-wrapper:hover img {
    transform: scale(1.02);
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.6;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- Section Divider --- */
.section-divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-divider__line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-300), transparent);
}

/* --- Services --- */
.services {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.services__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    padding: var(--space-lg);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--plum-muted);
    box-shadow: 0 12px 40px rgba(91, 44, 111, 0.08);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--plum-muted);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    color: var(--plum);
}

.service-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--plum-dark);
    margin-bottom: var(--space-sm);
}

.service-card__body {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.service-card__link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-card__link:hover {
    gap: 10px;
}

/* --- Feature / About --- */
.feature {
    padding: var(--space-3xl) 0;
    background: var(--plum-dark);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, 0.1);
    pointer-events: none;
}

.feature__layout {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.feature__image-stack {
    position: relative;
}

.feature__image-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.feature__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature__image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--plum-dark);
}

.feature__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature__image-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--amber);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.feature__text-col {
    padding-left: var(--space-lg);
}

.feature__body {
    margin-bottom: var(--space-xl);
}

.feature__body p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-md);
}

.feature__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature__value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.feature__value-line {
    flex-shrink: 0;
    width: 24px;
    height: 1px;
    background: var(--amber);
}

/* --- Approach --- */
.approach {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.approach__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.approach__subtitle {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.approach__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.approach__step {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

.approach__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: 0;
    width: 1px;
    height: calc(100% - 120px);
    background: var(--gray-300);
}

.approach__step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--plum-muted);
    line-height: 1;
    margin-bottom: var(--space-md);
    display: block;
}

.approach__step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--plum-dark);
    margin-bottom: var(--space-sm);
}

.approach__step-body {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--gray-700);
    max-width: 280px;
    margin: 0 auto;
}

.approach__cta {
    text-align: center;
}

/* --- Testimonial --- */
.testimonial {
    padding: var(--space-3xl) 0;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial__quote-mark {
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.testimonial__text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.testimonial__cite {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-style: normal;
}

.testimonial__cite-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-light);
}

.testimonial__cite-context {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Contact --- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact__detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--plum);
}

.contact__detail-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact__detail-text a,
.contact__detail-text address {
    font-size: 0.9rem;
    color: var(--gray-900);
    line-height: 1.6;
}

.contact__detail-text a:hover {
    color: var(--plum);
}

.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

/* Contact Form */
.contact__form-col {
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--plum-dark);
    margin-bottom: var(--space-lg);
}

.form__group {
    margin-bottom: var(--space-md);
}

.form__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-900);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.form__input:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.08);
}

.form__input::placeholder {
    color: var(--gray-500);
}

.form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' 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 14px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__privacy {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: var(--space-sm);
}

/* Form Success */
.form__success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.form__success-icon {
    margin-bottom: var(--space-md);
}

.form__success-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--plum-dark);
    margin-bottom: var(--space-sm);
}

.form__success-text {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__logo-mark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--amber);
    border: 1.5px solid var(--amber);
    padding: 3px 9px;
    display: inline-block;
    width: fit-content;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer__tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer__link-heading {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.footer__link-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 0;
    transition: color var(--transition);
}

.footer__link-col a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer__link-col span {
    display: block;
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: var(--space-lg);
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer__copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 480px;
    line-height: 1.6;
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr 0.7fr;
        gap: var(--space-xl);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .approach__steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .approach__step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__image-accent {
        display: none;
    }

    .hero__scroll-indicator {
        display: none;
    }

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

    .feature__layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .feature__image-stack {
        max-width: 400px;
        margin: 0 auto;
    }

    .feature__text-col {
        padding-left: 0;
    }

    .approach__steps {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .hero__stat-divider {
        display: none;
    }

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

    .feature__image-secondary {
        right: -10px;
        bottom: -20px;
    }

    .feature__image-badge {
        left: -10px;
        top: -10px;
    }

    .contact__form-col {
        padding: var(--space-md);
    }

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