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

:root {
    --midnight-900: #050D1A;
    --midnight-800: #0A1628;
    --midnight-700: #0F1F36;
    --midnight-600: #162A44;
    --midnight-500: #1E3A5C;
    --mint-300: #5EEAD4;
    --mint-400: #34D3B8;
    --mint-500: #2EC4A8;
    --white: #FFFFFF;
    --off-white: #F8FAFA;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --nav-height: 72px;
    --section-padding: clamp(80px, 12vw, 140px);
    --container-max: 1200px;
    --container-padding: clamp(20px, 4vw, 48px);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    color: var(--midnight-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

::selection {
    background: var(--mint-300);
    color: var(--midnight-900);
}

/* ── Utility ────────────────────────────────────────────────── */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-500);
    margin-bottom: 1rem;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight-800);
    margin-bottom: 1.5rem;
}

.headline-accent {
    font-style: italic;
    color: var(--midnight-600);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--midnight-800);
    color: var(--white);
    border: 1.5px solid var(--midnight-800);
}

.btn-primary:hover {
    background: var(--midnight-700);
    border-color: var(--midnight-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--midnight-800);
    border: 1.5px solid var(--gray-300);
}

.btn-ghost:hover {
    border-color: var(--midnight-800);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-fixed.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 1001;
}

.nav-logo-mark {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--white);
    background: var(--mint-300);
    padding: 0.375rem 0.5rem;
    border-radius: 3px;
    transition: color 0.3s, background 0.3s;
}

.nav-fixed.scrolled .nav-logo-mark {
    color: var(--midnight-800);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s;
}

.nav-fixed.scrolled .nav-logo-text {
    color: var(--midnight-800);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint-300);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-link-cta {
    color: var(--mint-300);
    font-weight: 500;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    color: var(--mint-400);
}

.nav-fixed.scrolled .nav-link {
    color: var(--gray-500);
}

.nav-fixed.scrolled .nav-link:hover {
    color: var(--midnight-800);
}

.nav-fixed.scrolled .nav-link-cta {
    color: var(--mint-500);
}

/* Mobile menu button */
.nav-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 1001;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-fixed.scrolled .nav-menu-btn:hover {
    background: rgba(10, 22, 40, 0.06);
}

.menu-icon-close {
    display: none;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--midnight-900);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(94, 234, 212, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(94, 234, 212, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: calc(var(--nav-height) + 40px) var(--container-padding) 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-300);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s forwards;
}

.hero-headline-accent {
    font-style: italic;
    color: var(--mint-300);
}

.hero-subheadline {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
}

.hero-actions .btn-primary {
    background: var(--mint-300);
    color: var(--midnight-900);
    border-color: var(--mint-300);
}

.hero-actions .btn-primary:hover {
    background: var(--mint-400);
    border-color: var(--mint-400);
    box-shadow: 0 8px 32px rgba(94, 234, 212, 0.25);
}

.hero-actions .btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 5 / 6.4;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 13, 26, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mint-300);
    letter-spacing: 0.02em;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    animation: float 2.5s ease-in-out infinite;
}

/* ── Section base ───────────────────────────────────────────── */
.section {
    padding: var(--section-padding) 0;
}

/* ── About ──────────────────────────────────────────────────── */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 5 / 6.2;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--mint-300);
    border-radius: 4px;
    z-index: -1;
}

.about-text-col {
    padding-top: 1rem;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about-body p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.about-credentials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--midnight-700);
}

.credential-item svg {
    color: var(--mint-500);
}

/* ── Services ───────────────────────────────────────────────── */
.services {
    background: var(--off-white);
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.services-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-500);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--mint-300);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
    transform: translateY(-2px);
}

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

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    margin-bottom: 1.25rem;
    color: var(--mint-500);
    transition: all 0.3s;
}

.service-card:hover .service-card-icon {
    background: var(--midnight-800);
    border-color: var(--midnight-800);
    color: var(--mint-300);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 400;
    color: var(--midnight-800);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ── Process ────────────────────────────────────────────────── */
.process {
    background: var(--midnight-800);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(94, 234, 212, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 90%, rgba(94, 234, 212, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.process-header .section-headline {
    color: var(--white);
}

.process-header .headline-accent {
    color: var(--mint-300);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 2rem 1.25rem;
    position: relative;
}

.process-step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--mint-300);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step-line {
    width: 40px;
    height: 1px;
    background: rgba(94, 234, 212, 0.3);
    margin: 0 auto 1.25rem;
}

.process-step:last-child .process-step-line {
    display: none;
}

.process-step-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.process-step-desc {
    font-size: 0.8125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials {
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
    transform: translateY(-2px);
}

.testimonial-quote {
    color: var(--midnight-800);
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--gray-600);
    flex: 1;
}

.testimonial-author {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--midnight-700);
    letter-spacing: 0.02em;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* ── Contact ────────────────────────────────────────────────── */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-intro {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail svg {
    color: var(--mint-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 0.9375rem;
    color: var(--midnight-700);
    line-height: 1.6;
}

.contact-detail-value a {
    transition: color 0.3s;
}

.contact-detail-value a:hover {
    color: var(--mint-500);
}

/* Form */
.contact-form-col {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: clamp(24px, 3vw, 36px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--midnight-800);
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus {
    border-color: var(--mint-300);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.12);
}

.form-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 24 24' fill='none' stroke='%2394A3B8' 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 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    background: rgba(94, 234, 212, 0.08);
    border: 1px solid rgba(94, 234, 212, 0.3);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--midnight-700);
}

.form-success svg {
    color: var(--mint-500);
    flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--midnight-900);
    padding: 3.5rem 0 2rem;
}

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

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-logo-mark {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    color: var(--midnight-900);
    background: var(--mint-300);
    padding: 0.3125rem 0.4375rem;
    border-radius: 3px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: var(--white);
}

.footer-nmls {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--mint-300);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
}

.footer-link {
    color: rgba(94, 234, 212, 0.5);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--mint-300);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subheadline {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-step:last-child .process-step-line {
        display: block;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .menu-icon-open {
        display: block;
    }

    .menu-icon-close {
        display: none;
    }

    /* Mobile menu */
    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: var(--midnight-900);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .mobile-menu-link {
        font-family: var(--font-serif);
        font-size: 1.75rem;
        color: rgba(255, 255, 255, 0.7);
        padding: 0.75rem 1rem;
        transition: color 0.3s;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:focus {
        color: var(--mint-300);
    }

    .mobile-menu-link-cta {
        color: var(--mint-300);
        margin-top: 0.5rem;
    }

    .mobile-menu-contact {
        margin-top: 2.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 2rem;
    }

    .mobile-menu-phone,
    .mobile-menu-email {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.3s;
    }

    .mobile-menu-phone:hover,
    .mobile-menu-email:hover {
        color: var(--mint-300);
    }

    /* Hero mobile */
    .hero-container {
        padding-top: calc(var(--nav-height) + 24px);
    }

    .hero-visual {
        display: none;
    }

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

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-col {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Process mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step-line {
        display: none;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    /* Footer mobile */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-credentials {
        flex-direction: column;
        gap: 1rem;
    }
}
