@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}



:root {
    --navy: #1a2744;
    --navy2: #243058;
    --cream: #f5ede0;
    --cream2: #ede0cc;
    --gold: #c9a96e;
    --text: #1a2744;
    --muted: #6b7280;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}


.serif {
    font-family: 'Playfair Display', serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.15;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(26, 39, 68, 0.97);
    backdrop-filter: blur(12px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
}

.nav-logo-text {
    line-height: 1.2;
}

.nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--cream);
    font-weight: 400;
}

.nav-logo-sub {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        font-size: 12px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(245,237,224,0.7);
        text-decoration: none;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--gold);
        }

.nav-cta {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 0.65rem 1.5rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s;
    font-weight: 500;
}

    .nav-cta:hover {
        background: var(--cream2);
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--cream);
        margin: 5px 0;
        transition: 0.3s;
    }

#mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--navy);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

    #mob-menu.open {
        display: flex;
    }

    #mob-menu a {
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--cream);
        text-decoration: none;
    }


.hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-left {
    padding: 5rem 3rem 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .hero-tag::before {
        content: '';
        width: 30px;
        height: 1px;
        background: var(--gold);
    }

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold);
    }

.hero-desc {
    font-size: 15px;
    color: rgba(245,237,224,0.65);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 2rem;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-gold:hover {
        background: var(--cream2);
    }

.btn-outline {
    border: 1px solid rgba(245,237,224,0.3);
    color: var(--cream);
    padding: 0.9rem 2rem;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.2s;
}

    .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245,237,224,0.1);
}

.hero-stat-n {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    display: block;
}

.hero-stat-l {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245,237,224,0.5);
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrap {
    width: 100%;
    height: 100%;
    background-image: url('../images/img1.jpg');
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

    .hero-img-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(239,246,255, 0.45);
        z-index: 0;
    }

.hero-photo-placeholder {
    width: 320px;
    height: 420px;
    background: linear-gradient(180deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

.hero-psi-big {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(201,169,110,0.3);
    line-height: 1;
}

.hero-photo-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201,169,110,0.5);
    text-align: center;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.1);
}

.deco-c1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.deco-c2 {
    width: 250px;
    height: 250px;
    bottom: 50px;
    left: 30px;
}

.hero-float-card {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    background: rgba(245,237,224,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    min-width: 200px;
}

.hero-float-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    margin-right: 6px;
}

.hero-float-status {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.hero-float-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--cream);
}

.hero-float-title {
    font-size: 14px;
    color: rgba(245,237,224,0.5);
    margin-top: 2px;
}


.section {
    padding: 7rem 6rem;
}

.section-sm {
    padding: 5rem 6rem;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .section-tag::before {
        content: '';
        width: 30px;
        height: 1px;
        background: var(--gold);
    }

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.what-img {
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    background-image: url('../images/psihologie_clinica.png');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.what-img-inner {
    text-align: center;
}

.what-img-psi {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: rgba(201,169,110,0.2);
}

.what-img-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201,169,110,0.4);
}

.what-h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 1.25rem;
    color: var(--text);
}

.what-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

    .services-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(26,39,68,0.08);
    }

        .services-list li:last-child {
            border-bottom: none;
        }

.svc-num {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    color: var(--gold);
    flex-shrink: 0;
    padding-top: 2px;
}

.svc-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 2px;
}

.svc-desc-text {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
}


.quote-band {
    background: var(--navy);
    padding: 5rem 6rem;
    text-align: center;
}

    .quote-band blockquote {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.5rem, 3vw, 2.25rem);
        font-style: italic;
        color: var(--cream);
        max-width: 800px;
        margin: 0 auto 1.5rem;
        line-height: 1.5;
    }

    .quote-band cite {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
    }


.about-bg {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.about-photo {
    aspect-ratio: 4/5;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--cream2) 0%, var(--cream) 100%);
	background-image: url('../images/IMG_7821.jpg');
background-size: cover;
background-position: center 40%;
background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(26,39,68,0.08);
    position: relative;
}

.about-photo-psi {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(26,39,68,0.12);
}

.about-photo-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(26,39,68,0.3);
    margin-top: 0.5rem;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--navy);
    color: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(26,39,68,0.2);
}

.about-badge-n {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    display: block;
}

.about-badge-l {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
}

.about-h2 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.about-intro {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2rem;
}

.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(26,39,68,0.1);
}

.tab-btn {
    padding: 0.65rem 1.5rem;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: var(--muted);
    transition: 0.2s;
    font-family: 'Jost', sans-serif;
}

    .tab-btn.active {
        color: var(--navy);
        border-bottom-color: var(--gold);
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }

.cred-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cred-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

.cred-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.cred-year {
    font-size: 11px;
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-tag {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(26,39,68,0.15);
    border-radius: 2px;
    color: var(--text);
}


.help-bg {
    background: var(--navy);
}

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

.help-h2 {
    color: var(--cream);
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 1rem;
}

.help-desc {
    font-size: 15px;
    color: rgba(245,237,224,0.55);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.help-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.help-topic {
    padding: 0.65rem 1.5rem;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 100px;
    font-size: 13px;
    color: var(--cream);
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

    .help-topic:hover {
        background: rgba(201,169,110,0.15);
        border-color: var(--gold);
        color: var(--gold);
    }

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.help-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 4px;
    padding: 2rem;
    transition: background 0.2s, border-color 0.2s;
}

    .help-card:hover {
        background: rgba(201,169,110,0.06);
        border-color: rgba(201,169,110,0.3);
    }

.help-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.help-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 0.65rem;
}

.help-card p {
    font-size: 13px;
    color: rgba(245,237,224,0.55);
    line-height: 1.7;
    font-weight: 300;
}


.testimonials-bg {
    background: var(--cream);
}

.test-header {
    margin-bottom: 4rem;
}

.test-h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 0.75rem;
    text-align: center;
}

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

.test-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2rem;
    border: 1px solid rgba(26,39,68,0.07);
    transition: box-shadow 0.2s;
}

    .test-card:hover {
        box-shadow: 0 8px 32px rgba(26,39,68,0.08);
    }

.test-quote {
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.test-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.test-author {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.test-role {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}


.booking-bg {
    background: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.booking-left h2 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.booking-left p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.detail-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26,39,68,0.07);
}

    .detail-row:last-child {
        border-bottom: none;
    }

.detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(26,39,68,0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.detail-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.detail-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(26,39,68,0.15);
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    background: var(--cream);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: var(--gold);
        background: var(--white);
    }

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

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

.btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--cream);
    padding: 1rem;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

    .btn-submit:hover {
        background: var(--gold);
        color: var(--navy);
    }

.form-note {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 0.75rem;
}


.contact-bg {
    background: var(--navy);
}

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

.contact-card {
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px;
    padding: 2rem;
}

.contact-card-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.contact-card-val {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.contact-card-sub {
    font-size: 12px;
    color: rgba(245,237,224,0.45);
}


footer {
    background: #111c35;
    padding: 2.5rem 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 14px;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: var(--cream);
}

.footer-copy {
    font-size: 11px;
    color: rgba(245,237,224,0.35);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

    .footer-links a {
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(245,237,224,0.4);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }


@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-right {
        display: none;
    }

    .section, .section-sm {
        padding: 4rem 1.5rem;
    }

    .what-grid, .about-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-badge {
        bottom: 1rem;
        right: 1rem;
    }

    .help-grid, .test-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

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

    footer {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .quote-band {
        padding: 4rem 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}
