:root {
    --bg: #f7f8ff;
    --surface: #ffffff;
    --surface-soft: #f3f5ff;
    --ink: #181b4b;
    --ink-soft: #67708f;
    --navy: #14174a;
    --navy-2: #22276d;
    --pink: #ff4f87;
    --pink-deep: #f33373;
    --pink-soft: #ffd7e4;
    --blue: #4e6bff;
    --blue-soft: #dfe5ff;
    --yellow: #ffcf53;
    --mint: #35c7a5;
    --line: rgba(24, 27, 75, 0.1);
    --shadow: 0 18px 48px rgba(45, 57, 121, 0.12);
    --shadow-lg: 0 28px 72px rgba(27, 37, 104, 0.16);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
    --heading-font: "Trebuchet MS", "Aptos Display", "Segoe UI", sans-serif;
    --body-font: "Segoe UI", "Aptos", "Helvetica Neue", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 79, 135, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(78, 107, 255, 0.1), transparent 20%),
        linear-gradient(180deg, #fbfbff 0%, #f4f6ff 42%, #ffffff 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
    opacity: 0.42;
    z-index: 0;
}

body::before {
    top: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(255, 79, 135, 0.24) 0%, transparent 72%);
}

body::after {
    right: -120px;
    top: 380px;
    background: radial-gradient(circle, rgba(78, 107, 255, 0.2) 0%, transparent 72%);
}

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

.site-shell {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 0 24px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 1.14rem;
    color: var(--navy);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 10px 18px rgba(255, 79, 135, 0.12);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.brand-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.brand-text {
    line-height: 1 !important;
}

.brand-subtext {
    font-size: 10px !important;
    font-weight: 400 !important;
    text-transform: lowercase !important;
    color: var(--pink) !important;
    line-height: 1 !important;
    margin-top: 2px !important;
    letter-spacing: 0.05em !important;
    display: block !important;
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-nav {
    display: inline-flex;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    background: var(--surface-soft);
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
}

.site-nav a {
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.8);
}

.site-nav a.is-active {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 2px 8px rgba(45, 57, 121, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lang-switch {
    min-width: 46px;
    min-height: 46px;
    color: var(--navy);
    background: #f3f5ff;
}

.button {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.95rem;
}

.lang-switch:hover,
.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--pink-deep));
    box-shadow: 0 16px 28px rgba(255, 79, 135, 0.26);
}

.button-secondary {
    color: var(--navy);
    background: #fff;
    border: 1px solid rgba(24, 27, 75, 0.1);
    box-shadow: 0 12px 26px rgba(45, 57, 121, 0.08);
}

.hero {
    padding: 34px 0 44px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 24px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.service-card,
.pricing-card,
.contact-card,
.form-card,
.legal-card,
.quote-panel,
.cta-band-inner,
.split-layout,
.supplements,
.footer-grid {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-copy {
    padding: 48px 46px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 26%),
        radial-gradient(circle at left bottom, rgba(78, 107, 255, 0.22), transparent 28%),
        linear-gradient(140deg, #15184b 0%, #1f2465 62%, #2a3182 100%);
}

.hero-copy::before,
.hero-copy::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    opacity: 0.9;
}

.hero-copy::before {
    width: 220px;
    height: 220px;
    right: -70px;
    top: -60px;
    background: radial-gradient(circle, rgba(255, 79, 135, 0.32) 0%, transparent 68%);
}

.hero-copy::after {
    width: 180px;
    height: 180px;
    left: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 207, 83, 0.24) 0%, transparent 68%);
}

.hero-panel {
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 79, 135, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
    border: 1px solid rgba(24, 27, 75, 0.06);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 120px;
    height: 120px;
    border-radius: 0 0 100% 0;
    background: linear-gradient(135deg, rgba(78, 107, 255, 0.14), transparent);
}

.hero-media {
    margin: 0 0 18px;
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    background: #eef1ff;
    border: 1px solid rgba(24, 27, 75, 0.06);
    box-shadow: 0 16px 28px rgba(45, 57, 121, 0.16);
    aspect-ratio: 16 / 9;
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
}

.hero h1,
.content-section h2,
.cta-band h2 {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 4.8vw, 4.6rem);
    line-height: 0.94;
}

.content-section h2,
.cta-band h2 {
    max-width: 16ch;
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    box-shadow: 0 0 0 6px rgba(255, 79, 135, 0.08);
}

.hero-copy .eyebrow {
    color: #ffd6e2;
}

.hero-copy .eyebrow::before {
    background: linear-gradient(135deg, #fff, #ffd6e2);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.hero-text,
.section-text,
.card p,
.service-card p,
.pricing-card p,
.split-copy p,
.quote-panel p,
.contact-card p,
.form-card p,
.legal-card p {
    line-height: 1.75;
    font-size: 1.02rem;
}

.hero-text {
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.82);
}

.section-text,
.card p,
.service-card p,
.pricing-card p,
.split-copy p,
.contact-card p,
.form-card p,
.legal-card p {
    color: var(--ink-soft);
}

.hero-actions,
.inline-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    gap: 12px;
}

.stat-card {
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card:nth-child(1) {
    border-color: rgba(255, 79, 135, 0.18);
}

.stat-card:nth-child(2) {
    border-color: rgba(78, 107, 255, 0.18);
}

.stat-card:nth-child(3) {
    border-color: rgba(255, 207, 83, 0.24);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--heading-font);
    font-size: 1.7rem;
    color: var(--navy);
}

.stat-card span {
    color: var(--ink-soft);
}

.panel-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
    border: 1px solid var(--line);
}

.panel-card h2 {
    max-width: none;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.panel-list,
.check-list,
.pricing-card ul,
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.panel-list li,
.check-list li,
.pricing-card li {
    position: relative;
    padding-left: 28px;
    margin-top: 10px;
    line-height: 1.4;
    font-size: 0.92rem;
}

.panel-list li::before,
.check-list li::before,
.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    box-shadow: 0 0 0 6px rgba(255, 79, 135, 0.08);
}

.content-section {
    position: relative;
    padding: 38px 0 18px;
}

.content-section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    inset: 18px 0 0;
    background: linear-gradient(180deg, rgba(20, 23, 74, 0.98), rgba(31, 36, 101, 0.96));
    z-index: -1;
}

.content-section:nth-of-type(even) .container>.eyebrow,
.content-section:nth-of-type(even) .container>h2,
.content-section:nth-of-type(even) .container>.section-text {
    color: #fff;
}

.content-section:nth-of-type(even) .container>.eyebrow {
    color: #ffb4cb;
}

.content-section:nth-of-type(even) .section-text {
    color: rgba(255, 255, 255, 0.74);
}

.content-section:nth-of-type(even) .split-layout,
.content-section:nth-of-type(even) .quote-panel,
.content-section:nth-of-type(even) .card,
.content-section:nth-of-type(even) .service-card,
.content-section:nth-of-type(even) .pricing-card,
.content-section:nth-of-type(even) .supplements,
.content-section:nth-of-type(even) .legal-card {
    box-shadow: 0 24px 52px rgba(9, 12, 42, 0.26);
}

.content-section .container>.eyebrow,
.content-section .container>h2,
.content-section .container>.section-text {
    max-width: 760px;
}

.card-grid,
.service-grid,
.pricing-grid,
.legal-grid {
    display: grid;
    gap: 22px;
    margin-top: 24px;
}

.card-grid,
.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.service-card,
.pricing-card,
.contact-card,
.form-card,
.legal-card,
.quote-panel {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
    border: 1px solid rgba(24, 27, 75, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card::before,
.service-card::before,
.pricing-card::before,
.contact-card::before,
.form-card::before,
.legal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
}

.card::after,
.service-card::after,
.legal-card::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 24px;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 79, 135, 0.12), rgba(78, 107, 255, 0.12));
}

.card:hover,
.service-card:hover,
.pricing-card:hover,
.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(45, 57, 121, 0.12);
}

.card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-more {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.card:hover .card-more {
    opacity: 1;
    color: var(--pink);
    transform: translateX(6px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.metric-card {
    padding: 40px 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(24, 27, 75, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(45, 57, 121, 0.05);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 30px 60px rgba(45, 57, 121, 0.1);
}



main {
    padding-top: 80px;
}

.metric-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 16px;
    font-family: var(--heading-font);
    font-weight: 800;
}

.metric-number {
    font-size: 3.8rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--navy), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-suffix {
    font-size: 2rem;
    color: var(--pink);
}

.metric-card h4 {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.metric-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .metric-card {
        padding: 32px 24px;
    }
}

.card h3,
.service-card h3,
.pricing-card h3,
.contact-card h3,
.legal-card h3 {
    margin: 0 0 12px;
    font-family: var(--heading-font);
    font-size: 1.22rem;
    line-height: 1.12;
    color: var(--navy);
}

/* INTERNAL CATEGORIES IN CARDS */
.pricing-card-cat {
    margin: 12px 0 4px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(24, 27, 75, 0.06);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pink);
}

.pricing-card ul.categorized-features {
    margin-bottom: 12px;
}

.pricing-card li.feat-included::before {
    background: linear-gradient(135deg, var(--mint), #50e3c2);
}

.pricing-card li.feat-extra::before {
    background: linear-gradient(135deg, var(--yellow), #ffd700);
}

.pricing-card li .feat-val {
    display: block;
    margin-top: 2px;
    font-size: 0.85em;
    font-weight: 700;
    color: var(--ink-soft);
}

.pricing-card-cumulative {
    background: rgba(255, 79, 135, 0.08);
    color: var(--pink);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    border-left: 3px solid var(--pink);
}

.pricing-card.featured .pricing-card-cumulative {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-left-color: var(--pink);
}

.split-layout,
.contact-layout,
.footer-grid,
.cta-band-inner {
    display: grid;
    gap: 24px;
}

.split-layout {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    padding: 30px;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
    border: 1px solid rgba(24, 27, 75, 0.08);
}

.quote-panel {
    margin-top: 24px;
    padding: 34px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 79, 135, 0.22), transparent 38%),
        linear-gradient(145deg, #15184b 0%, #242a73 100%);
}

.quote-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.pricing-card {
    background: linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, #1e245a 100%);
    color: #fff;
    border-color: var(--pink);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 32px 64px rgba(24, 27, 75, 0.25);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--pink);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0 0 0 12px;
    z-index: 10;
    box-shadow: -4px 4px 12px rgba(255, 79, 135, 0.2);
}

.pricing-card.featured .pricing-badge {
    background: #fff;
    color: var(--pink);
}

.pricing-card.featured h3,
.pricing-card.featured strong {
    color: #fff;
}

.pricing-card.featured p,
.pricing-card.featured li {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-head strong {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--pink);
    letter-spacing: -0.03em;
    margin: 4px 0;
}

.pricing-card p {
    font-size: 0.96rem;
    margin-bottom: 24px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.4;
    color: var(--navy);
}

.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 79, 135, 0.1);
}

.pricing-card.featured li::before {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.pricing-footer {
    margin-top: auto;
    padding-top: 32px;
}

.pricing-footer .button {
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 14px 24px;
}

.supplements {
    margin-top: 40px;
    padding: 48px;
    background: linear-gradient(135deg, #15184b 0%, #242a73 100%);
    border: 0;
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: 0 32px 64px rgba(24, 27, 75, 0.2);
}

.supplements h3 {
    margin: 0 0 32px;
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.supplement-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 48px;
}

.supplement-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.supplement-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.supplement-item strong {
    color: #fff;
    font-size: 1.05rem;
}


.contact-layout {
    grid-template-columns: 0.88fr 1.12fr;
    margin-top: 24px;
}

.contact-card {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 79, 135, 0.24), transparent 38%),
        radial-gradient(circle at bottom left, rgba(78, 107, 255, 0.2), transparent 34%),
        linear-gradient(145deg, #15184b 0%, #262d76 100%);
}

.contact-card h3 {
    color: #fff;
}

.contact-card p,
.contact-card .contact-points p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-points p {
    margin: 0 0 18px;
}

.contact-points strong {
    color: #fff;
}

.form-card {
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
}

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

.form-grid label {
    display: grid;
    gap: 8px;
}

.form-grid span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(24, 27, 75, 0.1);
    border-radius: 16px;
    background: #fff;
    color: var(--navy);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: rgba(255, 79, 135, 0.48);
    box-shadow: 0 0 0 4px rgba(255, 79, 135, 0.12);
}

.full-width {
    grid-column: 1 / -1;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.consent {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 22px;
}

.consent input[type="checkbox"] {
    width: auto !important;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.consent span {
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--navy);
}

.consent input {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    flex-shrink: 0;
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
}

.form-alert.success {
    color: var(--success);
    background: rgba(53, 199, 165, 0.12);
}

.form-alert.error {
    color: var(--error);
    background: rgba(243, 51, 115, 0.1);
}

.cta-band {
    padding: 28px 0 60px;
}

.cta-band-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 34px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 79, 135, 0.24), transparent 36%),
        linear-gradient(145deg, #15184b 0%, #24296e 100%);
}

.cta-band h2 {
    color: #fff;
}

.cta-band .eyebrow {
    color: #ffb7cd;
}

.cta-band .eyebrow::before {
    background: linear-gradient(135deg, #fff, #ffb7cd);
}

.site-footer {
    padding: 0;
    color: rgba(255, 255, 255, 0.76);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(255, 79, 135, 0.18), transparent 36%),
        linear-gradient(180deg, #14174a 0%, #10123d 100%);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    padding: 40px 24px;
    border-radius: 0;
    box-shadow: none;
}

.site-footer .brand-text,
.site-footer h3 {
    color: #fff;
}

.site-footer h3 {
    margin: 0 0 10px;
    font-family: var(--heading-font);
    font-size: 1rem;
}

.site-footer ul,
.site-footer p {
    margin: 0;
}

.site-footer li+li,
.site-footer p+p {
    margin-top: 10px;
}

.site-footer a:hover {
    color: #ffbfd2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy,
.hero-panel,
.content-section .container>*,
.cta-band-inner,
.footer-grid {
    animation: fadeUp 0.6s ease both;
}

.hero-panel {
    animation-delay: 0.08s;
}

.menu-toggle {
    display: none;
}

/* ===== RESPONSIVE DESIGN & BREAKPOINTS ===== */

/* Desktop Refinements (1200px) */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {

    .hero-grid,
    .split-layout,
    .contact-layout,
    .cta-band-inner {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-panel {
        padding: 40px;
    }

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

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

/* Tablet Portrait & Mobile (768px) */
@media (max-width: 768px) {
    .site-header {
        position: fixed;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid var(--line);
    }

    .header-inner {
        padding: 0 16px;
        min-height: 60px;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        padding: 0;
        background: var(--surface-soft);
        border: none;
        border-radius: 12px;
        cursor: pointer;
        z-index: 2001;
        transition: background 0.2s ease;
    }

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 0 auto;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        background: #ffffff !important;
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 0;
        visibility: hidden;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .site-nav {
        transform: translateX(0);
        visibility: visible;
    }

    .site-nav a {
        font-size: 1.5rem;
        padding: 16px;
        text-align: center;
        color: var(--navy);
    }

    .header-actions .button,
    .header-actions .lang-switch {
        display: none;
    }

    .site-nav::after {
        content: "";
        display: block;
        margin-top: 30px;
    }

    .card-grid,
    .service-grid,
    .pricing-grid,
    .form-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero {
        padding: 90px 0 30px;
    }

    .hero-media {
        aspect-ratio: 1 / 1;
    }

    .trust-bar {
        flex-direction: column;
        gap: 12px;
    }

    .trust-card {
        width: 100%;
        max-width: none;
        padding: 18px;
    }

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

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

    .home-hero {
        padding: 120px 0 40px;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .container {
        width: calc(100% - 24px);
    }

    .hero-copy,
    .hero-panel,
    .card,
    .service-card,
    .pricing-card,
    .contact-card,
    .form-card,
    .legal-card,
    .quote-panel,
    .supplements,
    .split-layout,
    .cta-band-inner,
    .footer-grid {
        padding: 24px 18px;
    }

    .metric-number {
        font-size: 2.8rem;
    }

    .metric-suffix {
        font-size: 1.4rem;
    }
}

/* ===== HOMEPAGE HERO ===== */

.home-hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        var(--hero-bg) center center / cover no-repeat;
    padding: 120px 0 60px;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 79, 135, 0.22), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(78, 107, 255, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(20, 23, 74, 0.82) 0%, rgba(20, 23, 74, 0.78) 50%, rgba(15, 17, 58, 0.86) 100%);
    z-index: 1;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeUp 0.7s ease both;
}

.home-hero .eyebrow {
    justify-content: center;
    color: #ffd6e2;
    margin-bottom: 24px;
}

.home-hero .eyebrow::before {
    background: linear-gradient(135deg, #fff, #ffd6e2);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.home-hero h1 {
    margin: 0 auto;
    max-width: 16ch;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: clamp(2.8rem, 5.6vw, 5.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
}

.home-hero h1 .accent {
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-text {
    max-width: 52ch;
    margin: 22px auto 0;
    font-size: 1.14rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.home-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.button-lg {
    min-height: 58px;
    padding: 0 32px;
    font-size: 1.05rem;
}

/* ===== TRUST BAR ===== */

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 48px;
}

.trust-card {
    flex: 0 1 220px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: left;
    animation: trustFadeUp 0.5s ease both;
}

.trust-card strong {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 6px;
}

.trust-card span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.68);
}

@keyframes trustFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PROCESS STEPS ===== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 32px;
    counter-reset: step-counter;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 24px 20px 28px;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -1px;
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
    opacity: 0.3;
    transform: translateX(50%);
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, var(--pink), var(--blue));
    box-shadow:
        0 14px 28px rgba(255, 79, 135, 0.22),
        0 0 0 6px rgba(255, 79, 135, 0.08);
}

.process-step h3 {
    margin: 0 0 8px;
    font-family: var(--heading-font);
    font-size: 1.12rem;
    color: var(--navy);
}

.process-step p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

.content-section:nth-of-type(even) .process-step h3 {
    color: #fff;
}

.content-section:nth-of-type(even) .process-step p {
    color: rgba(255, 255, 255, 0.74);
}

.content-video-section {
    padding: 60px 0;
    text-align: center;
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-container video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.triangle-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--pink);
    filter: drop-shadow(0 12px 24px rgba(255, 79, 135, 0.35));
    animation: pulseTriangle 2.4s infinite;
}

.video-play-btn img {
    display: none;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-container.is-playing .video-play-btn,
.video-container.is-playing .video-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes pulseTriangle {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 12px 24px rgba(255, 79, 135, 0.35));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 12px 36px rgba(255, 79, 135, 0.5));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 12px 24px rgba(255, 79, 135, 0.35));
    }
}

/* ===== MARQUEE CLIENTS ===== */

.content-section.content-marquee-clients {
    padding: 22px 0 0;
    overflow: hidden;
}

.content-section.content-marquee-clients .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.marquee-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(45, 57, 121, 0.06);
}

.marquee-item::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Blog Module --- */
.post-single {
    max-width: 800px;
    margin: 0 auto;
}

.post-rich-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brand-dark);
}

.post-rich-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-rich-content p {
    margin-bottom: 1.5rem;
}

.post-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card:hover .card-more {
    transform: translateX(8px);
}

.card-more {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    color: var(--brand-pink);
    transition: transform 0.2s;
}

/* SUPPLEMENTS / SUR MESURE */
.supplements-section {
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.supplements-section h3 {
    color: #fff !important;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.supplement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.supplement-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.supplement-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.supplement-value {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.supplement-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: transform 0.2s ease;
}

.supplement-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink);
}

.supplement-label {
    font-weight: 600;
    color: var(--navy);
}

.supplement-value {
    font-weight: 800;
    color: var(--pink);
}