:root {
    --primary: #0d3c59;
    --primary-dark: #082d43;
    --primary-deep: #06283c;
    --accent: #c9a867;
    --accent-soft: #e6d2a2;
    --text: #173042;
    --muted: #6e7f8d;
    --bg: #f7f8fa;
    --white: #ffffff;
    --border: #dde4ea;
    --line: rgba(13, 60, 89, 0.08);
    --gold-line: rgba(201, 168, 103, 0.52);
    --shadow: 0 12px 30px rgba(13, 60, 89, 0.12);
    --shadow-soft: 0 18px 40px rgba(13, 60, 89, 0.08);
    --shadow-premium: 0 30px 70px rgba(7, 38, 58, 0.18);
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Saginaw';
    src: url('/fonts/saginawbold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 60, 89, 0.04);
}

.logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.logo img,
.footer-logo img {
    height: 80px;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: auto;
}

.main-nav a {
    font-weight: 500;
    color: #2d4657;
    position: relative;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

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

.desktop-services-label {
    flex-shrink: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-services-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.desktop-services-nav a {
    position: relative;
    color: #2d4657;
    font-weight: 500;
    transition: color 0.25s ease;
}

.desktop-services-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.desktop-services-nav a:hover {
    color: var(--primary);
}

.desktop-services-nav a:hover::after {
    width: 100%;
}
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.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);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: 0.25s ease;
}

.mobile-menu {
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    height: calc(100vh - 92px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 140;
    overflow-y: auto;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-inner {
    min-height: 100%;
    padding: 28px 16px 32px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav > a,
.mobile-dropdown-toggle {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(13,60,89,0.08);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 24px rgba(13,60,89,0.05);
}

.mobile-dropdown-toggle {
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    padding: 8px 0 2px 0;
}

.mobile-dropdown.is-open .mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 14px 18px;
    margin-left: 8px;
    border-left: 2px solid rgba(201,168,103,0.45);
    color: var(--text);
    font-weight: 600;
}

.mobile-dropdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-dropdown-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 12px;
}

.mobile-dropdown-menu a {
    text-decoration: none;
}

.mobile-menu-book-btn {
    margin-top: 12px;
    width: 100%;
}

body.menu-open {
    overflow: hidden;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-right,
.icon-left {
    height: 20px;
}

.icon-left {
    margin-right: 10px !important;
}

.icon-right {
    margin-left: 10px;
}

.phone-btn,
.primary-btn,
.secondary-btn,
.secondary-light-btn {
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phone-btn {
    padding: 12px 18px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
}

.primary-btn {
    padding: 14px 22px;
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.secondary-btn {
    padding: 14px 22px;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
}

.secondary-light-btn {
    padding: 14px 24px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
}

.phone-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.secondary-light-btn:hover,
.main-nav a:hover,
.blog-more-link:hover,
.service-card-link:hover,
.blog-card h3 a:hover,
.footer-links a:hover,
.footer-contact a:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.hero-section {
    padding: 44px 0 36px;
    position: relative;
    background: url('/images/hero_dog.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 36px;
    align-items: end;
}

.hero-content {
    padding: 24px 0;
}

.eyebrow,
.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow {
    position: relative;
    padding-bottom: 14px;
}

.eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 4px;
    background: var(--accent);
    border-radius: 999px;
}

.hero-content h1,
.page-hero h1,
.post-article h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 800;
}

.hero-script {
    font-family: 'Saginaw';
    font-size: 44px;
    color: var(--accent);
    margin: 12px 0 6px;
}

.hero-content p {
    max-width: 620px;
    font-size: 18px;
    color: #446072;
    margin: 18px 0 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image-wrap {
    position: relative;
    min-height: 420px;
}

.hero-badges {
    position: absolute;
    bottom: 24px;
    right: 0;
    width: min(620px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-badge {
    background: rgba(13, 60, 89, 0.84);
    color: #fff;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(201,255,255,0.06);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 18px 36px rgba(13, 60, 89, 0.16);
    backdrop-filter: blur(8px);
}

.hero-badge-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(193, 171, 121, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
}

.hero-badge-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.hero-badge span {
    color: rgba(255,255,255,0.84);
    font-size: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(13, 60, 89, 0.06);
    box-shadow: 0 10px 30px rgba(13, 60, 89, 0.04);
}

.header-shell {
    display: flex;
    flex-direction: column;
}

.header-top-row {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-bottom-row {
    position: relative;
    padding: 0 0 14px;
}

.header-bottom-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 140px;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(13,60,89,0) 0%,
        rgba(13,60,89,0.08) 12%,
        rgba(201,168,103,0.30) 50%,
        rgba(13,60,89,0.08) 88%,
        rgba(13,60,89,0) 100%
    );
}

.header-services {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 14px;
    padding-left: 140px;
}

.header-services-label {
    flex-shrink: 0;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.9;
}

.header-services-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: flex-end;
}

.header-services-nav a {
    position: relative;
    color: #567082;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-services-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.header-services-nav a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.header-services-nav a:hover::after {
    width: 100%;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading.center {
    text-align: center;
}

.section-heading-narrow {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.blog-preview-header h2,
.blog-heading h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
}

.section-description {
    margin: 16px auto 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
}

.section-divider {
    width: 120px;
    height: 1px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent 0%, var(--gold-line) 20%, var(--accent) 50%, var(--gold-line) 80%, transparent 100%);
}

.section-heading.left .section-divider {
    margin-left: 0;
    margin-right: 0;
}

.services-section,
.reviews-section,
.blog-preview-section,
.blog-list-section,
.post-section {
    padding: 96px 0;
    position: relative;
}

.reviews-grid,
.blog-grid {
    display: grid;
    gap: 24px;
}

.local-seo-section {
    padding: 78px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.local-seo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.local-seo-copy,
.local-seo-panel {
    border: 1px solid rgba(13, 60, 89, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.local-seo-copy {
    padding: 34px;
}

.local-seo-copy h2 {
    margin: 8px 0 16px;
    color: var(--primary);
    font-size: clamp(26px, 2.6vw, 38px);
    line-height: 1.16;
}

.local-seo-copy p {
    margin: 0;
    color: #42586a;
    font-size: 16px;
    line-height: 1.72;
}

.local-seo-copy p + p {
    margin-top: 14px;
}

.local-seo-panel {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.local-seo-panel h3 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.22;
}

.local-seo-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.local-seo-panel li {
    position: relative;
    padding-left: 24px;
    color: #42586a;
    font-weight: 600;
}

.local-seo-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.local-seo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* =========================
   SERVICES
========================= */
.services-section {
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 24%),
        linear-gradient(180deg, #fbfbfc 0%, #f6f8fa 100%);
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.18) 20%, rgba(201,168,103,0.46) 50%, rgba(201,168,103,0.18) 80%, transparent 100%);
}

.services-showcase {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 22px;
    align-items: stretch;
    margin-top: 30px;
}

.service-feature {
    position: relative;
    height: 520px;
    min-height: 520px;
    max-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background:
        radial-gradient(circle at top right, rgba(14, 74, 109, 0.35) 0%, transparent 35%),
        linear-gradient(145deg, #031521 0%, #06283c 42%, #0a3650 72%, #0d4566 100%);
}

.service-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6,40,60,0.04) 0%, rgba(6,40,60,0.22) 30%, rgba(6,40,60,0.78) 100%);
    z-index: 1;
}

.service-feature::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201,168,103,0.24);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

.service-feature-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 28px;
    color: #fff;
}

.service-feature-topline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-feature-topline::before {
    content: "";
    width: 48px;
    height: 1px;
    background: rgba(201,168,103,0.85);
}

.service-feature h3 {
    margin: 0 0 0;
    font-size: clamp(28px, 2.4vw, 36px);
    line-height: 1.05;
    color: #fff;
}

.service-feature p {
    margin: 0 0 18px;
    max-width: 520px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.55;
}

.service-feature-points {
    display: grid;
    gap: 9px;
    margin-bottom: 20px;
}

.service-feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.service-feature-point::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(201,168,103,0.12);
    flex-shrink: 0;
}

.service-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.service-feature .primary-btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.service-feature .secondary-light-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.services-side-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
    height: 520px;
}

.service-side-card {
    position: relative;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 0;
    min-height: 160px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-side-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(13,60,89,0.12);
    border-color: rgba(201,168,103,0.3);
}

.service-side-media {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #eef3f6;
    height: 100%;
    padding: 0;
}

.service-side-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,60,89,0.04) 0%, rgba(13,60,89,0.18) 100%);
    pointer-events: none;
}

.service-side-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-side-content {
    position: relative;
    padding: 10px 20px;
}

.service-side-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.service-card-link-top {
    flex-shrink: 0;
    font-size: 13px;
    white-space: nowrap;
    margin-top: 6px;
}
.service-side-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-dark);
    border: 1px solid rgba(201,168,103,0.26);
    box-shadow: 0 12px 28px rgba(13,60,89,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    margin-top: 4px;
}

.service-side-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.service-side-content h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 20px;
    line-height: 1.12;
    position: relative;
}

.service-side-content h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin-top: 10px;
    background: var(--accent);
    border-radius: 999px;
}

.service-side-content p {
    margin: 0 0 12px;
    color: #5c7181;
    font-size: 14px;
    line-height: 1.5;
}

.service-side-meta {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.service-side-meta span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(201,168,103,0.1);
    color: var(--primary);
    border: 1px solid rgba(201,168,103,0.18);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
}

.benefits-bar {
    margin-top: 22px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    color: var(--text);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.benefits-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.045) 50%, transparent 100%);
}

.benefits-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.4) 15%, rgba(201,168,103,0.9) 50%, rgba(201,168,103,0.4) 85%, transparent 100%);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-right: 1px solid rgba(13,60,89,0.08);
    position: relative;
    z-index: 1;
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-text strong,
.benefit-text span {
    display: block;
}

.benefit-text strong {
    font-size: 15px;
    color: var(--primary);
}

.benefit-text span {
    color: var(--muted);
    font-size: 13px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    object-fit: contain;
}

.stats-section {
    padding: 26px 0 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: start;
}

.stat-item {
    text-align: center;
    padding: 12px 16px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;
    color: var(--primary);
    font-size: 46px;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item span {
    color: var(--muted);
    font-weight: 500;
}

.reviews-section {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.reviews-summary {
    margin: 14px 0 0;
    color: var(--muted);
}

.reviews-grid {
    grid-template-columns: repeat(3, 1fr);
}

.review-card {
    position: relative;
    padding: 24px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(13,60,89,0.08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(13, 60, 89, 0.06);
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef3f6;
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user-meta h4 {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    line-height: 1.2;
}

.review-date {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.review-google-badge {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.review-google-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review-stars {
    color: #f3b300;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
}

.review-text {
    margin: 0;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-link {
    margin-top: auto;
    padding-top: 14px;
    font-weight: 700;
    color: var(--primary);
}

.reviews-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* =========================
   BLOG
========================= */
.blog-preview-section {
    background:
        radial-gradient(circle at top right, rgba(201,168,103,0.08), transparent 24%),
        linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.blog-preview-section::before {
    content: "";
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.14) 22%, rgba(201,168,103,0.42) 50%, rgba(201,168,103,0.14) 78%, transparent 100%);
}

.blog-preview-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.blog-heading {
    margin-bottom: 0;
    max-width: 760px;
}

.blog-heading h2 {
    max-width: 760px;
}

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

.blog-card-elegant {
    position: relative;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(201,168,103,0.16);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(13,60,89,0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card-elegant::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.24) 0%, transparent 28%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.04) 100%);
}

.blog-card-elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(13,60,89,0.1);
    border-color: rgba(201,168,103,0.32);
}

.blog-card-elegant .blog-card-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    margin: 10px 10px 0;
    box-shadow: 0 18px 34px rgba(13,60,89,0.08);
}

.blog-card-elegant .blog-card-image-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(13,60,89,0.26) 100%);
}

.blog-card-elegant img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card-elegant:hover img {
    transform: scale(1.05);
}

.blog-card-elegant .blog-card-body {
    padding: 18px 18px 20px;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding-left: 16px;
}

.blog-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #7e8d98;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card-elegant h3 {
    margin: 14px 0 0;
    font-size: 22px;
    line-height: 1.22;
    color: var(--primary);
}

.blog-card-elegant h3 a {
    transition: color 0.3s ease;
}

.blog-card-elegant:hover h3 a {
    color: #0a2f47;
}

.blog-more-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: var(--primary);
    font-weight: 700;
    padding: 12px 18px;
    border: 1px solid rgba(201,168,103,0.2);
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 12px 26px rgba(13,60,89,0.05);
}

/* =========================
   CTA
========================= */
.cta-section {
    padding: 18px 0 56px;
    background: #ffffff;
}

.cta-panel {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 45%, #072f46 100%);
    box-shadow: 0 24px 52px rgba(6, 40, 60, 0.18);
    border: 1px solid rgba(201,168,103,0.18);
}

.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.09), transparent 24%),
        radial-gradient(circle at bottom right, rgba(201,168,103,0.16), transparent 22%);
    pointer-events: none;
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 18px;
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
    min-height: 220px;
    position: relative;
    z-index: 1;
}

.cta-content {
    padding: 34px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content .section-label {
    color: var(--accent-soft);
    margin-bottom: 8px;
}

.cta-content .section-divider {
    display: none;
}

.cta-content h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.12;
}

.cta-content p {
    margin: 0;
    max-width: 520px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.55;
}
.cta-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 14px 0 0;
}

.cta-info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 500;
}

.cta-info-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
}

.cta-actions .primary-btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.phone-btn-light {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
}

.phone-btn-light:hover {
    background: rgba(255,255,255,0.12);
}

.cta-visual {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.cta-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,47,70,0.18) 0%, rgba(7,47,70,0.02) 30%, rgba(7,47,70,0.12) 100%);
    z-index: 1;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* footer */
.site-footer {
    background: linear-gradient(180deg, #0d3c59, #072f46);
    color: #fff;
    padding-top: 82px;
    padding-bottom: 35px;
    position: relative;
}

.footer-top {
    padding-bottom: 32px;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-logo img {
    display: block;
    max-height: 72px;
    width: auto;
}

.footer-contact-inline {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
    font-size: 18px;
    font-weight: 200;
}

.footer-contact-inline a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-brand-divider {
    width: calc(100% + 80px);
    margin-left: -40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin-top: 22px;
    margin-bottom: 22px;
}

.footer-brand-bottom {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.footer-brand-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.footer-links h4 {
    margin: 0 0 16px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom-bar {
    width: 100%;
    background: #06283c;
}

.footer-bottom-bar a {
    color: #fff;
    font-weight: 500;
}

.footer-bottom-bar a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

@media (max-width: 1200px) {
    .header-services{
        display: none;
    }
    .services-showcase {
        grid-template-columns: 1fr;
    }
    .services-side-grid{
        height: unset;
    }
    .service-side-meta{
        display: flex;
    }
    .service-side-card{
        min-height: 190px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-visual {
        min-height: 240px;
    }
}
@media (max-width: 1024px) {

    .phone-btn {
        display: none;
    }
}
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: inline-flex;
    }
    .header-actions {
        margin-left: auto;
        gap: 10px;
    }

    .phone-btn {
        padding: 12px 14px;
    }

    .mobile-menu {
        top: 92px;
        height: calc(100vh - 92px);
    }

    .hero-grid,
    .footer-brand-bottom {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        min-height: 320px;
    }

    .hero-badges {
        position: static;
        width: 100%;
        margin-top: 24px;
    }

    .reviews-grid,
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact-inline {
        flex-wrap: wrap;
        gap: 16px;
    }

    .cta-content {
        padding: 44px 32px;
    }

    .cta-visual {
        min-height: 260px;
    }
}

@media (max-width: 768px) {

    body.menu-open {
        overflow: hidden;
    }
    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .logo img,
    .footer-logo img {
        height: 64px;
    }

    .header-actions {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .phone-btn,
    .primary-btn,
    .secondary-btn {
        padding: 12px 16px;
    }

    .local-seo-grid {
        grid-template-columns: 1fr;
    }

    .local-seo-copy,
    .local-seo-panel {
        padding: 24px;
    }

    .local-seo-actions .phone-btn,
    .local-seo-actions .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        padding: 34px 0 34px;
    }

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .hero-script {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-badges {
        grid-template-columns: 1fr;
    }

    .benefits-bar,
    .stats-grid,
    .reviews-grid,
    .footer-brand-bottom,
    .footer-links-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item,
    .stat-item {
        border-right: 0;
    }
    .benefits-bar {
        text-align: center;
    }

    .benefit-item {
        justify-content: center;
        text-align: center;
        padding: 10px 12px;
    }

    .benefit-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .blog-card-elegant img {
        height: 250px;
    }

    .blog-preview-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cta-content {
        padding: 26px 20px;
    }

    .cta-visual {
        min-height: 220px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-info-row {
        flex-direction: column;
        gap: 12px;
    }
    .footer-brand-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand-divider {
        width: 100%;
        margin-left: 0;
    }

    .services-section,
    .reviews-section,
    .blog-preview-section,
    .post-section {
        padding: 76px 0;
    }
    .service-side-card{
        min-height: 220px;
    }
    .service-feature {
        min-height: 440px;
        max-height: none;
    }

    .service-feature-content {
        padding: 28px 24px;
    }

    .site-footer {
        padding-top: 70px;
    }
}


/* =========================================================
   SERVICE PAGE — FIZJOTERAPIA PSÓW
========================================================= */

.service-hero-luxe {
    position: relative;
    overflow: hidden;
    padding: 42px 0 86px;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.12), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(13,60,89,0.06), transparent 20%),
        linear-gradient(180deg, #fbfcfd 0%, #f7f9fb 48%, #ffffff 100%);
}

.service-hero-luxe::before {
    content: "";
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.14) 18%,
        rgba(201,168,103,0.48) 50%,
        rgba(201,168,103,0.14) 82%,
        transparent 100%
    );
}

.service-hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}

.service-hero-bg-orb-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(201,168,103,0.18) 0%, rgba(201,168,103,0) 72%);
}

.service-hero-bg-orb-2 {
    width: 260px;
    height: 260px;
    left: -80px;
    bottom: 0;
    background: radial-gradient(circle, rgba(13,60,89,0.10) 0%, rgba(13,60,89,0) 72%);
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 42px;
    align-items: center;
}

.service-hero-content {
    padding: 22px 0;
}

.service-hero-content h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    max-width: 760px;
}

.service-hero-text {
    max-width: 690px;
    margin: 22px 0 30px;
    font-size: 18px;
    line-height: 1.72;
    color: #4a6272;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.service-hero-highlights {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 760px;
}

.service-highlight-card {
    position: relative;
    padding: 18px 18px 16px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(13,60,89,0.08);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(13,60,89,0.06);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.service-highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.4) 15%,
        rgba(201,168,103,0.95) 50%,
        rgba(201,168,103,0.4) 85%,
        transparent 100%
    );
}

.service-highlight-card strong,
.service-highlight-card span {
    display: block;
}

.service-highlight-card strong {
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 8px;
}

.service-highlight-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.service-hero-visual-wrap {
    position: relative;
}

.service-hero-visual-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-premium);
    min-height: 620px;
}

.service-hero-visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(6,40,60,0.12) 55%, rgba(6,40,60,0.34) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-hero-visual-card::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201,168,103,0.26);
    border-radius: 22px;
    z-index: 2;
    pointer-events: none;
}

.service-hero-visual-card img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center;
}

.service-hero-floating-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    padding: 16px 18px;
    min-width: 260px;
    max-width: calc(100% - 48px);
    border-radius: 18px;
    background: rgba(13, 60, 89, 0.84);
    border: 1px solid rgba(201,168,103,0.22);
    box-shadow: 0 18px 36px rgba(6,40,60,0.22);
    backdrop-filter: blur(12px);
    color: #fff;
}

.service-hero-floating-badge span,
.service-hero-floating-badge strong {
    display: block;
}

.service-hero-floating-badge span {
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.service-hero-floating-badge strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
}

/* =========================================================
   INTRO
========================================================= */

.service-intro-luxe {
    position: relative;
    padding: 0 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.service-intro-shell {
    position: relative;
    margin-top: 8px;
}

.service-intro-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 22px;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,251,252,0.95) 100%);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.service-intro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201,168,103,0.08), transparent 22%),
        linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.03) 48%, transparent 100%);
    pointer-events: none;
}

.service-intro-card::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201,168,103,0.16);
    border-radius: 22px;
    pointer-events: none;
}

.service-intro-copy,
.service-intro-points {
    position: relative;
    z-index: 1;
}

.service-intro-copy {
    padding: 16px 12px 16px 10px;
}

.service-intro-copy p {
    margin: 0 0 18px;
    color: #556c7c;
    font-size: 17px;
    line-height: 1.82;
}

.service-intro-copy p:last-child {
    margin-bottom: 0;
}

.service-intro-points {
    display: grid;
    gap: 14px;
    align-content: center;
}

.soft-point-card {
    position: relative;
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(13,60,89,0.95);
    border: 1px solid rgba(201,168,103,0.18);
    box-shadow: 0 18px 34px rgba(13,60,89,0.14);
    overflow: hidden;
}

.soft-point-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 32%),
        linear-gradient(180deg, rgba(201,168,103,0.07) 0%, transparent 100%);
    pointer-events: none;
}

.soft-point-card strong,
.soft-point-card span {
    position: relative;
    z-index: 1;
    display: block;
}

.soft-point-card strong {
    color: #fff;
    font-size: 17px;
    margin-bottom: 8px;
}

.soft-point-card span {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   METHODS
========================================================= */

.service-methods-luxe {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 24%),
        linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.service-methods-luxe::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.14) 20%,
        rgba(201,168,103,0.42) 50%,
        rgba(201,168,103,0.14) 80%,
        transparent 100%
    );
}

.method-stack {
    display: grid;
    gap: 28px;
    margin-top: 34px;
}

.method-row {
    position: relative;
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 24px;
    align-items: stretch;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 22px 48px rgba(13,60,89,0.07);
    overflow: hidden;
}

.method-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.method-row::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.12);
    border-radius: 22px;
    pointer-events: none;
}

.method-row.reverse {
    grid-template-columns: 1.04fr 0.96fr;
}

.method-row.reverse .method-row-image {
    order: 2;
}

.method-row.reverse .method-row-content {
    order: 1;
}

.method-row-image,
.method-row-content {
    position: relative;
    z-index: 1;
}

.method-row-image {
    min-height: 100%;
}

.method-row-image-frame {
    height: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13,60,89,0.10);
    position: relative;
}

.method-row-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(13,60,89,0.18) 100%);
    pointer-events: none;
}

.method-row-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
}

.method-row-content {
    padding: 18px 16px 18px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.method-kicker::after {
    content: "";
    width: 44px;
    height: 1px;
    background: rgba(201,168,103,0.9);
}

.method-row-content h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(28px, 2.2vw, 38px);
    line-height: 1.08;
}

.method-lead {
    margin: 0 0 16px;
    color: #3d5667;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 600;
}

.method-row-content p {
    margin: 0 0 14px;
    color: #617584;
    font-size: 15px;
    line-height: 1.8;
}

.method-row-content p:last-of-type {
    margin-bottom: 0;
}

.method-list {
    margin-top: 22px;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(13,60,89,0.04) 0%, rgba(13,60,89,0.02) 100%);
    border: 1px solid rgba(13,60,89,0.08);
}

.method-list h4 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.method-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.method-list li {
    position: relative;
    padding-left: 18px;
    color: #556c7c;
    line-height: 1.65;
}

.method-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(201,168,103,0.10);
}

/* =========================================================
   CTA
========================================================= */

.service-soft-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.service-soft-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 45%, #072f46 100%);
    box-shadow: 0 24px 52px rgba(6, 40, 60, 0.18);
    border: 1px solid rgba(201,168,103,0.18);
}

.service-soft-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(201,168,103,0.16), transparent 22%);
    pointer-events: none;
}

.service-soft-cta-box::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 18px;
    pointer-events: none;
}

.service-soft-cta-copy,
.service-soft-cta-actions {
    position: relative;
    z-index: 1;
}

.service-soft-cta-copy .section-label {
    color: var(--accent-soft);
    margin-bottom: 8px;
}

.service-soft-cta-copy h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.12;
}

.service-soft-cta-copy p {
    margin: 0;
    max-width: 540px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.7;
}

.service-soft-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.service-soft-cta .phone-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
}

.service-soft-cta .phone-btn:hover {
    background: rgba(255,255,255,0.12);
}

.service-soft-cta .primary-btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* =========================================================
   GLOBAL TUNING FOR THIS PAGE
========================================================= */

.section-heading-narrow {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.center {
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.14;
}

.section-description {
    margin: 16px auto 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.section-divider {
    width: 120px;
    height: 1px;
    margin: 22px auto 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold-line) 20%,
        var(--accent) 50%,
        var(--gold-line) 80%,
        transparent 100%
    );
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .service-hero-grid,
    .service-intro-card,
    .service-soft-cta-box,
    .method-row,
    .method-row.reverse {
        grid-template-columns: 1fr;
    }

    .method-row.reverse .method-row-image,
    .method-row.reverse .method-row-content {
        order: initial;
    }

    .service-hero-visual-card,
    .service-hero-visual-card img {
        min-height: 540px;
    }

    .service-hero-highlights {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .service-soft-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    .service-hero-luxe {
        padding: 34px 0 72px;
    }

    .service-intro-luxe,
    .service-methods-luxe {
        padding: 78px 0;
    }

    .service-intro-card,
    .method-row,
    .service-soft-cta-box {
        padding: 20px;
    }

    .service-hero-visual-card,
    .service-hero-visual-card img {
        min-height: 460px;
    }

    .method-row-image-frame,
    .method-row-image img {
        min-height: 340px;
    }

    .method-row-content {
        padding: 8px 6px 6px;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: clamp(34px, 10vw, 52px);
    }

    .service-hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .service-hero-visual-card,
    .service-hero-visual-card img {
        min-height: 380px;
    }

    .service-hero-floating-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        min-width: 0;
    }

    .service-intro-copy p,
    .method-lead,
    .method-row-content p,
    .section-description {
        font-size: 15px;
    }

    .method-row-content h3 {
        font-size: 28px;
    }

    .method-row-image-frame,
    .method-row-image img {
        min-height: 280px;
    }

    .service-soft-cta-box {
        padding: 26px 20px;
    }

    .service-soft-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-soft-cta-actions .phone-btn,
    .service-soft-cta-actions .primary-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .service-hero-luxe {
        padding: 28px 0 62px;
    }

    .service-intro-luxe,
    .service-methods-luxe {
        padding: 70px 0;
    }

    .service-highlight-card,
    .soft-point-card,
    .method-list {
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-intro-card,
    .method-row {
        border-radius: 24px;
    }

    .service-hero-visual-card {
        border-radius: 24px;
    }

    .service-hero-visual-card::after,
    .method-row::after,
    .service-intro-card::after,
    .service-soft-cta-box::after {
        inset: 12px;
    }
}


/* =========================================================
   FIZJOTERAPIA KONI
========================================================= */

.horse-hero-alt {
    position: relative;
    min-height: 780px;
    padding: 0;
    overflow: hidden;
    background: #0a3149;
}

.horse-hero-alt-media {
    position: absolute;
    inset: 0;
}

.horse-hero-alt-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.horse-hero-alt-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 28, 43, 0.34) 0%, rgba(5, 28, 43, 0.50) 38%, rgba(5, 28, 43, 0.74) 100%),
        radial-gradient(circle at top right, rgba(201,168,103,0.18), transparent 20%);
}

.horse-hero-alt-inner {
    position: relative;
    z-index: 2;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 96px;
    padding-bottom: 160px;
}

.horse-hero-alt-content {
    max-width: 900px;
    margin: 0 auto;
}

.horse-hero-alt .section-label {
    color: var(--accent-soft);
}

.horse-hero-alt h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.2vw, 78px);
    line-height: 1.04;
    font-weight: 800;
}

.horse-hero-alt-text {
    margin: 22px auto 0;
    max-width: 760px;
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    line-height: 1.78;
}

.horse-hero-alt-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.horse-hero-alt .primary-btn {
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.horse-hero-alt .secondary-btn {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
}

.horse-hero-alt-bottom {
    position: relative;
    z-index: 3;
    margin-top: -78px;
}

.horse-hero-alt-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 24px 54px rgba(13,60,89,0.10);
    position: relative;
}

.horse-hero-alt-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.38) 20%, rgba(201,168,103,0.95) 50%, rgba(201,168,103,0.38) 80%, transparent 100%);
}

.horse-hero-alt-point {
    padding: 28px 24px 24px;
    border-right: 1px solid rgba(13,60,89,0.08);
    text-align: center;
}

.horse-hero-alt-point:last-child {
    border-right: 0;
}

.horse-hero-alt-point strong,
.horse-hero-alt-point span {
    display: block;
}

.horse-hero-alt-point strong {
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 8px;
}

.horse-hero-alt-point span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* intro */

.horse-intro-alt {
    padding: 110px 0 94px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.horse-intro-alt-box {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(249,251,252,0.96) 100%);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.horse-intro-alt-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 20%),
        linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.03) 50%, transparent 100%);
    pointer-events: none;
}

.horse-intro-alt-box::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 20px;
    pointer-events: none;
}

.horse-intro-alt-heading,
.horse-intro-alt-grid {
    position: relative;
    z-index: 1;
}

.horse-intro-alt-heading {
    max-width: 840px;
    margin: 0 auto 28px;
    text-align: center;
}

.horse-intro-alt-heading h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.14;
}

.horse-intro-alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.horse-intro-alt-copy {
    padding: 24px 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 14px 28px rgba(13,60,89,0.05);
}

.horse-intro-alt-copy p {
    margin: 0;
    color: #556c7c;
    font-size: 17px;
    line-height: 1.82;
}

/* methods */

.horse-methods-alt {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 24%),
        linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.horse-methods-alt-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.horse-method-row-alt {
    position: relative;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 20px;
    align-items: stretch;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 18px 40px rgba(13,60,89,0.07);
    overflow: hidden;
}

.horse-method-row-alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.025) 100%);
    pointer-events: none;
}

.horse-method-row-alt::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.12);
    border-radius: 20px;
    pointer-events: none;
}

.horse-method-row-alt-image,
.horse-method-row-alt-content {
    position: relative;
    z-index: 1;
}

.horse-method-row-alt-image {
    border-radius: 22px;
    overflow: hidden;
    min-height: 100%;
    background: #eef3f6;
    box-shadow: 0 18px 36px rgba(13,60,89,0.10);
}

.horse-method-row-alt-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.horse-method-row-alt-content {
    padding: 6px 6px 6px 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horse-method-row-alt-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.horse-method-row-alt-number::after {
    content: "";
    width: 42px;
    height: 1px;
    background: rgba(201,168,103,0.9);
}

.horse-method-row-alt-content h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: clamp(26px, 2vw, 34px);
    line-height: 1.08;
}

.horse-method-row-alt-lead {
    margin: 0 0 10px;
    color: #3d5667;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
}

.horse-method-row-alt-content p {
    margin: 0 0 10px;
    color: #617584;
    font-size: 15px;
    line-height: 1.68;
}

.horse-method-row-alt-content p:last-of-type {
    margin-bottom: 0;
}

.horse-method-row-alt-list {
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(13,60,89,0.04) 0%, rgba(13,60,89,0.02) 100%);
    border: 1px solid rgba(13,60,89,0.08);
}

.horse-method-row-alt-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 8px;
}

.horse-method-row-alt-list h4 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.horse-method-row-alt-list li {
    position: relative;
    padding-left: 16px;
    color: #556c7c;
    line-height: 1.55;
    font-size: 14px;
}
.horse-method-row-alt-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(201,168,103,0.10);
}

/* cta */

.horse-cta-alt {
    padding: 0 0 72px;
    background: #ffffff;
}

.horse-cta-alt-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 45%, #072f46 100%);
    box-shadow: 0 24px 52px rgba(6, 40, 60, 0.18);
    border: 1px solid rgba(201,168,103,0.18);
}

.horse-cta-alt-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(201,168,103,0.16), transparent 22%);
    pointer-events: none;
}

.horse-cta-alt-box::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 18px;
    pointer-events: none;
}

.horse-cta-alt-copy,
.horse-cta-alt-actions {
    position: relative;
    z-index: 1;
}

.horse-cta-alt-copy .section-label {
    color: var(--accent-soft);
    margin-bottom: 8px;
}

.horse-cta-alt-copy h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.12;
}

.horse-cta-alt-copy p {
    margin: 0;
    max-width: 540px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.7;
}

.horse-cta-alt-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.horse-cta-alt .phone-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
}

.horse-cta-alt .phone-btn:hover {
    background: rgba(255,255,255,0.12);
}

.horse-cta-alt .primary-btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* responsive */

@media (max-width: 1200px) {
    .horse-method-row-alt {
        grid-template-columns: 360px 1fr;
    }

    .horse-cta-alt-box {
        grid-template-columns: 1fr;
    }

    .horse-cta-alt-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    .horse-hero-alt {
        min-height: auto;
    }

    .horse-hero-alt-inner {
        min-height: 620px;
        padding-top: 88px;
        padding-bottom: 140px;
    }

    .horse-hero-alt-strip,
    .horse-intro-alt-grid,
    .horse-method-row-alt {
        grid-template-columns: 1fr;
    }

    .horse-hero-alt-point {
        border-right: 0;
        border-bottom: 1px solid rgba(13,60,89,0.08);
    }

    .horse-hero-alt-point:last-child {
        border-bottom: 0;
    }
    .horse-method-row-alt {
        grid-template-columns: 1fr;
    }

    .horse-method-row-alt-image {
        min-height: 280px;
    }

    .horse-intro-alt,
    .horse-methods-alt {
        padding: 78px 0;
    }
}

@media (max-width: 768px) {
    .horse-hero-alt-inner {
        min-height: 560px;
        padding-bottom: 132px;
    }

    .horse-hero-alt h1 {
        font-size: clamp(34px, 10vw, 54px);
    }

    .horse-hero-alt-text,
    .horse-intro-alt-copy p,
    .horse-method-row-alt-lead,
    .horse-method-row-alt-content p,
    .horse-cta-alt-copy p {
        font-size: 15px;
    }

    .horse-intro-alt-box,
    .horse-cta-alt-box {
        padding: 26px 20px;
    }

    .horse-method-row-alt {
        padding: 16px;
    }

    .horse-method-row-alt-image {
        min-height: 240px;
    }
    .horse-method-row-alt-list ul {
        grid-template-columns: 1fr;
    }
    .horse-method-row-alt-content {
        padding: 6px 2px 2px;
    }

    .horse-cta-alt-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .horse-cta-alt-actions .phone-btn,
    .horse-cta-alt-actions .primary-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .horse-hero-alt-bottom {
        margin-top: -56px;
    }

    .horse-hero-alt-strip,
    .horse-intro-alt-box,
    .horse-method-row-alt,
    .horse-cta-alt-box {
        border-radius: 22px;
    }

    .horse-method-row-alt::after,
    .horse-intro-alt-box::after,
    .horse-cta-alt-box::after {
        inset: 12px;
    }
}

/* =========================================================
   PSI FITNESS
========================================================= */

.fitness-hero {
    position: relative;
    padding: 42px 0 94px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.10), transparent 22%),
        radial-gradient(circle at 90% 12%, rgba(13,60,89,0.08), transparent 22%),
        linear-gradient(180deg, #fbfcfd 0%, #f7f9fb 52%, #ffffff 100%);
}

.fitness-hero::before {
    content: "";
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.14) 20%,
        rgba(201,168,103,0.42) 50%,
        rgba(201,168,103,0.14) 80%,
        transparent 100%
    );
}

.fitness-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 28%),
        radial-gradient(circle at 18% 75%, rgba(201,168,103,0.06), transparent 18%);
}

.fitness-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.02fr;
    gap: 34px;
    align-items: center;
}

.fitness-hero-content {
    padding: 18px 0;
}

.fitness-hero-content h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.04;
    font-weight: 800;
    max-width: 720px;
}

.fitness-hero-text {
    margin: 22px 0 30px;
    max-width: 650px;
    color: #496172;
    font-size: 18px;
    line-height: 1.78;
}

.fitness-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.fitness-hero-visual-wrap {
    position: relative;
    padding-bottom: 50px;
}

.fitness-hero-visual {
    position: relative;
    min-height: 620px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.12), transparent 24%),
        linear-gradient(145deg, #f8fafc 0%, #eef3f6 100%);
    box-shadow: 0 30px 70px rgba(7,38,58,0.18);
}

.fitness-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(13,60,89,0.06) 52%, rgba(13,60,89,0.14) 100%);
    z-index: 1;
    pointer-events: none;
}

.fitness-hero-visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201,168,103,0.24);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

.fitness-hero-video-only {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 88px;
}

.fitness-hero-main-video {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
    border-radius: 24px;
    background: transparent;
}

.fitness-hero-floating-cards {
    position: absolute;
    left: -16px;
    right: -16px;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fitness-float-card {
    position: relative;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 18px 34px rgba(13,60,89,0.10);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.fitness-float-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.38) 20%,
        rgba(201,168,103,0.95) 50%,
        rgba(201,168,103,0.38) 80%,
        transparent 100%
    );
}

.fitness-float-card strong,
.fitness-float-card span {
    display: block;
}

.fitness-float-card strong {
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 8px;
}

.fitness-float-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.58;
}

/* =========================================================
   INTRO
========================================================= */

.fitness-intro {
    padding: 30px 0 96px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.fitness-intro-top {
    margin-bottom: 24px;
}

.fitness-intro-heading {
    max-width: 760px;
    margin-bottom: 0;
}

.fitness-intro-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 22px;
    align-items: stretch;
}

.fitness-intro-copy-card {
    position: relative;
    padding: 30px 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(249,251,252,0.96) 100%);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.fitness-intro-copy-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 18%),
        linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.03) 50%, transparent 100%);
    pointer-events: none;
}

.fitness-intro-copy-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 20px;
    pointer-events: none;
}

.fitness-intro-copy-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: #556c7c;
    font-size: 17px;
    line-height: 1.84;
}

.fitness-intro-copy-card p:last-child {
    margin-bottom: 0;
}

.fitness-intro-points {
    display: grid;
    gap: 14px;
}

.fitness-intro-point {
    position: relative;
    padding: 22px 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 46%, #072f46 100%);
    border: 1px solid rgba(201,168,103,0.18);
    box-shadow: 0 18px 34px rgba(13,60,89,0.14);
    overflow: hidden;
}

.fitness-intro-point::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 32%),
        linear-gradient(180deg, rgba(201,168,103,0.08) 0%, transparent 100%);
    pointer-events: none;
}

.fitness-intro-point strong,
.fitness-intro-point span {
    position: relative;
    z-index: 1;
    display: block;
}

.fitness-intro-point strong {
    color: #fff;
    font-size: 17px;
    margin-bottom: 8px;
}

.fitness-intro-point span {
    color: rgba(255,255,255,0.80);
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   BENEFITS
========================================================= */

.fitness-benefits-section {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(201,168,103,0.08), transparent 22%),
        linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.fitness-benefits-section::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.14) 20%,
        rgba(201,168,103,0.42) 50%,
        rgba(201,168,103,0.14) 80%,
        transparent 100%
    );
}

.fitness-benefits-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.fitness-benefit-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 18px 40px rgba(13,60,89,0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.fitness-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(13,60,89,0.10);
    border-color: rgba(201,168,103,0.28);
}

.fitness-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 26%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.fitness-benefit-media {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.fitness-benefit-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(13,60,89,0.16) 100%);
    pointer-events: none;
}

.fitness-benefit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.fitness-benefit-card:hover img {
    transform: scale(1.04);
}

.fitness-benefit-body {
    position: relative;
    z-index: 1;
    padding: 24px 24px 26px;
}

.fitness-card-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fitness-card-number::after {
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(201,168,103,0.88);
}

.fitness-benefit-body h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.14;
}

.fitness-benefit-body p {
    margin: 0;
    color: #5e7282;
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   EDITORIAL
========================================================= */

.fitness-editorial-section {
    padding: 100px 0;
    background: #ffffff;
}

.fitness-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.fitness-editorial-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 46%, #072f46 100%);
    border: 1px solid rgba(201,168,103,0.18);
    box-shadow: 0 24px 52px rgba(6,40,60,0.18);
}

.fitness-editorial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(201,168,103,0.16), transparent 22%);
    pointer-events: none;
}

.fitness-editorial-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 18px;
    pointer-events: none;
}

.fitness-editorial-card-offset {
    margin-top: 58px;
}

.fitness-editorial-image,
.fitness-editorial-content {
    position: relative;
    z-index: 1;
}

.fitness-editorial-image {
    height: 300px;
    overflow: hidden;
}

.fitness-editorial-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(7,47,70,0.24) 100%);
    pointer-events: none;
}

.fitness-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fitness-editorial-content {
    padding: 28px 26px 28px;
    color: #fff;
}

.fitness-editorial-content h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 2.2vw, 38px);
    line-height: 1.08;
}

.fitness-editorial-content .method-kicker {
    color: var(--accent-soft);
}

.fitness-editorial-content .method-kicker::after {
    background: rgba(201,168,103,0.9);
}

.fitness-editorial-content .method-lead {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.90);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 600;
}

.fitness-editorial-content p {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.8;
}

.fitness-editorial-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   CTA
========================================================= */

.fitness-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.fitness-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(249,251,252,0.96) 100%);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 20px 44px rgba(13,60,89,0.08);
}

.fitness-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 20%),
        linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.04) 50%, transparent 100%);
    pointer-events: none;
}

.fitness-cta-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.38) 20%,
        rgba(201,168,103,0.95) 50%,
        rgba(201,168,103,0.38) 80%,
        transparent 100%
    );
}

.fitness-cta-copy,
.fitness-cta-actions {
    position: relative;
    z-index: 1;
}

.fitness-cta-copy h2 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.12;
}

.fitness-cta-copy p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.fitness-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .fitness-hero-shell,
    .fitness-intro-grid,
    .fitness-cta-box {
        grid-template-columns: 1fr;
    }

    .fitness-benefits-grid,
    .fitness-editorial-grid {
        grid-template-columns: 1fr;
    }

    .fitness-editorial-card-offset {
        margin-top: 0;
    }

    .fitness-hero-visual {
        min-height: 540px;
    }

    .fitness-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    .fitness-hero {
        padding: 34px 0 78px;
    }

    .fitness-intro,
    .fitness-benefits-section,
    .fitness-editorial-section {
        padding: 78px 0;
    }

    .fitness-hero-visual {
        min-height: 460px;
    }

    .fitness-hero-video-only {
        padding: 20px 20px 90px;
    }

    .fitness-hero-floating-cards {
        grid-template-columns: 1fr;
        left: 0;
        right: 0;
    }

    .fitness-benefit-media,
    .fitness-editorial-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .fitness-hero-content h1 {
        font-size: clamp(34px, 10vw, 54px);
    }

    .fitness-hero-text,
    .fitness-intro-copy-card p,
    .fitness-benefit-body p,
    .fitness-editorial-content .method-lead,
    .fitness-editorial-content p,
    .fitness-cta-copy p {
        font-size: 15px;
    }

    .fitness-hero-visual {
        min-height: 380px;
    }

    .fitness-hero-video-only {
        padding: 16px 16px 108px;
    }

    .fitness-hero-main-video {
        border-radius: 18px;
    }

    .fitness-intro-copy-card,
    .fitness-cta-box {
        padding: 26px 20px;
    }

    .fitness-benefit-body,
    .fitness-editorial-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fitness-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fitness-cta-actions .phone-btn,
    .fitness-cta-actions .primary-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .fitness-hero {
        padding: 28px 0 70px;
    }

    .fitness-intro,
    .fitness-benefits-section,
    .fitness-editorial-section {
        padding: 70px 0;
    }

    .fitness-hero-visual,
    .fitness-benefit-card,
    .fitness-editorial-card,
    .fitness-intro-copy-card,
    .fitness-cta-box {
        border-radius: 22px;
    }

    .fitness-hero-visual::after,
    .fitness-editorial-card::after,
    .fitness-intro-copy-card::after {
        inset: 12px;
    }
}



/* =========================================================
   DIETETYKA PSÓW I KOTÓW
========================================================= */

.diet-hero {
    position: relative;
    padding: 42px 0 92px;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.09), transparent 22%),
        radial-gradient(circle at 88% 14%, rgba(13,60,89,0.06), transparent 20%),
        linear-gradient(180deg, #fcfcfd 0%, #f8fafb 52%, #ffffff 100%);
    overflow: hidden;
}

.diet-hero::before {
    content: "";
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.14) 20%,
        rgba(201,168,103,0.42) 50%,
        rgba(201,168,103,0.14) 80%,
        transparent 100%
    );
}

.diet-hero-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 28px;
    align-items: stretch;
    padding: 22px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(249,251,252,0.92) 100%);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 24px 54px rgba(13,60,89,0.08);
    overflow: hidden;
}

.diet-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.24) 0%, transparent 26%),
        radial-gradient(circle at top right, rgba(201,168,103,0.08), transparent 20%);
    pointer-events: none;
}

.diet-hero-panel::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 24px;
    pointer-events: none;
}

.diet-hero-copy,
.diet-hero-visual {
    position: relative;
    z-index: 1;
}

.diet-hero-copy {
    padding: 34px 18px 34px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diet-hero-copy h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    max-width: 720px;
}

.diet-hero-text {
    margin: 22px 0 30px;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.78;
    color: #4c6373;
}

.diet-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.diet-hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.diet-hero-image-wrap {
    position: relative;
    min-height: 560px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(13,60,89,0.10);
}

.diet-hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(13,60,89,0.12) 100%);
    pointer-events: none;
}

.diet-hero-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
}

.diet-hero-note {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 46%, #072f46 100%);
    border: 1px solid rgba(201,168,103,0.18);
    box-shadow: 0 18px 34px rgba(13,60,89,0.14);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.diet-hero-note::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 32%),
        linear-gradient(180deg, rgba(201,168,103,0.08) 0%, transparent 100%);
    pointer-events: none;
}

.diet-hero-note span,
.diet-hero-note strong {
    position: relative;
    z-index: 1;
    display: block;
}

.diet-hero-note span {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 6px;
}

.diet-hero-note strong {
    font-size: 15px;
    line-height: 1.55;
    color: #fff;
}

.diet-hero-ribbon {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.diet-hero-ribbon-item {
    position: relative;
    padding: 22px 20px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 14px 30px rgba(13,60,89,0.06);
    overflow: hidden;
}

.diet-hero-ribbon-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.38) 20%,
        rgba(201,168,103,0.95) 50%,
        rgba(201,168,103,0.38) 80%,
        transparent 100%
    );
}

.diet-hero-ribbon-item strong,
.diet-hero-ribbon-item span {
    display: block;
}

.diet-hero-ribbon-item strong {
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 8px;
}

.diet-hero-ribbon-item span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   INTRO
========================================================= */

.diet-intro {
    padding: 24px 0 96px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.diet-intro-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 22px;
    align-items: stretch;
}

.diet-intro-heading-card,
.diet-intro-copy-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.diet-intro-heading-card {
    padding: 32px 30px;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 46%, #072f46 100%);
    border: 1px solid rgba(201,168,103,0.18);
    box-shadow: 0 20px 44px rgba(13,60,89,0.14);
}

.diet-intro-heading-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(201,168,103,0.16), transparent 22%);
    pointer-events: none;
}

.diet-intro-heading-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 18px;
    pointer-events: none;
}

.diet-intro-heading-card .section-label,
.diet-intro-heading-card h2,
.diet-intro-heading-card .section-divider {
    position: relative;
    z-index: 1;
}

.diet-intro-heading-card .section-label {
    color: var(--accent-soft);
}

.diet-intro-heading-card h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.14;
}

.diet-intro-heading-card .section-divider {
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(90deg, rgba(201,168,103,0.85) 0%, rgba(201,168,103,0.35) 50%, transparent 100%);
}

.diet-intro-copy-card {
    padding: 30px 30px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(249,251,252,0.96) 100%);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: var(--shadow-soft);
}

.diet-intro-copy-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 18%),
        linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.03) 50%, transparent 100%);
    pointer-events: none;
}

.diet-intro-copy-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 20px;
    pointer-events: none;
}

.diet-intro-copy-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: #556c7c;
    font-size: 17px;
    line-height: 1.84;
}

.diet-intro-copy-card p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   SERVICES
========================================================= */

.diet-services-section {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(201,168,103,0.08), transparent 22%),
        linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.diet-services-section::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.14) 20%,
        rgba(201,168,103,0.42) 50%,
        rgba(201,168,103,0.14) 80%,
        transparent 100%
    );
}

.diet-services-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.diet-service-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 18px 40px rgba(13,60,89,0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.diet-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(13,60,89,0.10);
    border-color: rgba(201,168,103,0.28);
}

.diet-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 26%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.diet-service-media {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.diet-service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(13,60,89,0.16) 100%);
    pointer-events: none;
}

.diet-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.diet-service-card:hover img {
    transform: scale(1.04);
}

.diet-service-body {
    position: relative;
    z-index: 1;
    padding: 24px 24px 26px;
}

.diet-service-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.diet-service-number::after {
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(201,168,103,0.88);
}

.diet-service-body h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.16;
}

.diet-service-body p {
    margin: 0;
    color: #5e7282;
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   EDITORIAL
========================================================= */

.diet-editorial-section {
    padding: 100px 0;
    background: #ffffff;
}

.diet-editorial-stack {
    display: grid;
    gap: 24px;
}

.diet-editorial-feature {
    position: relative;
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 24px;
    align-items: stretch;
    padding: 18px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(249,251,252,0.96) 100%);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 20px 44px rgba(13,60,89,0.08);
    overflow: hidden;
}

.diet-editorial-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.diet-editorial-feature::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.12);
    border-radius: 22px;
    pointer-events: none;
}

.diet-editorial-feature.reverse {
    grid-template-columns: 1.06fr 0.94fr;
}

.diet-editorial-feature.reverse .diet-editorial-feature-image {
    order: 2;
}

.diet-editorial-feature.reverse .diet-editorial-feature-content {
    order: 1;
}

.diet-editorial-feature-image,
.diet-editorial-feature-content {
    position: relative;
    z-index: 1;
}

.diet-editorial-feature-image {
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(13,60,89,0.10);
}

.diet-editorial-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.diet-editorial-feature-content {
    padding: 18px 12px 18px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diet-editorial-feature-content h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(28px, 2.2vw, 38px);
    line-height: 1.08;
}

.diet-editorial-feature-content .method-lead {
    margin: 0 0 16px;
    color: #3d5667;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 600;
}

.diet-editorial-feature-content p {
    margin: 0 0 14px;
    color: #617584;
    font-size: 15px;
    line-height: 1.8;
}

.diet-editorial-feature-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   CTA
========================================================= */

.diet-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.diet-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 45%, #072f46 100%);
    box-shadow: 0 24px 52px rgba(6, 40, 60, 0.18);
    border: 1px solid rgba(201,168,103,0.18);
}

.diet-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(201,168,103,0.16), transparent 22%);
    pointer-events: none;
}

.diet-cta-box::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,168,103,0.14);
    border-radius: 18px;
    pointer-events: none;
}

.diet-cta-copy,
.diet-cta-actions {
    position: relative;
    z-index: 1;
}

.diet-cta-copy .section-label {
    color: var(--accent-soft);
    margin-bottom: 8px;
}

.diet-cta-copy h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.12;
}

.diet-cta-copy p {
    margin: 0;
    max-width: 560px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.7;
}

.diet-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.diet-cta .phone-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
}

.diet-cta .phone-btn:hover {
    background: rgba(255,255,255,0.12);
}

.diet-cta .primary-btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .diet-hero-panel,
    .diet-intro-grid,
    .diet-cta-box,
    .diet-editorial-feature,
    .diet-editorial-feature.reverse {
        grid-template-columns: 1fr;
    }

    .diet-editorial-feature.reverse .diet-editorial-feature-image,
    .diet-editorial-feature.reverse .diet-editorial-feature-content {
        order: initial;
    }

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

    .diet-hero-ribbon {
        grid-template-columns: 1fr;
    }

    .diet-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    .diet-hero {
        padding: 34px 0 78px;
    }

    .diet-intro,
    .diet-services-section,
    .diet-editorial-section {
        padding: 78px 0;
    }

    .diet-hero-image-wrap,
    .diet-hero-image-wrap img {
        min-height: 420px;
    }

    .diet-service-media {
        height: 220px;
    }

    .diet-editorial-feature-image img {
        min-height: 320px;
    }

    .diet-hero-copy,
    .diet-intro-heading-card,
    .diet-intro-copy-card,
    .diet-cta-box {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .diet-hero-copy h1 {
        font-size: clamp(34px, 10vw, 54px);
    }

    .diet-hero-text,
    .diet-intro-copy-card p,
    .diet-service-body p,
    .diet-editorial-feature-content .method-lead,
    .diet-editorial-feature-content p,
    .diet-cta-copy p {
        font-size: 15px;
    }

    .diet-services-grid {
        grid-template-columns: 1fr;
    }

    .diet-hero-image-wrap,
    .diet-hero-image-wrap img {
        min-height: 340px;
    }

    .diet-service-body,
    .diet-editorial-feature-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .diet-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .diet-cta-actions .phone-btn,
    .diet-cta-actions .primary-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .diet-hero {
        padding: 28px 0 70px;
    }

    .diet-intro,
    .diet-services-section,
    .diet-editorial-section {
        padding: 70px 0;
    }

    .diet-hero-panel,
    .diet-intro-heading-card,
    .diet-intro-copy-card,
    .diet-service-card,
    .diet-editorial-feature,
    .diet-cta-box {
        border-radius: 22px;
    }

    .diet-hero-panel::after,
    .diet-intro-heading-card::after,
    .diet-intro-copy-card::after,
    .diet-editorial-feature::after,
    .diet-cta-box::after {
        inset: 12px;
    }
}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-hero-luxe {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 90px 0 88px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201,168,103,0.14), transparent 20%),
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(6,40,60,0.18) 100%);
    pointer-events: none;
}

.about-hero-luxe::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 760px;
    padding: 28px 0;
}

.about-hero-content .section-label {
    color: var(--accent);
}

.about-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1.02;
    font-weight: 800;
    text-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.about-hero-title-wrap {
    margin: 18px 0 16px;
}

.about-hero-title {
    margin: 0;
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    max-width: 760px;
}

.about-hero-intro {
    margin: 0 0 30px;
    max-width: 720px;
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    line-height: 1.82;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-hero-actions .primary-btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.about-secondary-btn {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
}

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

.about-hero-signature-box {
    margin-top: 28px;
    padding: 18px 20px;
    max-width: 440px;
    border-radius: 18px;
    background: rgba(13,60,89,0.58);
    border: 1px solid rgba(201,168,103,0.22);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.about-hero-signature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.4) 15%,
        rgba(201,168,103,0.95) 50%,
        rgba(201,168,103,0.4) 85%,
        transparent 100%
    );
}

.about-hero-signature-box span,
.about-hero-signature-box strong {
    display: block;
    position: relative;
    z-index: 1;
}

.about-hero-signature-box span {
    color: rgba(255,255,255,0.68);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.about-hero-signature-box strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

/* =========================================================
   ABOUT STORY — TIMELINE / EDITORIAL LUXE
========================================================= */

.about-story-luxe {
    position: relative;
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    overflow: hidden;
}

.about-story-luxe::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.10) 22%,
        rgba(201,168,103,0.35) 50%,
        rgba(201,168,103,0.10) 78%,
        transparent 100%
    );
}

.about-story-timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 56px;
    display: grid;
    gap: 24px;
}

.about-story-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 18px;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(201,168,103,0.10) 0%,
        rgba(201,168,103,0.55) 20%,
        rgba(13,60,89,0.14) 50%,
        rgba(201,168,103,0.55) 80%,
        rgba(201,168,103,0.10) 100%
    );
}

.about-story-item {
    position: relative;
}

.about-story-item-marker {
    position: absolute;
    left: -56px;
    top: 34px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f9f5ec 100%);
    border: 1px solid rgba(201,168,103,0.38);
    box-shadow:
        0 10px 24px rgba(13,60,89,0.08),
        inset 0 0 0 6px rgba(201,168,103,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-story-item-marker::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(201,168,103,0.10);
}

.about-story-card {
    position: relative;
    padding: 30px 34px 28px;
    border-radius: 30px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 18px 40px rgba(13,60,89,0.06);
    overflow: hidden;
}

.about-story-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.34) 0%, transparent 28%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.about-story-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.10);
    border-radius: 22px;
    pointer-events: none;
}

.about-story-card-inner {
    position: relative;
    z-index: 1;
}

.about-story-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.about-story-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(13,60,89,0.05);
    border: 1px solid rgba(13,60,89,0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-story-kicker::before {
    content: "✦";
    color: var(--accent);
    font-size: 13px;
    line-height: 1;
}

.about-story-card h3 {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: clamp(28px, 2.5vw, 40px);
    line-height: 1.12;
    max-width: 760px;
}

.about-story-paragraphs {
    display: grid;
    gap: 14px;
}

.about-story-paragraphs p {
    margin: 0;
    color: #556c7c;
    font-size: 16px;
    line-height: 1.9;
}
.about-highlights-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-highlight-card {
    position: relative;
    padding: 24px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(13,60,89,0.96) 0%, rgba(10,52,78,0.96) 100%);
    border: 1px solid rgba(201,168,103,0.20);
    box-shadow: 0 16px 30px rgba(13,60,89,0.10);
    overflow: hidden;
}

.about-highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 34%),
        linear-gradient(180deg, rgba(201,168,103,0.07) 0%, transparent 100%);
    pointer-events: none;
}

.about-highlight-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.about-highlight-icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-highlight-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.about-highlight-content strong,
.about-highlight-content span {
    display: block;
}

.about-highlight-content strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.about-highlight-content span {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   EDITORIAL
========================================================= */

.about-editorial-luxe {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 24%),
        linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.about-editorial-luxe::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.14) 20%,
        rgba(201,168,103,0.42) 50%,
        rgba(201,168,103,0.14) 80%,
        transparent 100%
    );
}

.about-editorial-row {
    position: relative;
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 24px;
    align-items: stretch;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: 30px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 22px 48px rgba(13,60,89,0.07);
    overflow: hidden;
}

.about-editorial-row:last-child {
    margin-bottom: 0;
}

.about-editorial-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.about-editorial-row::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.12);
    border-radius: 22px;
    pointer-events: none;
}

.about-editorial-row.reverse {
    grid-template-columns: 1.04fr 0.96fr;
}

.about-editorial-row.reverse .about-editorial-image {
    order: 2;
}

.about-editorial-row.reverse .about-editorial-content {
    order: 1;
}

.about-editorial-image,
.about-editorial-content {
    position: relative;
    z-index: 1;
}

.about-editorial-image-frame {
    height: 100%;
    min-height: 460px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13,60,89,0.10);
    position: relative;
}

.about-editorial-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(13,60,89,0.18) 100%);
    pointer-events: none;
}

.about-editorial-image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
}

.about-editorial-content {
    padding: 18px 16px 18px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-editorial-content h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.1;
}

.about-editorial-content p {
    margin: 0 0 14px;
    color: #617584;
    font-size: 15px;
    line-height: 1.82;
}

.about-editorial-content p:last-of-type {
    margin-bottom: 0;
}

.about-activities-card {
    margin-top: 22px;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(13,60,89,0.04) 0%, rgba(13,60,89,0.02) 100%);
    border: 1px solid rgba(13,60,89,0.08);
}

.about-activities-card h4 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-activities-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.about-activities-card li {
    position: relative;
    padding-left: 18px;
    color: #556c7c;
    line-height: 1.65;
}

.about-activities-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(201,168,103,0.10);
}

/* =========================================================
   CERTIFICATES — IMAGES ONLY
========================================================= */

.certificates-luxe-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.certificates-luxe-grid-images {
    column-count: 3;
    column-gap: 22px;
    margin-top: 34px;
}

.certificate-luxe-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 22px;
    break-inside: avoid;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 26px;
    overflow: hidden;
    transition: transform 0.35s ease;
}

.certificate-luxe-image-wrap.only-image {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(201,168,103,0.16);
    box-shadow: 0 18px 40px rgba(13,60,89,0.06);
    padding: 10px;
}

.certificate-luxe-image-wrap.only-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 18px;
    transition: transform 0.7s ease, filter 0.45s ease;
    filter: grayscale(100%);
    opacity: 0.9;
}

.certificate-luxe-card:hover .certificate-luxe-image-wrap.only-image img {
    transform: scale(1.02);
    filter: grayscale(0%);
    opacity: 1;
}

/* LIGHTBOX */
.certificate-lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
}

.certificate-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.certificate-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 24, 36, 0.72);
    backdrop-filter: blur(10px);
}

.certificate-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 32px));
    margin: 4vh auto;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.certificate-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(13,60,89,0.88);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.certificate-lightbox-image-wrap {
    background: #f5f7f9;
    padding: 18px;
}

.certificate-lightbox-image-wrap img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 18px;
}

.lightbox-content-hidden {
    display: none;
}

body.lightbox-open {
    overflow: hidden;
}

/* CTA */
.about-cta-section {
    padding-top: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

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

    .certificates-luxe-grid-images {
        column-count: 2;
    }

    .about-editorial-row,
    .about-editorial-row.reverse {
        grid-template-columns: 1fr;
    }

    .about-editorial-row.reverse .about-editorial-image,
    .about-editorial-row.reverse .about-editorial-content {
        order: initial;
    }
}

@media (max-width: 992px) {
    .about-hero-luxe {
        min-height: auto;
        padding: 110px 0 78px;
        background-position: center;
    }

    .about-story-timeline {
        padding-left: 42px;
    }

    .about-story-item-marker {
        left: -42px;
        width: 30px;
        height: 30px;
        top: 30px;
    }

    .about-story-timeline::before {
        left: 14px;
    }

    .about-story-card {
        padding: 24px 24px;
    }

    .about-editorial-image-frame,
    .about-editorial-image img {
        min-height: 360px;
    }

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

@media (max-width: 768px) {
    .about-hero-luxe {
        padding: 100px 0 64px;
        background-position: 62% center;
    }

    .about-hero-content h1 {
        font-size: clamp(34px, 10vw, 54px);
    }

    .about-hero-title {
        font-size: 18px;
    }

    .about-hero-intro,
    .about-story-paragraphs p {
        font-size: 15px;
    }

    .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-hero-actions .primary-btn,
    .about-hero-actions .secondary-btn {
        width: 100%;
    }

    .about-highlights-grid,
    .certificates-luxe-grid-images {
        grid-template-columns: 1fr;
    }

    .about-story-timeline {
        padding-left: 0;
    }

    .about-story-timeline::before,
    .about-story-item-marker {
        display: none;
    }

    .about-story-card,
    .about-editorial-row {
        padding: 20px;
    }

    .about-story-card::after,
    .about-editorial-row::after {
        inset: 12px;
    }

    .certificates-luxe-grid-images {
        column-count: 1;
    }
}

@media (max-width: 576px) {
    .about-story-luxe,
    .about-editorial-luxe,
    .certificates-luxe-section {
        padding: 70px 0;
    }

    .about-story-card,
    .about-editorial-row,
    .certificate-lightbox-dialog {
        border-radius: 22px;
    }

    .certificate-luxe-image-wrap.only-image {
        border-radius: 22px;
    }

    .certificate-luxe-image-wrap.only-image::after {
        border-radius: 14px;
    }

    .certificate-luxe-image-wrap.only-image img {
        border-radius: 14px;
        height: 240px;
    }
}

/* =========================================================
   CONTACT HERO — DISTINCT / CONTACT PANEL
========================================================= */

.contact-hero-panel {
    position: relative;
    padding: 118px 0 88px;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.10), transparent 24%),
        radial-gradient(circle at top right, rgba(13,60,89,0.06), transparent 26%),
        linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);
    overflow: hidden;
}

.contact-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.34) 0%, transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.contact-hero-panel::after {
    content: "";
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.12) 20%,
        rgba(201,168,103,0.38) 50%,
        rgba(201,168,103,0.12) 80%,
        transparent 100%
    );
}

.contact-hero-panel-inner {
    position: relative;
    z-index: 1;
}

.contact-hero-panel-head {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-panel-head h1 {
    margin: 0 0 18px;
    color: var(--primary);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 800;
}

.contact-hero-panel-text {
    margin: 0 auto;
    max-width: 760px;
    color: #5c7181;
    font-size: 18px;
    line-height: 1.85;
}

.contact-hero-panel-box {
    position: relative;
    margin-top: 40px;
    padding: 22px;
    border-radius: 32px;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 24px 60px rgba(13,60,89,0.07);
    overflow: hidden;
}

.contact-hero-panel-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.contact-hero-panel-box::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.10);
    border-radius: 24px;
    pointer-events: none;
}

.contact-hero-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-hero-card {
    position: relative;
    padding: 26px 22px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(13,60,89,0.96) 0%, rgba(10,52,78,0.96) 100%);
    border: 1px solid rgba(201,168,103,0.20);
    box-shadow: 0 16px 34px rgba(13,60,89,0.12);
    overflow: hidden;
}

.contact-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 34%),
        linear-gradient(180deg, rgba(201,168,103,0.08) 0%, transparent 100%);
    pointer-events: none;
}

.contact-hero-card > * {
    position: relative;
    z-index: 1;
}

.contact-hero-card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.contact-hero-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

.contact-hero-card p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.75;
}

.contact-hero-card a,
.contact-hero-card strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    font-weight: 700;
}

.contact-hero-card a:hover {
    color: var(--accent-soft);
}

.contact-hero-bottom {
    margin-top: 22px;
    text-align: center;
}

.contact-hero-bottom p {
    margin: 0;
    color: #667a89;
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-section-luxe {
    padding: 0 0 96px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}

.contact-card-luxe {
    position: relative;
    padding: 30px 30px 28px;
    border-radius: 30px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 20px 48px rgba(13,60,89,0.06);
    overflow: hidden;
}

.contact-card-luxe::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.contact-card-luxe::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.10);
    border-radius: 22px;
    pointer-events: none;
}

.contact-card-inner {
    position: relative;
    z-index: 1;
}

.contact-card-luxe h2 {
    margin: 10px 0 22px;
    color: var(--primary);
    font-size: clamp(28px, 2.5vw, 38px);
    line-height: 1.12;
}

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

.contact-data-item {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(13,60,89,0.03);
    border: 1px solid rgba(13,60,89,0.06);
}

.contact-data-item h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-data-item p {
    margin: 0;
    color: #556c7c;
    font-size: 16px;
    line-height: 1.75;
}

.contact-data-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-data-item a:hover {
    color: var(--accent);
}

.contact-copy p {
    margin: 0 0 14px;
    color: #617584;
    font-size: 16px;
    line-height: 1.9;
}

.contact-copy p:last-of-type {
    margin-bottom: 0;
}

.contact-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.contact-details-mini {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-mini-card {
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(13,60,89,0.04) 0%, rgba(13,60,89,0.02) 100%);
    border: 1px solid rgba(13,60,89,0.08);
}

.contact-mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.4;
}

.contact-mini-card span {
    display: block;
    color: #617584;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   MAP
========================================================= */

.contact-map-luxe {
    padding: 0 0 96px;
    background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}

.contact-map-card {
    margin-top: 28px;
    position: relative;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 20px 48px rgba(13,60,89,0.06);
    background: #fff;
}

.contact-map-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,168,103,0.12);
    border-radius: 22px;
    pointer-events: none;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* =========================================================
   SOFT CTA
========================================================= */

.contact-cta-section {
    padding-top: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-hero-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-panel {
        padding: 100px 0 72px;
    }

    .contact-hero-panel-head h1 {
        font-size: clamp(34px, 10vw, 52px);
    }

    .contact-hero-panel-text,
    .contact-copy p,
    .contact-data-item p {
        font-size: 15px;
    }

    .contact-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-cta-buttons .phone-btn,
    .contact-cta-buttons .primary-btn {
        width: 100%;
    }

    .contact-details-mini {
        grid-template-columns: 1fr;
    }

    .contact-card-luxe,
    .contact-hero-panel-box {
        padding: 22px 20px;
        border-radius: 24px;
    }

    .contact-card-luxe::after,
    .contact-hero-panel-box::after {
        inset: 12px;
        border-radius: 18px;
    }

    .contact-map-card {
        height: 420px;
        border-radius: 24px;
    }

    .contact-map-card::after {
        inset: 12px;
        border-radius: 18px;
    }
}

@media (max-width: 576px) {
    .contact-section-luxe,
    .contact-map-luxe {
        padding-bottom: 70px;
    }

    .contact-map-card {
        height: 340px;
    }
}



/* =========================================================
   BLOG PAGE HERO
========================================================= */

.blog-page-hero {
    position: relative;
    padding: 150px 0 90px;
    background:
        linear-gradient(180deg, rgba(248, 246, 241, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    overflow: hidden;
}

.blog-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(201, 168, 103, 0.12) 0%, transparent 32%),
        radial-gradient(circle at right center, rgba(13, 60, 89, 0.06) 0%, transparent 30%);
    pointer-events: none;
}

.blog-page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.blog-page-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(201, 168, 103, 0.10);
    border: 1px solid rgba(201, 168, 103, 0.18);
    color: #9f7a34;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.blog-page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #0d3c59;
}

.blog-page-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6f7a;
}


/* =========================================================
   BLOG LIST SECTION
========================================================= */

.blog-list-luxe {
    position: relative;
    padding: 96px 0 110px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.blog-list-luxe::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(201,168,103,0.03) 0%, transparent 22%),
        radial-gradient(circle at 15% 20%, rgba(201,168,103,0.06) 0%, transparent 20%);
}

.blog-list-luxe .container {
    position: relative;
    z-index: 1;
}


/* =========================================================
   BLOG GRID
========================================================= */

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


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card-luxe {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(201,168,103,0.14);
    box-shadow: 0 20px 50px rgba(13,60,89,0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.blog-card-luxe::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 20px;
    border: 1px solid rgba(201,168,103,0.10);
    pointer-events: none;
}

.blog-card-luxe:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(13,60,89,0.12);
    border-color: rgba(201,168,103,0.24);
}


/* =========================================================
   IMAGE
========================================================= */

.blog-card-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #eef2f5;
}

.blog-card-image-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(13,60,89,0.08) 100%);
    transition: opacity 0.35s ease;
}

.blog-card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================================
   BODY
========================================================= */

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 26px 24px;
}

.blog-category {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(201,168,103,0.10);
    border: 1px solid rgba(201,168,103,0.16);
    color: #9f7a34;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-card-body h3 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.blog-card-body h3 a {
    color: #0d3c59;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-body h3 a:hover {
    color: #9f7a34;
}

.blog-card-body p {
    margin: 0 0 22px;
    color: #61717b;
    font-size: 15px;
    line-height: 1.8;
}

.blog-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d3c59;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.blog-read-more span {
    font-size: 18px;
    line-height: 1;
}

.blog-read-more:hover {
    gap: 14px;
    color: #9f7a34;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.blog-empty-state {
    grid-column: 1 / -1;
    padding: 60px 24px;
    border-radius: 28px;
    text-align: center;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(201,168,103,0.14);
    box-shadow: 0 18px 40px rgba(13,60,89,0.06);
}

.blog-empty-state p {
    margin: 0;
    font-size: 18px;
    color: #61717b;
}


/* =========================================================
   PAGINATION
========================================================= */

.pagination-wrap {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.pagination-wrap nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination-wrap .pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(201,168,103,0.14);
    box-shadow: 0 16px 38px rgba(13,60,89,0.06);
}

.pagination-wrap .page-item {
    list-style: none;
}

.pagination-wrap .page-link,
.pagination-wrap .page-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(13,60,89,0.10);
    background: #fff;
    color: #0d3c59;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.pagination-wrap .page-link:hover {
    background: #0d3c59;
    border-color: #0d3c59;
    color: #fff;
}

.pagination-wrap .page-item.active .page-link,
.pagination-wrap .page-item.active span {
    background: linear-gradient(135deg, #c9a867 0%, #b8934f 100%);
    border-color: #c9a867;
    color: #fff;
}

.pagination-wrap .page-item.disabled span {
    opacity: 0.45;
    cursor: not-allowed;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .blog-grid-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .blog-page-hero {
        padding: 128px 0 78px;
    }

    .blog-card-body h3 {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    .blog-page-hero {
        padding: 112px 0 64px;
    }

    .blog-page-hero h1 {
        font-size: clamp(34px, 10vw, 52px);
    }

    .blog-page-hero p {
        font-size: 16px;
    }

    .blog-list-luxe {
        padding: 72px 0 88px;
    }

    .blog-grid-page {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .blog-card-body {
        padding: 24px 22px 22px;
    }

    .blog-card-body h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .blog-page-hero {
        padding: 100px 0 56px;
    }

    .blog-card-luxe,
    .blog-empty-state {
        border-radius: 22px;
    }

    .blog-card-luxe::after {
        inset: 10px;
        border-radius: 16px;
    }

    .blog-card-body {
        padding: 22px 18px 20px;
    }

    .blog-category {
        margin-bottom: 14px;
    }

    .pagination-wrap .pagination {
        gap: 8px;
        padding: 12px 14px;
        border-radius: 24px;
    }

    .pagination-wrap .page-link,
    .pagination-wrap .page-item span {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
    }
}


/* =========================================================
   SINGLE POST - EDITORIAL
========================================================= */

.post-editorial-section {
    position: relative;
    padding: 138px 0 110px;
    background:
        linear-gradient(180deg, #f8f6f1 0%, #ffffff 24%, #fbfcfd 100%);
    overflow: hidden;
}

.post-editorial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.10) 0%, transparent 28%),
        radial-gradient(circle at right 18%, rgba(13,60,89,0.05) 0%, transparent 24%);
}

.post-editorial-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
}

.post-editorial-article {
    max-width: 1080px;
    margin: 0 auto;
}


/* =========================================================
   BACK LINK
========================================================= */

.post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: #0d3c59;
    text-decoration: none;
    font-weight: 700;
    transition: gap 0.25s ease, color 0.25s ease;
}

.post-back-link span {
    font-size: 18px;
    line-height: 1;
}

.post-back-link:hover {
    gap: 14px;
    color: #9f7a34;
}


/* =========================================================
   HEADER SPLIT
========================================================= */

.post-editorial-header-split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 420px);
    gap: 42px;
    align-items: start;
    margin-bottom: 52px;
}

.post-editorial-main {
    min-width: 0;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(201,168,103,0.10);
    border: 1px solid rgba(201,168,103,0.16);
    color: #9f7a34;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.post-date {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13,60,89,0.05);
    border: 1px solid rgba(13,60,89,0.08);
    color: #61717b;
    font-size: 13px;
    font-weight: 600;
}

.post-editorial-main h1 {
    margin: 0 0 22px;
    max-width: 11ch;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #0d3c59;
    text-wrap: balance;
}

.post-excerpt {
    max-width: 680px;
    margin: 0;
    color: #5c6d77;
    font-size: 20px;
    line-height: 1.8;
}


/* =========================================================
   ASIDE IMAGE
========================================================= */

.post-cover-aside {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #eef2f5;
    box-shadow: 0 18px 40px rgba(13,60,89,0.08);
}

.post-cover-aside img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   CONTENT
========================================================= */

.post-content-editorial {
    max-width: 960px;
    color: #3f4f59;
    font-size: 18px;
    line-height: 2;
    word-break: break-word;
}

.post-content-editorial p {
    margin: 0 0 1.45em;
}

.post-content-editorial br + br {
    display: block;
    content: "";
    margin-bottom: 0.8em;
}

.post-content-editorial a {
    color: #9f7a34;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,103,0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.post-content-editorial a:hover {
    color: #0d3c59;
    border-color: rgba(13,60,89,0.35);
}

.post-content-editorial strong {
    color: #0d3c59;
    font-weight: 700;
}

.post-content-editorial em {
    color: #687983;
}

.post-content-editorial h2,
.post-content-editorial h3,
.post-content-editorial h4 {
    margin: 1.8em 0 0.7em;
    color: #0d3c59;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.post-content-editorial h2 {
    font-size: 36px;
}

.post-content-editorial h3 {
    font-size: 28px;
}

.post-content-editorial h4 {
    font-size: 22px;
}

.post-content-editorial ul,
.post-content-editorial ol {
    margin: 0 0 1.6em 1.2em;
    padding: 0;
}

.post-content-editorial li {
    margin-bottom: 0.55em;
}

.post-content-editorial blockquote {
    margin: 2.2em 0;
    padding: 6px 0 6px 24px;
    border-left: 3px solid #c9a867;
    color: #596b75;
    font-size: 1.02em;
    font-style: italic;
}

.post-content-editorial img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 1.8em 0;
}

.post-content-editorial table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 16px;
    background: #fff;
}

.post-content-editorial th,
.post-content-editorial td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(13,60,89,0.08);
    text-align: left;
}

.post-content-editorial th {
    color: #0d3c59;
    font-weight: 700;
    background: rgba(201,168,103,0.06);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .post-editorial-header-split {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 34px;
    }

    .post-editorial-main h1 {
        max-width: 100%;
        font-size: clamp(36px, 5.6vw, 56px);
    }
}

@media (max-width: 992px) {
    .post-editorial-section {
        padding: 124px 0 88px;
    }

    .post-editorial-header-split {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 36px;
    }

    .post-cover-aside {
        max-width: 520px;
    }

    .post-excerpt {
        font-size: 18px;
    }

    .post-content-editorial {
        max-width: 100%;
        font-size: 17px;
    }

    .post-content-editorial h2 {
        font-size: 31px;
    }

    .post-content-editorial h3 {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .post-editorial-section {
        padding: 108px 0 72px;
    }

    .post-back-link {
        margin-bottom: 26px;
    }

    .post-editorial-main h1 {
        margin-bottom: 18px;
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.06;
    }

    .post-excerpt {
        font-size: 17px;
        line-height: 1.75;
    }

    .post-cover-aside {
        max-width: 100%;
        border-radius: 20px;
    }

    .post-content-editorial {
        font-size: 16px;
        line-height: 1.9;
    }

    .post-content-editorial h2 {
        font-size: 27px;
    }

    .post-content-editorial h3 {
        font-size: 23px;
    }

    .post-content-editorial h4 {
        font-size: 19px;
    }
}

@media (max-width: 576px) {
    .post-editorial-container {
        width: min(100%, calc(100% - 24px));
    }

    .post-meta {
        gap: 10px;
        margin-bottom: 16px;
    }

    .blog-category,
    .post-date {
        padding: 7px 12px;
    }

    .post-content-editorial {
        font-size: 15.5px;
    }

    .post-content-editorial blockquote {
        padding-left: 18px;
    }

    .post-content-editorial th,
    .post-content-editorial td {
        padding: 12px 12px;
    }
}


/* =========================================================
   PREPARATION PAGE — JAK PRZYGOTOWAĆ SIĘ DO WIZYTY
========================================================= */

.prep-hero {
    position: relative;
    padding: 130px 0 88px;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.10), transparent 24%),
        radial-gradient(circle at 88% 16%, rgba(13,60,89,0.06), transparent 22%),
        linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);
    overflow: hidden;
}

.prep-hero::before {
    content: "";
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.12) 20%,
        rgba(201,168,103,0.38) 50%,
        rgba(201,168,103,0.12) 80%,
        transparent 100%
    );
}

.prep-hero-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.prep-hero-copy h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    max-width: 12ch;
}

.prep-hero-text {
    margin: 22px 0 30px;
    max-width: 680px;
    font-size: 18px;
    line-height: 1.8;
    color: #566c7c;
}

.prep-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.prep-hero {
    position: relative;
    padding: 138px 0 120px;
    background:
        linear-gradient(90deg, rgba(7, 34, 50, 0.78) 0%, rgba(7, 34, 50, 0.58) 42%, rgba(7, 34, 50, 0.22) 100%),
        url('/images/preparation-hero.webp') center center / cover no-repeat;
    overflow: visible;
}

.prep-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.18), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.prep-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.prep-hero .section-label {
    color: var(--accent-soft);
}

.prep-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 800;
    max-width: 12ch;
}

.prep-hero-text {
    margin: 22px 0 30px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
}

.prep-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.prep-hero .secondary-btn {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    backdrop-filter: blur(8px);
}

.prep-hero .secondary-btn:hover {
    background: rgba(255,255,255,0.16);
}

.prep-hero-facts {
    position: relative;
    z-index: 3;
    margin-top: 56px;
    margin-bottom: -170px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.prep-hero-fact {
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 18px 40px rgba(13,60,89,0.10);
}

.prep-hero-fact strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 16px;
    line-height: 1.4;
}

.prep-hero-fact span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.prep-section {
    padding: 210px 0 96px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

@media (max-width: 1200px) {
    .prep-hero-facts {
        grid-template-columns: 1fr;
        margin-bottom: -140px;
    }

    .prep-section {
        padding-top: 180px;
    }
}

@media (max-width: 992px) {
    .prep-hero {
        padding: 118px 0 110px;
        background-position: center;
    }

    .prep-section,
    .prep-warning-section {
        padding-bottom: 78px;
    }
}

@media (max-width: 768px) {
    .prep-hero {
        padding: 104px 0 90px;
    }

    .prep-hero h1 {
        font-size: clamp(34px, 10vw, 52px);
        max-width: 100%;
    }

    .prep-hero-text {
        font-size: 15px;
    }

    .prep-hero-facts {
        margin-top: 34px;
        margin-bottom: -110px;
    }

    .prep-hero-fact {
        border-radius: 18px;
    }

    .prep-section {
        padding-top: 150px;
    }
}

@media (max-width: 576px) {
    .prep-hero {
        padding: 96px 0 76px;
    }

    .prep-hero-facts {
        margin-bottom: -90px;
    }

    .prep-section {
        padding-top: 132px;
    }
}
.prep-mini-card strong {
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 8px;
}

.prep-mini-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.prep-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.prep-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.prep-card {
    position: relative;
    padding: 28px 24px 26px;
    border-radius: 28px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 18px 40px rgba(13,60,89,0.07);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.prep-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 26%),
        linear-gradient(180deg, transparent 0%, rgba(201,168,103,0.03) 100%);
    pointer-events: none;
}

.prep-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,168,103,0.10);
    border-radius: 20px;
    pointer-events: none;
}

.prep-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(13,60,89,0.10);
    border-color: rgba(201,168,103,0.28);
}

.prep-card-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(201,168,103,0.12);
    border: 1px solid rgba(201,168,103,0.22);
    font-size: 26px;
    line-height: 1;
}

.prep-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.25;
}

.prep-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #5f7383;
    font-size: 15px;
    line-height: 1.8;
}

.prep-warning-section {
    padding: 0 0 96px;
    background: #ffffff;
}

.prep-warning-box {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3c59 0%, #0a344e 45%, #072f46 100%);
    box-shadow: 0 24px 52px rgba(6,40,60,0.18);
    border: 1px solid rgba(201,168,103,0.18);
}

.prep-warning-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(201,168,103,0.16), transparent 22%);
    pointer-events: none;
}

.prep-warning-copy,
.prep-warning-list {
    position: relative;
    z-index: 1;
}

.prep-warning-copy .section-label {
    color: var(--accent-soft);
}

.prep-warning-copy h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
}

.prep-warning-copy p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.75;
}

.prep-warning-list {
    display: grid;
    gap: 14px;
}

.prep-warning-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(8px);
}

.prep-warning-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 7px;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(201,168,103,0.10);
    flex-shrink: 0;
}

.prep-warning-item strong {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.prep-cta-section {
    padding: 0 0 72px;
    background: #ffffff;
}

.prep-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(249,251,252,0.96) 100%);
    border: 1px solid rgba(13,60,89,0.08);
    box-shadow: 0 20px 44px rgba(13,60,89,0.08);
}

.prep-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 20%),
        linear-gradient(90deg, transparent 0%, rgba(201,168,103,0.04) 50%, transparent 100%);
    pointer-events: none;
}

.prep-cta-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,103,0.38) 20%,
        rgba(201,168,103,0.95) 50%,
        rgba(201,168,103,0.38) 80%,
        transparent 100%
    );
}

.prep-cta-copy,
.prep-cta-actions {
    position: relative;
    z-index: 1;
}

.prep-cta-copy h2 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.12;
}

.prep-cta-copy p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.prep-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

/* responsive */
@media (max-width: 1200px) {
    .prep-hero-shell,
    .prep-warning-box,
    .prep-cta-box {
        grid-template-columns: 1fr;
    }

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

    .prep-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    .prep-hero {
        padding: 112px 0 76px;
    }

    .prep-section,
    .prep-warning-section {
        padding-bottom: 78px;
    }

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

@media (max-width: 768px) {
    .prep-hero-copy h1 {
        font-size: clamp(34px, 10vw, 52px);
        max-width: 100%;
    }

    .prep-hero-text,
    .prep-card p,
    .prep-warning-copy p,
    .prep-cta-copy p {
        font-size: 15px;
    }

    .prep-hero-mini-grid {
        grid-template-columns: 1fr;
    }

    .prep-warning-box,
    .prep-cta-box {
        padding: 26px 20px;
    }

    .prep-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .prep-cta-actions .phone-btn,
    .prep-cta-actions .primary-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .prep-hero {
        padding: 100px 0 64px;
    }

    .prep-section,
    .prep-warning-section {
        padding-bottom: 70px;
    }

    .prep-card,
    .prep-warning-box,
    .prep-cta-box,
    .prep-hero-panel-card,
    .prep-mini-card {
        border-radius: 22px;
    }

    .prep-card::after {
        inset: 12px;
        border-radius: 16px;
    }
}



/* ========= COOKIE CONSENT ========= */


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 2px;
    font-weight: 700;
    transition: .25s ease;
    border: 1px solid var(--primary-dark);
    background: var(--primary-dark);
    color: #fff;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: transparent;
    cursor: pointer;
    color: var(--primary-dark);
}


.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    background: transparent;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-outline-dark:hover {
    border: 1px solid var(--primary-dark);
    color: white;
    background: var(--primary-dark) ;
    cursor: pointer;
}

.cookie-consent,
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 6000;
}

.cookie-consent[hidden],
.cookie-modal[hidden] {
    display: none !important;
}

.cookie-consent__backdrop,
.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 40, 60, 0.5);
    backdrop-filter: blur(2px);
}

.cookie-consent {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.cookie-consent__panel {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 24px));
    margin: 0 auto 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    pointer-events: auto;
    overflow: hidden;
}

.cookie-consent__content {
    padding: 28px;
}

.cookie-consent__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--accent);
    margin: 0 0 10px;
    font-weight: 700;
}

.cookie-consent__content h2,
.cookie-modal__panel h2 {
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--primary-deep);
}

.cookie-consent__content p,
.cookie-modal__intro,
.cookie-option p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.cookie-consent__actions,
.cookie-modal__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.cookie-consent__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--muted);
}

.cookie-consent__links a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
    margin-top: 10px;
}

.cookie-consent__links a:hover {
    color: var(--primary-dark);
}

.cookie-consent__links span {
    color: var(--muted);
}

.cookie-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.cookie-modal__panel {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 28px;
}

.cookie-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-modal__close:hover {
    background: var(--bg);
    color: var(--primary);
    border-color: var(--border);
}

.cookie-modal__close:focus-visible,
.cookie-consent__links a:focus-visible,
.cookie-switch input:focus-visible + span {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.cookie-modal__intro {
    margin-bottom: 8px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.cookie-option:first-of-type {
    margin-top: 18px;
}

.cookie-option h3 {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 0.95rem;
    margin: 0 0 6px;
    line-height: 1.35;
}

.cookie-option--locked {
    opacity: 0.95;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 54px;
    height: 30px;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-switch span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #d9e0e6;
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.cookie-switch span::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(13, 60, 89, 0.16);
    transition: transform 0.25s ease;
}

.cookie-switch input:checked + span {
    background: var(--primary);
    border-color: var(--primary);
}

.cookie-switch input:checked + span::after {
    transform: translateX(24px);
}

.cookie-switch input:disabled + span {
    background: var(--accent-soft);
    border-color: var(--gold-line);
    cursor: not-allowed;
}

body.cookie-modal-open {
    overflow: hidden;
}


/* ========= LEGAL PAGES ========= */

.legal-page {
    max-width: 980px;
}

.legal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 34px;
}

.legal-card h2 {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 1.05rem;
    margin: 28px 0 10px;
    line-height: 1.4;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
    line-height: 1.7;
}

.legal-card p {
    margin: 0 0 14px;
}

.legal-card ul {
    margin: 0 0 16px 18px;
    padding: 0;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.legal-card a:hover {
    color: var(--primary-dark);
}

/* ========= RESPONSIVE ========= */

@media (max-width: 768px) {
    .cookie-consent__content,
    .cookie-modal__panel,
    .legal-card {
        padding: 24px;
    }

    .cookie-consent__panel {
        width: calc(100% - 16px);
        margin-bottom: 8px;
        border-radius: 22px;
    }

    .cookie-consent__actions,
    .cookie-modal__actions {
        flex-direction: column;
    }

    .cookie-consent__actions .btn,
    .cookie-modal__actions .btn {
        width: 100%;
    }

    .cookie-option {
        gap: 14px;
    }

    .cookie-option h3 {
        font-size: 0.92rem;
    }

    .whatsapp {
        width: 160px;
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 576px) {
    .cookie-consent__content h2,
    .cookie-modal__panel h2 {
        font-size: 1.25rem;
    }

    .cookie-consent__content,
    .cookie-modal__panel,
    .legal-card {
        padding: 20px;
    }

    .cookie-option {
        align-items: center;
    }

    .cookie-consent__links {
        font-size: 0.9rem;
    }

    .whatsapp {
        width: 140px;
    }
}



/* ========= LEGAL / PRIVACY POLICY ========= */

.page-hero.legal-hero {
    padding: 72px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(201,168,103,0.08), transparent 28%),
        linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.page-hero.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.55) 0%, transparent 40%),
        linear-gradient(180deg, rgba(13,60,89,0.02) 0%, rgba(13,60,89,0.00) 100%);
}

.page-hero.legal-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 800;
}

.legal-section {
    padding-top: 28px;
    padding-bottom: 96px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.legal-page {
    max-width: 980px;
}

.legal-intro {
    max-width: 760px;
    margin-left: 0;
}

.legal-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: 34px;
}

.legal-card-premium {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,251,252,1) 100%);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(13,60,89,0.08);
}

.legal-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 32%),
        linear-gradient(180deg, rgba(201,168,103,0.03) 0%, transparent 30%);
}

.legal-card-premium > * {
    position: relative;
    z-index: 1;
}

.legal-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(13,60,89,0.04);
    border: 1px solid rgba(201,168,103,0.16);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.legal-card h2 {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 1.02rem;
    margin: 30px 0 12px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 10px;
}

.legal-card h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
    border-radius: 999px;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.legal-card p {
    margin: 0 0 15px;
}

.legal-card strong {
    color: var(--primary);
    font-weight: 700;
}

.legal-card ul {
    margin: 0 0 18px 18px;
    padding: 0;
}

.legal-card li {
    margin-bottom: 8px;
    padding-left: 2px;
}

.legal-card a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.legal-card a:hover {
    color: var(--primary-dark);
}

.legal-card blockquote {
    margin: 20px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    background: rgba(201,168,103,0.07);
    border-radius: 0 16px 16px 0;
    color: var(--text);
}

@media (max-width: 768px) {
    .page-hero.legal-hero {
        padding: 54px 0 28px;
    }

    .legal-section {
        padding-top: 20px;
        padding-bottom: 76px;
    }

    .legal-card,
    .legal-card-premium {
        padding: 24px;
        border-radius: 22px;
    }

    .legal-meta {
        gap: 8px;
        font-size: 11px;
        margin-bottom: 20px;
    }

    .legal-card p,
    .legal-card li {
        font-size: 14px;
        line-height: 1.75;
    }

    .legal-card h2 {
        font-size: 0.96rem;
        margin: 24px 0 10px;
    }
}

@media (max-width: 576px) {
    .legal-card,
    .legal-card-premium {
        padding: 20px;
    }

    .legal-meta {
        display: flex;
        border-radius: 16px;
        padding: 10px 12px;
    }
}
