/* ============================================
   CORDANO FLAVIO — Medical & Health Website
   Bold Editorial | Plum + Amber Palette
   ============================================ */

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

:root {
    --plum-900: #2D0A28;
    --plum-800: #4A1942;
    --plum-700: #6B2158;
    --plum-600: #832A6D;
    --plum-500: #9D3580;
    --plum-100: #F5E6F0;
    --plum-50: #FDF3F8;

    --amber-600: #B8860B;
    --amber-500: #D4A017;
    --amber-400: #E8B828;
    --amber-100: #FDF6E3;
    --amber-50: #FFFDF5;

    --neutral-900: #1A1A1A;
    --neutral-700: #3D3D3D;
    --neutral-500: #6B6B6B;
    --neutral-300: #B8B8B8;
    --neutral-100: #F2F2F2;
    --neutral-50: #FAFAFA;
    --white: #FFFFFF;

    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    color: var(--neutral-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--plum-900);
    padding: 8px 0;
    overflow: hidden;
}

.top-bar__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--plum-100);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.top-bar__text--right {
    text-align: right;
}

/* --- Navigation --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--plum-100);
    transition: box-shadow 0.3s var(--ease-smooth);
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(74, 25, 66, 0.08);
}

.nav__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--plum-800);
    transition: opacity 0.2s;
}

.nav__logo:hover {
    opacity: 0.8;
}

.nav__logo-icon {
    color: var(--plum-700);
}

.nav__logo-dot {
    color: var(--amber-500);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

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

.nav__link--cta {
    background: var(--plum-800);
    color: var(--white) !important;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s;
}

.nav__link--cta:hover {
    background: var(--plum-700);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--plum-800);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Section Shared --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--amber-500);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum-900);
    margin-bottom: 20px;
}

.section-title--accent {
    color: var(--plum-600);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum-800);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(74, 25, 66, 0.25);
}

.btn--primary:hover {
    background: var(--plum-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 25, 66, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--plum-800);
    border: 1.5px solid var(--plum-200, #E8C8D8);
}

.btn--ghost:hover {
    border-color: var(--plum-600);
    background: var(--plum-50);
}

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

/* --- HERO --- */
.hero {
    background: var(--white);
    padding: 60px 0 0;
    overflow: hidden;
}

.hero__grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: 28px;
}

.hero__eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--amber-500);
}

.hero__headline {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--plum-900);
    margin-bottom: 24px;
}

.hero__headline--accent {
    color: var(--plum-600);
    font-style: italic;
    font-weight: 500;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--neutral-500);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__trust-num {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--plum-800);
    line-height: 1;
}

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

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: var(--plum-100);
}

/* Hero Visual */
.hero__visual {
    position: relative;
}

.hero__img-stack {
    position: relative;
    height: 600px;
}

.hero__img {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(74, 25, 66, 0.15);
}

.hero__img--main {
    width: 360px;
    height: 460px;
    top: 0;
    right: 0;
}

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

.hero__img--accent {
    width: 240px;
    height: 180px;
    bottom: 60px;
    left: 0;
    z-index: 2;
}

.hero__img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img--stat {
    width: 160px;
    height: 120px;
    bottom: 0;
    right: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__stat-badge {
    background: var(--plum-800);
    color: var(--white);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(74, 25, 66, 0.3);
}

.hero__stat-badge-num {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-400);
    line-height: 1;
    margin-bottom: 6px;
}

.hero__stat-badge-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.85;
    line-height: 1.4;
}

/* Hero Divider */
.hero__divider {
    background: var(--plum-50);
    border-top: 1px solid var(--plum-100);
    border-bottom: 1px solid var(--plum-100);
    padding: 16px 0;
    text-align: center;
}

.hero__divider-text {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--plum-600);
    letter-spacing: 0.04em;
}

/* --- SERVICES --- */
.services {
    padding: 100px 0;
    background: var(--neutral-50);
}

.services__header {
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid var(--neutral-100);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--plum-800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

.service-card:hover {
    border-color: var(--plum-100);
    box-shadow: 0 12px 40px rgba(74, 25, 66, 0.08);
    transform: translateY(-4px);
}

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

.service-card--featured {
    grid-column: span 1;
    background: var(--plum-800);
    border-color: var(--plum-700);
}

.service-card--featured .service-card__icon {
    color: var(--amber-400);
}

.service-card--featured .service-card__title {
    color: var(--white);
}

.service-card--featured .service-card__desc {
    color: var(--plum-100);
}

.service-card--featured .service-card__tag {
    background: rgba(212, 160, 23, 0.15);
    color: var(--amber-400);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--plum-50);
    color: var(--plum-700);
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--neutral-500);
    margin-bottom: 20px;
}

.service-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-700);
    background: var(--plum-100);
    padding: 4px 10px;
    border-radius: 6px;
}

/* --- ABOUT --- */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(74, 25, 66, 0.12);
}

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

.about__img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(74, 25, 66, 0.15);
    border: 4px solid var(--white);
}

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

.about__accent-block {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--amber-500);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(184, 134, 11, 0.3);
    z-index: 2;
}

.about__accent-num {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.about__accent-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about__content {
    max-width: 520px;
}

.about__body {
    margin-bottom: 32px;
}

.about__body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-500);
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.about__highlight svg {
    color: var(--amber-500);
    flex-shrink: 0;
}

/* --- APPROACH --- */
.approach {
    padding: 100px 0;
    background: var(--plum-900);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.approach__inner {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.approach__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 24px;
}

.approach__headline {
    font-family: var(--serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.approach__headline--accent {
    color: var(--amber-400);
    font-style: italic;
    font-weight: 500;
}

.approach__body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--plum-100);
    max-width: 680px;
    margin: 0 auto 60px;
}

.approach__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

.approach__pillar {
    position: relative;
}

.approach__pillar-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 160, 23, 0.2);
    line-height: 1;
    margin-bottom: 8px;
}

.approach__pillar-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.approach__pillar-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--plum-100);
    opacity: 0.8;
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--neutral-100);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--plum-900);
    gap: 16px;
    transition: color 0.2s;
}

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

.faq__question[aria-expanded="true"] .faq__toggle svg {
    transform: rotate(45deg);
}

.faq__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--plum-50);
    color: var(--plum-700);
    transition: transform 0.3s var(--ease-out), background 0.2s;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq__answer.open {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq__answer p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--neutral-500);
}

.faq__answer a {
    color: var(--plum-600);
    text-decoration: underline;
    text-decoration-color: var(--plum-100);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}

.faq__answer a:hover {
    text-decoration-color: var(--plum-400);
}

/* --- CONTACT --- */
.contact {
    padding: 100px 0;
    background: var(--plum-50);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__info {
    max-width: 480px;
}

.contact__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-500);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--plum-800);
    color: var(--amber-400);
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 2px;
}

.contact__detail-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--plum-800);
    line-height: 1.5;
}

.contact__detail-value a {
    transition: color 0.2s;
}

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

/* Form */
.contact__form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(74, 25, 66, 0.08);
    border: 1px solid var(--plum-100);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neutral-700);
    letter-spacing: 0.02em;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
    font-family: var(--sans);
    font-size: 0.9rem;
    padding: 12px 16px;
    border: 1.5px solid var(--neutral-100);
    border-radius: 10px;
    background: var(--neutral-50);
    color: var(--neutral-900);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
    border-color: var(--plum-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(157, 53, 128, 0.1);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: var(--neutral-300);
}

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

.contact__success {
    text-align: center;
    padding: 40px 20px;
}

.contact__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--plum-50);
    color: var(--plum-700);
}

.contact__success-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 8px;
}

.contact__success-text {
    font-size: 0.95rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* --- FOOTER --- */
.footer {
    background: var(--plum-900);
    color: var(--plum-100);
    padding: 60px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(245, 230, 240, 0.1);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__logo-dot {
    color: var(--amber-400);
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--plum-100);
    opacity: 0.7;
    line-height: 1.6;
}

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

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--plum-100);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer__contact-item a {
    transition: color 0.2s, opacity 0.2s;
}

.footer__contact-item a:hover {
    color: var(--amber-400);
    opacity: 1;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: var(--plum-100);
    opacity: 0.5;
}

.footer__disclaimer {
    max-width: 400px;
    text-align: right;
    line-height: 1.5;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 32px;
    }

    .hero__img-stack {
        height: 480px;
    }

    .hero__img--main {
        width: 280px;
        height: 380px;
    }

    .hero__img--accent {
        width: 180px;
        height: 140px;
    }

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

    .approach__pillars {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--plum-100);
        box-shadow: 0 12px 32px rgba(74, 25, 66, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s var(--ease-out), opacity 0.3s;
        pointer-events: none;
        z-index: 99;
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding: 40px 0 0;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        padding: 16px 24px 40px;
    }

    .hero__visual {
        display: none;
    }

    .hero__cta-group {
        flex-direction: column;
    }

    .hero__cta-group .btn {
        justify-content: center;
    }

    .hero__trust {
        gap: 16px;
    }

    .services {
        padding: 60px 0;
    }

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

    .about {
        padding: 60px 0;
    }

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

    .about__visual {
        order: -1;
    }

    .about__img-secondary {
        right: -16px;
        bottom: -20px;
    }

    .about__accent-block {
        top: -12px;
        left: -12px;
    }

    .approach {
        padding: 60px 0;
    }

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

    .faq {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__form-wrap {
        padding: 28px;
    }

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

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

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer__disclaimer {
        text-align: center;
        max-width: 100%;
    }
}

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

    .hero__headline {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .contact__form-wrap {
        padding: 20px;
    }
}
