@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-800.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/cabinet-grotesk/CabinetGrotesk-400.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/cabinet-grotesk/CabinetGrotesk-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/cabinet-grotesk/CabinetGrotesk-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/cabinet-grotesk/CabinetGrotesk-800.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-gold: #0080ba;
    --primary-gold-hover: #1a98d2;
    --dark-bg: #000000;
    --text-light: #ffffff;
    --text-muted: #9bb6c9;
    --font-heading: 'Cabinet Grotesk', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --hero-fixed-height: 800px;
    --header-height: 90px;
    --landing-ink: #28476e;
    --landing-muted: #4f6581;
    --landing-accent: #487fb1;
    --landing-highlight: #1dd5b1;
    --landing-surface: #eef5f9;
    --landing-line: rgba(40, 71, 110, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #f2f6fa 0%, #fcfeff 24%, #f2f6fa 100%);
    color: var(--landing-ink);
    line-height: 1.6;
    overflow-x: hidden;
}

body.image-viewer-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

.text-gold {
    color: var(--primary-gold);
}

.center {
    text-align: center;
}

.container {
    width: min(90vw, 1480px);
    max-width: 1480px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.m-t-40 {
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--landing-highlight), #67e4ca);
    color: #17364e;
    box-shadow: 0 18px 36px rgba(29, 213, 177, 0.24);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #16b898, var(--landing-highlight));
    box-shadow: 0 22px 40px rgba(29, 213, 177, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: #f8fffe;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-large {
    min-height: 56px;
    padding: 16px 32px;
}

.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.82);
    background: #005482;
    color: rgba(245, 255, 252, 0.88);
    font-size: 0.8rem;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    min-height: 42px;
}

.top-bar-link,
.top-bar-copy {
    color: rgba(245, 255, 252, 0.88);
}

.top-bar-copy {
    margin-left: 18px;
}

.top-bar-link i {
    margin-right: 6px;
    color: var(--landing-highlight);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(50, 190, 235, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 245, 251, 0.86));
    box-shadow: 0 14px 34px rgba(0, 69, 112, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-height);
}

.logo img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 190px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(63%) saturate(1583%) hue-rotate(173deg) brightness(93%) contrast(104%);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-background,
.hero-v2-background,
.hero-grid-lines {
    position: absolute;
    inset: 0;
}

.hero-grid-lines {
    background-image:
        linear-gradient(rgba(40, 71, 110, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 71, 110, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 88%);
    opacity: 0.44;
}

.landing-hero {
    min-height: var(--hero-fixed-height);
    background: linear-gradient(180deg, #edf4f8 0%, #f8fbfd 100%);
}

.hero-stage {
    position: relative;
    z-index: 2;
    min-height: var(--hero-fixed-height) !important;
    padding-top: 14px;
    padding-bottom: 0;
}

.landing-hero .hero-stage::after {
    content: "";
    position: absolute;
    inset: 18px 42px auto auto;
    width: min(35%, 448px);
    height: calc(100% - 52px);
    margin: 26px;
    border-left: 1px solid rgba(40, 71, 110, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02)),
        url("../assets/images/transplantes/transplante-capilar-feminino/01-Transplante-Feminino-1.jpg") center 24% / cover no-repeat;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 100%;
    margin-left: clamp(18px, 2.2vw, 34px);
    padding: clamp(44px, 5vw, 72px) clamp(4px, 0.7vw, 10px) clamp(44px, 5vw, 72px) 0;
}

.hero-slide-eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--landing-accent);
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-slide-title {
    max-width: 10ch;
    color: var(--landing-ink);
    font-size: clamp(2.5rem, 4.1vw, 4.5rem);
    line-height: 0.95;
    font-weight: 600;
}

.hero-slide-description {
    max-width: 52ch;
    margin-top: 22px;
    color: #444444;
    font-size: clamp(1.02rem, 1.12vw, 1.12rem);
    line-height: 1.72;
}

.hero-slide-actions {
    margin-top: 34px !important;
}

.section-dark,
.brand-lead-section,
.landing-clinic,
.landing-form {
    padding: 112px 0;
}

.section-header {
    display: grid;
    justify-items: center;
    gap: 18px;
    margin-bottom: 56px;
}

.section-subtitle,
.section-kicker,
.contact-proof-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid rgba(72, 127, 177, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(72, 127, 177, 0.08), rgba(255, 255, 255, 0.98));
    color: var(--landing-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.section-title,
.brand-lead-title,
.pioneer-card-copy .section-title {
    max-width: 15ch;
    color: var(--landing-ink);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.section-intro {
    position: relative;
    max-width: 52ch;
    padding-left: 22px;
    color: var(--landing-muted);
    line-height: 1.82;
}

.section-intro::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 0.7em;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--landing-highlight);
    box-shadow: 0 0 0 8px rgba(29, 213, 177, 0.2);
}

.glass-card,
.brand-lead-item,
.pioneer-card,
.testimonial-landing-card {
    border-radius: 8px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 69, 112, 0.08);
    padding: 30px;
    box-shadow: 0 18px 44px rgba(0, 69, 112, 0.08);
}

.landing-results {
    background: linear-gradient(180deg, #f3f8fb 0%, #fbfdff 100%);
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.result-card {
    position: relative;
    width: 100%;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid var(--landing-line);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 69, 112, 0.09);
}

.result-card-trigger {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.result-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0 !important;
    transition: transform 0.55s ease, filter 0.35s ease;
}

.result-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.03) contrast(1.02);
}

.result-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(8, 17, 31, 0.62);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.result-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: grid;
    gap: 4px;
    padding: 16px 14px 14px;
    background: linear-gradient(180deg, rgba(8, 17, 31, 0) 0%, rgba(8, 17, 31, 0.82) 48%, rgba(8, 17, 31, 0.94) 100%);
    color: #ffffff;
    text-align: left;
}

.result-card-overlay strong {
    font-size: 0.96rem;
    line-height: 1.2;
}

.result-card-overlay small {
    color: rgba(245, 251, 255, 0.8);
    font-size: 0.72rem;
    line-height: 1.45;
}

.result-card-overlay em {
    margin-top: 4px;
    color: #9beedc;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-brand {
    background:
        radial-gradient(circle at top right, rgba(72, 127, 177, 0.12), transparent 24%),
        linear-gradient(180deg, #f7fbfd 0%, #eef5f9 100%);
}

.brand-lead-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(24px, 3vw, 42px);
    width: min(100%, 90vw);
    margin-inline: auto;
    padding: clamp(28px, 3vw, 42px);
    border: 1px solid var(--landing-line);
    border-radius: 8px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.94));
    box-shadow: 0 24px 54px rgba(0, 69, 112, 0.09);
}

.brand-lead-copy {
    display: grid;
    gap: 18px;
    align-content: start;
    max-width: 540px;
    padding: 8px 0;
}

.brand-lead-cta {
    margin-top: 12px;
}

.brand-lead-cta .btn {
    width: 100%;
    max-width: 420px;
}

.brand-lead-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.brand-lead-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-content: start;
    min-height: 100%;
    padding: 18px 18px 18px 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: none;
}

.brand-lead-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(72, 127, 177, 0.14), rgba(40, 71, 110, 0.08));
    color: var(--landing-accent);
}

.brand-lead-item h3 {
    color: var(--landing-ink);
    font-size: 1.05rem;
    line-height: 1.28;
}

.landing-story {
    background:
        radial-gradient(circle at top left, rgba(72, 127, 177, 0.18), transparent 22%),
        radial-gradient(circle at bottom right, rgba(29, 213, 177, 0.14), transparent 28%),
        linear-gradient(135deg, #28476e 0%, #335b8b 58%, #487fb1 100%);
}

.landing-story .section-subtitle {
    color: #eef7ff;
    border-color: rgba(216, 244, 255, 0.18);
    background: rgba(216, 244, 255, 0.08);
}

.landing-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 3vw, 42px);
    align-items: start;
}

.landing-story-copy {
    display: grid;
    gap: 18px;
    align-content: start;
}

.landing-story-title {
    max-width: 13ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.landing-story-lead {
    max-width: 30ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.08rem, 1.35vw, 1.24rem);
    line-height: 1.72;
    font-weight: 500;
}

.landing-story-body {
    display: grid;
    gap: 14px;
    max-width: 54ch;
}

.landing-story-body p {
    color: rgba(238, 247, 255, 0.82);
    line-height: 1.82;
}

.landing-story-cta {
    width: 100%;
    max-width: 420px;
    margin-top: 8px;
}

.landing-story .sci-image {
    width: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(7, 22, 26, 0.22);
}

.landing-story-proof-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.landing-story-proof-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    box-shadow: 0 18px 36px rgba(7, 22, 26, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.landing-story-proof-value {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.1;
}

.landing-story-proof-card p {
    color: rgba(238, 247, 255, 0.82);
    line-height: 1.72;
}

.landing-services {
    background: linear-gradient(180deg, #f2f7fa 0%, #fbfdff 100%) !important;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 28px 26px;
    border: 1px solid var(--landing-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 249, 0.96));
}

.service-card::before {
    content: "";
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landing-accent), var(--landing-highlight));
}

.service-card .icon {
    margin-bottom: 8px;
    color: var(--landing-accent);
    font-size: 2.2rem;
}

.service-card h4 {
    color: var(--landing-ink);
    font-size: 1.25rem;
    line-height: 1.18;
}

.service-card p {
    color: var(--landing-muted);
    line-height: 1.75;
}

.landing-testimonials {
    background:
        radial-gradient(circle at top left, rgba(72, 127, 177, 0.18), transparent 22%),
        linear-gradient(135deg, #28476e 0%, #335b8b 100%) !important;
}

.landing-testimonials .section-title,
.landing-testimonials .section-intro {
    color: #ffffff !important;
}

.testimonial-landing-grid {
    gap: 18px;
}

.testimonial-landing-card {
    padding: 34px 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)) !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.testimonial-landing-card p {
    color: rgba(244, 251, 251, 0.88);
    font-size: 1.04rem;
    line-height: 1.85;
}

.testimonial-landing-card strong {
    color: #ffffff;
}

.landing-journey {
    background:
        radial-gradient(circle at top right, rgba(29, 213, 177, 0.16), transparent 20%),
        linear-gradient(135deg, #28476e 0%, #487fb1 100%);
}

.landing-journey .section-title {
    color: #ffffff;
}

.journey-step-card {
    min-height: 100%;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 251, 0.96));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.journey-step-number {
    color: var(--landing-accent) !important;
    opacity: 1 !important;
    line-height: 1;
}

.journey-step-card h3 {
    margin-top: 12px;
    color: var(--landing-ink);
}

.journey-step-card p {
    color: var(--landing-muted);
    line-height: 1.75;
}

.landing-clinic {
    background: linear-gradient(180deg, #fbfdff 0%, #eff5f9 100%) !important;
}

.pioneer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
}

.pioneer-card {
    overflow: hidden;
    border: 1px solid var(--landing-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 249, 0.96));
    box-shadow: 0 22px 48px rgba(40, 71, 110, 0.1);
}

.pioneer-card-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 3vw, 40px);
}

.pioneer-card-copy .section-intro {
    max-width: 44ch;
    margin: 0;
}

.pioneer-card-media {
    border-radius: 8px !important;
}

.pioneer-media {
    overflow: hidden;
}

.pioneer-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-form {
    background:
        radial-gradient(circle at top right, rgba(72, 127, 177, 0.08), transparent 18%),
        linear-gradient(180deg, #f2f7fa 0%, #eaf2f7 100%);
}

.contact-conversion-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 0;
    padding: 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, #28476e 0%, #487fb1 100%);
    box-shadow: 0 30px 64px rgba(4, 19, 31, 0.16);
}

.contact-proof-panel,
.contact-form-panel {
    padding: 34px;
    border-radius: 8px;
    box-shadow: none;
}

.contact-proof-panel {
    display: grid;
    gap: 22px;
    align-content: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(29, 213, 177, 0.16), transparent 30%),
        rgba(255, 255, 255, 0.03);
}

.contact-proof-panel h3 {
    margin: 0;
    color: #ffffff !important;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

.contact-proof-panel > p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.contact-proof-list {
    display: grid;
    gap: 16px;
}

.contact-proof-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-proof-item i {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #b6f3ff;
}

.contact-proof-item strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
}

.contact-proof-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.contact-form-panel {
    border: 1px solid rgba(0, 69, 112, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, var(--landing-surface) 100%);
}

.contact-conversion-form {
    display: grid;
    gap: 20px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-field {
    display: grid;
    gap: 10px;
}

.contact-field span {
    color: var(--landing-ink);
    font-size: 0.92rem;
    font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(0, 69, 112, 0.14);
    border-radius: 8px;
    background: #ffffff;
    color: var(--landing-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field select {
    appearance: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(93, 113, 121, 0.72);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: rgba(72, 127, 177, 0.68);
    box-shadow: 0 0 0 4px rgba(72, 127, 177, 0.12);
}

.contact-radio-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px !important;
}

.contact-radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(0, 69, 112, 0.14);
    border-radius: 8px;
    background: #ffffff;
    color: var(--landing-ink);
}

.contact-radio-option input {
    width: auto;
    accent-color: var(--landing-accent);
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 6px;
}

.main-footer {
    padding: 60px 0 24px;
}

.footer-v2,
.landing-footer {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 26%),
        radial-gradient(circle at bottom left, rgba(29, 213, 177, 0.1), transparent 30%),
        linear-gradient(135deg, #28476e 0%, #335b8b 42%, #487fb1 100%);
}

.footer-logo {
    display: block;
    width: auto;
    height: 52px;
    filter: none;
}

.image-viewer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-viewer.is-open {
    opacity: 1;
    visibility: visible;
}

.image-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 20, 32, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-viewer-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    width: min(1100px, 100%);
}

.image-viewer-figure {
    display: grid;
    gap: 16px;
}

.image-viewer-media {
    width: 100%;
    max-height: min(78vh, 840px);
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.image-viewer-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #ffffff;
}

.image-viewer-title {
    font-size: 1rem;
}

.image-viewer-counter {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
}

.image-viewer-close,
.image-viewer-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
}

.image-viewer-close:hover,
.image-viewer-nav:hover,
.image-viewer-close:focus-visible,
.image-viewer-nav:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.image-viewer-close {
    position: absolute;
    top: -18px;
    right: -18px;
}

.image-viewer-nav[hidden] {
    display: none;
}

.thank-you-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.thank-you-page main {
    flex: 1;
}

@media (max-width: 1024px) {
    .brand-lead-shell,
    .landing-story-layout,
    .pioneer-grid,
    .contact-conversion-shell {
        grid-template-columns: 1fr;
    }

    .brand-lead-highlights,
    .landing-story-proof-grid,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .results-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .glass-card.service-card[style*="grid-column: span 3;"] {
        grid-column: auto !important;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100%, calc(100% - 28px));
    }

    .top-bar-copy {
        display: none;
    }

    .landing-hero .hero-stage::after {
        position: relative;
        inset: auto;
        display: block;
        width: calc(100% - 28px);
        height: 280px;
        margin: 0 14px 14px;
        border-left: 0;
        border-top: 1px solid rgba(40, 71, 110, 0.08);
    }

    .hero-stage {
        min-height: auto !important;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-slide-content {
        width: auto;
        margin-left: 0;
        padding: 38px 28px 26px;
    }

    .hero-slide-title {
        max-width: 11ch;
        font-size: clamp(2.4rem, 11vw, 3.7rem);
        overflow-wrap: anywhere;
    }

    .section-dark,
    .brand-lead-section,
    .landing-clinic,
    .landing-form {
        padding: 84px 0;
    }

    .brand-lead-highlights,
    .landing-story-proof-grid,
    .grid-3,
    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .results-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .brand-lead-shell {
        width: 100%;
        padding: 20px 16px;
    }

    .brand-lead-cta .btn,
    .landing-story-cta {
        max-width: none;
    }

    .brand-lead-item {
        grid-template-columns: 48px 1fr;
    }

    .landing-story .sci-image {
        min-height: 360px;
    }

    .result-card img {
        aspect-ratio: 1 / 1.25;
    }

    .result-card-badge {
        top: 10px;
        left: 10px;
        padding: 6px 8px;
        font-size: 0.62rem;
    }

    .result-card-overlay {
        padding: 12px 10px 10px;
    }

    .result-card-overlay strong {
        font-size: 0.78rem;
    }

    .result-card-overlay small,
    .result-card-overlay em {
        font-size: 0.6rem;
    }

    .contact-proof-panel,
    .contact-form-panel {
        padding: 24px;
    }

    .image-viewer {
        padding: 20px 14px;
    }

    .image-viewer-dialog {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .image-viewer-close {
        top: 8px;
        right: 8px;
    }

    .image-viewer-nav {
        width: 46px;
        height: 46px;
    }

    .image-viewer-media {
        max-height: 68vh;
    }

    .image-viewer-caption {
        flex-direction: column;
        align-items: flex-start;
    }
}
