:root {
    --promo-h: 34px;
    --topbar-h: 56px;
    --nav-h: 60px;
    --header-h: 74px;
    --branding-h: 72px;
    --brand: #3bb3e6;
    --cta: #d08a49;
    --cta-hover: #c57e3c;
    --radius: 12px;

    --page-bg: #ffffff;
    --page-text: #0f172a;
    --page-muted: #4b5563;
    --section-alt-bg: #f6f7f9;

    --surface: #ffffff;
    --surface-2: #f6f7f9;
    --border: rgba(15, 23, 42, 0.12);
    --shadow: 0 10px 22px rgba(17, 24, 39, 0.08);

    --header-bg: #ffffff;
    --header-text: #0f172a;
    --header-muted: #374151;
    --header-border: rgba(15, 23, 42, 0.14);
    --header-chip-bg: rgba(15, 23, 42, 0.06);
    --header-chip-border: rgba(15, 23, 42, 0.12);
    --header-hover: rgba(15, 23, 42, 0.06);

    --on-dark-text: rgba(255, 255, 255, 0.92);
    --on-dark-muted: rgba(255, 255, 255, 0.70);
    --on-dark-border: rgba(255, 255, 255, 0.10);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --page-bg: #070b10;
        --page-text: rgba(255, 255, 255, 0.92);
        --page-muted: rgba(255, 255, 255, 0.70);
        --section-alt-bg: #0b0f14;

        --surface: #0b0f14;
        --surface-2: #101826;
        --border: rgba(255, 255, 255, 0.10);
        --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

        --header-bg: #0c1118;
        --header-text: rgba(255, 255, 255, 0.92);
        --header-muted: rgba(255, 255, 255, 0.70);
        --header-border: rgba(255, 255, 255, 0.10);
        --header-chip-bg: rgba(255, 255, 255, 0.08);
        --header-chip-border: rgba(255, 255, 255, 0.14);
        --header-hover: rgba(255, 255, 255, 0.06);
    }
}

:root[data-theme="dark"] {
    --page-bg: #070b10;
    --page-text: rgba(255, 255, 255, 0.92);
    --page-muted: rgba(255, 255, 255, 0.70);
    --section-alt-bg: #0b0f14;

    --surface: #0b0f14;
    --surface-2: #101826;
    --border: rgba(255, 255, 255, 0.10);
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

    --header-bg: #0c1118;
    --header-text: rgba(255, 255, 255, 0.92);
    --header-muted: rgba(255, 255, 255, 0.70);
    --header-border: rgba(255, 255, 255, 0.10);
    --header-chip-bg: rgba(255, 255, 255, 0.08);
    --header-chip-border: rgba(255, 255, 255, 0.14);
    --header-hover: rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--page-text);
    background: var(--page-bg);
    padding-top: calc(var(--header-h) + var(--branding-h));
}

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

/* ── Page Fade-In Animation ── */
/* ── Smooth Page Fade-In Animations ── */
@keyframes page-fade-in {
    0%   { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes content-fade-in {
    0%   { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

:root {
    --branding-title-size: 20px;
    --branding-tagline-size: 11px;
    --branding-title-font: inherit;
    --branding-tagline-font: inherit;
    --branding-title-spacing: 0px;
    --branding-tagline-spacing: 0px;    --branding-title-spacing-mobile: 0px;
    --branding-tagline-spacing-mobile: 0px;
  }

/* ══ Cookie Consent Banner — vertical card, left bottom (matches stat-item cards) ══ */
.cookie-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  top: auto;
  transform: translateY(24px);
  z-index: 1500;
  width: min(250px, calc(100vw - 24px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 26px 22px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--surface) 96%, var(--cta));
  border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
}
.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-consent__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, var(--cta) 18%, transparent);
  color: var(--cta);
  font-size: 21px;
  margin-bottom: 2px;
}
.cookie-consent__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--page-text);
}
.cookie-consent__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}
.cookie-consent .cookie-consent__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.cookie-consent .cookie-consent__btn:hover {
  transform: translateY(-1px);
}
.cookie-consent .cookie-consent__btn--primary {
  background: var(--cta) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.cookie-consent .cookie-consent__btn--primary:hover {
  background: var(--cta-hover) !important;
}
.cookie-consent .cookie-consent__btn--ghost {
  background: transparent !important;
  border: 2px solid var(--cta) !important; /* fallback for browsers without color-mix() */
  border-color: color-mix(in oklab, var(--cta) 55%, var(--border)) !important;
  color: var(--page-text) !important;
}
.cookie-consent .cookie-consent__btn--ghost:hover {
  border-color: var(--page-muted) !important;
}
.cookie-consent__link {
  font-size: 12px;
  font-weight: 800;
  color: var(--cta);
  text-decoration: none;
  white-space: nowrap;
}
.cookie-consent__link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-consent {
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%) translateY(24px);
    width: min(340px, calc(100vw - 24px));
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    border-radius: 28px;
    padding: 18px 20px;
    gap: 10px;
  }
  .cookie-consent.is-visible {
    transform: translateX(-50%) translateY(0);
  }
  .cookie-consent__text {
    font-size: 12px;
  }
  .cookie-consent__actions {
    width: 100%;
  }
  .cookie-consent .cookie-consent__btn {
    min-width: 140px;
  }
}

main {
    animation: content-fade-in 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-branding-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: var(--branding-h);
    z-index: 91;
    background: color-mix(in oklab, var(--header-bg) 96%, transparent);
    border-bottom: 1px solid var(--header-border);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-block: 6px;
    animation: page-fade-in 550ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-branding-bar__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.1;
}

.site-branding-bar__name {
    font-size: var(--branding-title-size);
    font-weight: 900;
    color: var(--header-text);
    letter-spacing: var(--branding-title-spacing, 0px);
    font-family: var(--branding-title-font, inherit);
}

.site-branding-bar__tagline {
    font-size: var(--branding-tagline-size);
    font-weight: 600;
    color: var(--page-muted);
    letter-spacing: var(--branding-tagline-spacing, 0px);
    font-family: var(--branding-tagline-font, inherit);
    text-transform: uppercase;
}

@media (max-width: 640px) {
    :root {
        --branding-h: 56px;
    }
    .site-branding-bar__name {
        font-size: 16px;
        letter-spacing: var(--branding-title-spacing-mobile, var(--branding-title-spacing, 0px));
    }
    .site-branding-bar__tagline {
        font-size: 10px;
        letter-spacing: var(--branding-tagline-spacing-mobile, var(--branding-tagline-spacing, 0px));
    }
}

.site-header {
    position: fixed;
    top: var(--branding-h);
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 90;
    background: color-mix(in oklab, var(--header-bg) 92%, transparent);
    border-bottom: 1px solid var(--header-border);
    backdrop-filter: blur(8px);
}

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-header__logo {
    width: 68px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid var(--header-border);
    background: #ffffff;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.site-header__logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header__link {
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
    color: var(--header-text);
    background: color-mix(in oklab, var(--header-hover) 60%, transparent);
    border: 1px solid color-mix(in oklab, var(--header-border) 70%, transparent);
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-header__link:hover {
    background: color-mix(in oklab, var(--header-hover) 100%, transparent);
    border-color: var(--header-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

.site-header__link[aria-current="page"] {
    background: var(--cta);
    border-color: var(--cta);
    color: var(--on-dark-text);
    box-shadow: 0 2px 10px rgba(208, 138, 73, 0.28);
    font-weight: 900;
}

.site-header__link[aria-current="page"]:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
}

.lang-toggle {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--header-border);
    background: color-mix(in oklab, var(--header-hover) 60%, transparent);
    color: var(--header-text);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    flex: 0 0 auto;
    white-space: nowrap;
}

.lang-toggle:hover {
    background: color-mix(in oklab, var(--header-hover) 100%, transparent);
    border-color: var(--cta);
    box-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

.site-header__menu-btn {
    height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--header-border);
    background: var(--surface);
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--header-text);
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-header__menu-btn:hover {
    background: color-mix(in oklab, var(--header-hover) 100%, transparent);
    border-color: var(--header-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    width: 60px;
    height: 40px;
    border-radius: 999px;
    background: #25d366;
    color: #0b1220;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    font-family: inherit;
    text-decoration: none;
}

.whatsapp-fab i {
    font-size: 26px;
}

.backdrop {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(360px, 92vw);
    z-index: 1001;
    background: var(--surface);
    border-radius: 40px 0 0 40px;
    border-left: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    transform: translateX(110%);
    transition: transform 180ms ease;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 14px;
}

[dir="rtl"] .side-menu {
    right: auto;
    left: 0;
    border-radius: 0 40px 40px 0;
    border-left: none;
    border-right: 1px solid var(--border);
    transform: translateX(-110%);
}

.side-menu.is-open {
    transform: translateX(0);
}

.side-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.side-menu__brand {
    width: 72px;
    height: 56px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.side-menu__brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.side-menu__close {
    width: 52px;
    height: 44px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--page-text);
    transition: background 160ms ease, border-color 160ms ease;
}

.side-menu__link:hover {
    background: var(--surface-2);
    border-color: var(--cta);
}

.side-menu__link[aria-current="page"] {
    background: var(--cta);
    color: #ffffff;
    border-color: var(--cta);
}

.side-menu__nav {
    display: grid;
    gap: 8px;
}

.side-menu__link {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-weight: 700;
    color: var(--page-text);
}

.side-menu__cta {
    margin-top: 6px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--page-text);
    font-weight: 800;
}

.side-menu__cta[aria-current="page"],
.side-menu__cta.is-active {
    background: var(--cta);
    border-color: var(--cta);
    color: #111827;
}

@media (min-width: 768px) {
    .side-menu__section > .side-menu__cta,
    .side-menu__section > .side-menu__link {
        display: none;
    }
}

.side-menu__section {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    display: grid;
    gap: 4px;
}

.side-menu__label {
    font-weight: 800;
    color: var(--page-text);
    font-size: 13px;
}

.side-menu__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--page-text);
    font-weight: 700;
}

.side-menu__meta i {
    color: color-mix(in oklab, var(--cta) 75%, #111827);
}

.lang {
    display: inline-flex;
    gap: 8px;
}

.lang__btn {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    font-weight: 800;
    color: var(--page-text);
    min-width: 54px;
}

.lang__btn[aria-pressed="true"] {
    border-color: color-mix(in oklab, var(--cta) 40%, var(--border));
    background: color-mix(in oklab, var(--cta) 16%, var(--surface));
}

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

.contact-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in oklab, var(--cta) 32%, var(--border));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.contact-card:active {
    transform: translateY(-1px);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        color-mix(in oklab, var(--cta) 22%, var(--surface)) 0%,
        color-mix(in oklab, var(--brand) 14%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in oklab, var(--cta) 22%, var(--border));
    color: color-mix(in oklab, var(--cta) 70%, var(--page-text));
}

.contact-card__label {
    font-weight: 900;
    font-size: 14px;
    color: var(--page-text);
}

.contact-card__value {
    color: var(--page-muted);
    font-weight: 700;
    line-height: 1.35;
}

.about__panel--pro {
    padding: 24px;
}

.about__panel-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.about__panel-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        color-mix(in oklab, var(--cta) 20%, var(--surface)) 0%,
        color-mix(in oklab, var(--brand) 12%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in oklab, var(--cta) 20%, var(--border));
    color: color-mix(in oklab, var(--cta) 70%, var(--page-text));
    flex: 0 0 auto;
}

.about__owner-img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
}

.about__panel-sub {
    margin: 6px 0 0;
    color: var(--page-muted);
    font-weight: 600;
    line-height: 1.6;
}

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

.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--promo-h);
    z-index: 60;
    background: var(--brand);
    color: #0b1220;
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.topbar {
    position: fixed;
    top: var(--promo-h);
    left: 0;
    right: 0;
    height: var(--topbar-h);
    z-index: 70;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
}

.topbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
}

.topbar__mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--header-chip-bg);
    border: 1px solid var(--header-chip-border);
    display: grid;
    place-items: center;
    color: var(--header-text);
    font-weight: 800;
}

.topbar__name {
    color: var(--header-text);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.topbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--header-muted);
    font-size: 13px;
}

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

.theme__btn {
    width: auto;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--page-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.theme__btn i {
    font-size: 16px;
}

.theme__btn[aria-pressed="true"] {
    border-color: color-mix(in oklab, var(--cta) 40%, var(--border));
    background: color-mix(in oklab, var(--cta) 16%, var(--surface));
    color: var(--page-text);
}

.theme__btn:hover {
    border-color: color-mix(in oklab, var(--cta) 32%, var(--border));
    background: var(--surface-2);
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background 140ms ease, color 140ms ease;
}

.topbar__link:hover {
    background: var(--header-hover);
    color: var(--header-text);
}

.topbar__search {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--header-border);
    border-radius: 999px;
    background: var(--header-hover);
    color: var(--header-muted);
}

.topbar__search input {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--header-text);
    width: 180px;
    font-size: 13px;
}

.topbar__search input::placeholder {
    color: color-mix(in oklab, var(--header-muted) 75%, transparent);
}

.nav {
    position: fixed;
    top: calc(var(--promo-h) + var(--topbar-h));
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 80;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
}

.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nav__logo {
    color: var(--header-text);
    font-weight: 800;
    letter-spacing: 0.4px;
}

.nav__toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--header-border);
    color: var(--header-text);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

.nav__menu {
    display: block;
}

.nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
}

.nav__link {
    color: color-mix(in oklab, var(--header-text) 82%, transparent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 10px 2px;
    transition: color 140ms ease;
}

.nav__link:hover {
    color: var(--header-text);
}

.nav__cta {
    background: var(--cta);
    color: #111827;
    padding: 10px 14px;
    border-radius: 999px;
}

.nav__cta:hover {
    color: #111827;
    background: var(--cta-hover);
}

.hero {
    position: relative;
    height: min(720px, calc(100vh - var(--header-h) - var(--branding-h)));
    min-height: 560px;
    background: #05070a;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(208, 138, 73, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(59, 179, 230, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.hero--small {
    height: min(520px, calc(70vh - var(--header-h) - var(--branding-h)));
    min-height: 360px;
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 700ms ease, transform 1200ms ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.40) 46%, rgba(0, 0, 0, 0.25) 100%);
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 36px 0;
    color: var(--on-dark-text);
}

.hero__kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 12px;
}

.hero__title {
    margin: 0;
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.6px;
}

.hero__price {
    margin: 4px 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.90);
}

.hero__unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    pointer-events: none;
}

.hero__arrow {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--on-dark-text);
    border-radius: 999px;
    cursor: pointer;
    transition: background 160ms ease;
}

.hero__arrow:hover {
    background: rgba(0, 0, 0, 0.50);
}

.hero__dots {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    padding: 0;
}

.hero__dot.is-active {
    background: var(--cta);
    border-color: var(--cta);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn--primary {
    background: var(--cta);
    color: #111827;
}

.btn--primary:hover {
    background: var(--cta-hover);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--on-dark-text);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.10);
}

.btn--outline {
    background: transparent;
    border-color: var(--border);
    color: var(--page-text);
}

.btn--outline:hover {
    border-color: color-mix(in oklab, var(--border) 50%, var(--page-text));
}



.specs {
    background: var(--surface);
    color: var(--page-text);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.spec {
    padding: 12px 10px;
    border-radius: 10px;
}

.spec__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.24px;
    color: var(--page-muted);
    font-weight: 700;
    margin-bottom: 8px;
}

.spec__value {
    font-size: 13px;
    font-weight: 600;
    color: var(--page-text);
}

.section {
    padding: 80px 0;
    position: relative;
}

.section--alt {
    background: var(--section-alt-bg);
}

.section--gradient {
    background: linear-gradient(180deg, var(--section-alt-bg) 0%, var(--page-bg) 100%);
}

.section__head {
    max-width: 760px;
    margin-bottom: 36px;
}

.section__head h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.6vw, 42px);
    letter-spacing: -0.6px;
    line-height: 1.15;
}

.section__head p {
    margin: 0;
    color: var(--page-muted);
    font-size: 17px;
    line-height: 1.6;
}

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

.btn--sm {
    padding: 10px 14px;
    font-size: 12px;
}

.product-carousel {
    position: relative;
}

.product-carousel__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 10px;
    border-radius: var(--radius);
    scroll-behavior: smooth;
}

.product-carousel__track::-webkit-scrollbar {
    height: 10px;
}

.product-carousel__track::-webkit-scrollbar-thumb {
    background: color-mix(in oklab, var(--border) 55%, transparent);
    border-radius: 999px;
}

.product-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--surface) 90%, transparent);
    color: var(--page-text);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    z-index: 2;
}

.product-carousel__arrow[data-xscroll-prev] {
    inset-inline-start: -8px;
}

.product-carousel__arrow[data-xscroll-next] {
    inset-inline-end: -8px;
}

.product-tile {
    scroll-snap-align: start;
    flex: 0 0 280px;
    border: 1px solid var(--border);
    border-radius: 80px;
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
}

.product-tile__img {
    aspect-ratio: 16 / 10;
    background: #0b0f14;
    overflow: hidden;
}

.product-tile__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-tile__body {
    padding: 16px;
    display: grid;
    gap: 10px;
    text-align: center;
}

.product-tile__title {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
}

.product-tile__sub {
    margin: 0;
    color: var(--page-muted);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.35;
}

.product-tile__price {
    font-weight: 900;
    color: var(--page-text);
    font-size: 14px;
}

.product-tile__price span {
    color: var(--page-muted);
    font-weight: 800;
}

.product-tile__body .btn {
    width: 100%;
}

.product-tile__body .btn--primary {
    padding: 12px 18px;
    font-size: 13px;
}

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

.product-detail {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 18px;
    align-items: center;
}

.product-detail__hero {
    border-radius: 80px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.product-detail__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 200ms ease;
    cursor: zoom-in;
}

.product-detail__hero.is-zoom img {
    transform: scale(1.08);
}

.product-detail__gallery {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
}

.product-detail__gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 160ms ease, transform 160ms ease;
}

.product-detail__gallery img:hover {
    transform: scale(1.02);
}

.product-detail__gallery img.is-active {
    border-color: var(--cta);
}

/* ── Section Titles for Specs Tab (Key Features / Specifications) ── */
.pd-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--page-text);
    margin-bottom: 14px;
    padding: 8px 16px 8px 0;
    grid-column: 1 / -1;
}

.pd-section-title i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--cta);
    flex: 0 0 auto;
}

@media (max-width: 640px) {
    .pd-section-title {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .pd-section-title i {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

/* ── Scroll Reveal Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 100ms; }
[data-reveal-delay="2"] { transition-delay: 200ms; }
[data-reveal-delay="3"] { transition-delay: 300ms; }
[data-reveal-delay="4"] { transition-delay: 400ms; }

/* ── Loading Skeletons ── */
@keyframes skeleton-pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.skeleton {
    background: color-mix(in oklab, var(--border) 40%, transparent);
    border-radius: 8px;
    animation: skeleton-pulse 1.6s ease-in-out infinite;
}

.skeleton--img {
    aspect-ratio: 16 / 10;
    width: 100%;
}

.skeleton--text {
    height: 16px;
    width: 80%;
    margin: 8px auto;
}

.skeleton--text-sm {
    height: 12px;
    width: 60%;
    margin: 6px auto;
}

.skeleton--btn {
    height: 40px;
    width: 90%;
    margin: 8px auto;
    border-radius: 999px;
}

.product-tile .skeleton {
    margin-bottom: 10px;
}

/* Hide skeleton once content loads — JS removes .skeleton class */

/* ── Stats Bar ── */
.stats-bar {
    background: linear-gradient(135deg, var(--page-bg) 0%, var(--section-alt-bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 28px 24px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 300ms ease;
}

.stat-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    border-color: color-mix(in oklab, var(--cta) 30%, var(--border));
}

.stat-item__icon {
    font-size: 34px;
    color: var(--cta);
    margin-bottom: 14px;
    transition: transform 300ms ease;
}

.stat-item:hover .stat-item__icon {
    transform: scale(1.15);
}

.stat-item__number {
    font-size: 44px;
    font-weight: 900;
    color: var(--page-text);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.stat-item__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--page-muted);
    margin-top: 8px;
}

@media (max-width: 820px) {
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-item__number {
        font-size: 32px;
    }
}

/* ── Testimonials ── */
.testimonials__slider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.testimonials__viewport {
    flex: 1;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform 400ms ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 36px 32px;
    border: 1px solid color-mix(in oklab, var(--cta) 10%, var(--border));
    border-radius: 80px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    box-sizing: border-box;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.testimonial-card__stars {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--page-text);
    margin: 0 0 18px;
    font-weight: 500;
}

.testimonial-card__name {
    font-weight: 700;
    color: var(--page-text);
    font-size: 15px;
}

.testimonials__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--page-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    flex: 0 0 auto;
    transition: background 160ms ease, border-color 160ms ease;
}

.testimonials__arrow:hover {
    border-color: var(--cta);
    background: color-mix(in oklab, var(--cta) 12%, var(--surface));
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface-2);
    cursor: pointer;
    padding: 0;
    transition: background 160ms ease, border-color 160ms ease;
}

.testimonials__dot.is-active {
    background: var(--cta);
    border-color: var(--cta);
}

.section__head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 84px;
    z-index: 89;
    width: 56px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--page-text);
    visibility: hidden;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 160ms ease, transform 160ms ease, opacity 300ms ease, visibility 300ms ease;
    opacity: 0;
}

.back-to-top.is-visible {
    visibility: visible;
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-3px);
    border-color: var(--cta);
}

.back-to-top i {
    font-size: 16px;
}

/* Fullscreen Image Viewer */
.viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.viewer.is-open {
    opacity: 1;
    pointer-events: auto;
}

.viewer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.viewer__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.viewer__toolbar {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.viewer__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.viewer__btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.viewer__btn:active {
    transform: scale(0.95);
}

.viewer__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: viewer-spin 0.8s linear infinite;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.viewer.is-loading .viewer__spinner {
    opacity: 1;
}

@keyframes viewer-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.viewer__imgwrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    /* Removed flex centering to allow JS to control positioning */
}

.viewer__imgwrap:active {
    cursor: grabbing;
}

.viewer__img {
    position: absolute; /* Changed to absolute for full control */
    top: 0;
    left: 0;
    display: block;
    max-width: none; /* Let JS handle sizing or keep it natural */
    /* actually max-width: none is better if we scale it */
    user-select: none;
    will-change: transform;
    transform-origin: 0 0; /* Critical for the zoom math */
    transition: transform 0.1s linear;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.viewer__img.is-dragging {
    cursor: grabbing;
    transition: none;
}

.product-detail__info {
    border: 1px solid var(--border);
    border-radius: 80px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 16px 24px;
    display: grid;
    gap: 14px;
    align-self: center;
}

.product-detail__title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
}

.product-detail__price {
    font-size: 20px;
    font-weight: 800;
    color: var(--page-text);
    margin-bottom: 12px;
}

.product-detail__sub {
    margin: 0 0 20px;
    color: var(--page-muted);
    font-weight: 600;
}

.product-detail__kpoints {
    display: grid;
    gap: 10px;
}

.product-detail__klabel {
    font-weight: 900;
    color: var(--page-text);
    font-size: 13px;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(208, 138, 73, 0.14);
    color: color-mix(in oklab, var(--cta) 65%, #111827);
    margin-bottom: 14px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.card p {
    margin: 0 0 14px;
    color: var(--page-muted);
}

.ticks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--page-text);
    font-weight: 500;
    font-size: 13px;
}

.ticks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.ticks li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    color: var(--cta);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-top: 1px;
    flex: 0 0 auto;
}

.form input[type="checkbox"] {
    accent-color: var(--cta);
}

/* ── Product / Service Detail Keypoints ── */
#kp-container {
    list-style: none;
    padding: 0;
    margin-top: 8px;
    display: grid;
    gap: 10px;
}

#kp-container li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    font-size: 13px;
    color: var(--page-text);
}

/* .product-detail__features used in areas.js */
.product-detail__features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    gap: 10px;
}

.product-detail__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    font-size: 13px;
    color: var(--page-text);
}

/* ── About Page Redesign ── */

/* ── About Page Redesign ── */
.about-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, color-mix(in oklab, var(--section-alt-bg) 80%, var(--cta)) 0%, var(--section-alt-bg) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 50%, rgba(208, 138, 73, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 90% 50%, rgba(59, 179, 230, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.about-hero__title {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -0.6px;
    line-height: 1.1;
}

.about-hero__sub {
    margin: 0;
    font-size: 18px;
    color: var(--page-muted);
    line-height: 1.6;
    font-weight: 500;
}

.about-owner {
    padding: 60px 0;
}

.about-owner__card {
    display: flex;
    align-items: center;
    gap: 36px;
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 44px;
    border-radius: 160px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.about-owner__photo {
    width: 160px;
    height: 140px;
    border-radius: 999px;
    border: 3px solid color-mix(in oklab, var(--cta) 25%, var(--border));
    background: var(--surface);
    flex: 0 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.about-owner__info {
    flex: 1;
    min-width: 0;
}

.about-owner__name {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 900;
}

.about-owner__bio {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 700px) {
    .about-owner__card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        border-radius: 80px;
        gap: 20px;
    }
    .about-owner__photo {
        width: 130px;
        height: 110px;
    }
}

/* ── About Story Section ── */
.about-story {
    padding: 0 0 60px;
}

.about-story__card {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 44px;
    border-radius: 160px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.about-story__img-wrap {
    flex: 0 0 160px;
    width: 160px;
    height: 140px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 3px solid color-mix(in oklab, var(--cta) 25%, var(--border));
}

.about-story__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-story__body {
    flex: 1;
    min-width: 0;
    text-align: start;
}

.about-story__title {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 900;
}

.about-story__text {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 700px) {
    .about-story__card {
        padding: 28px 24px;
        border-radius: 80px;
        flex-direction: column;
        gap: 20px;
    }
    .about-story__img-wrap {
        flex: none;
        width: 130px;
        height: 110px;
    }
    .about-story__img-wrap img {
        height: 100%;
    }
    .about-story__body {
        text-align: center;
    }
}

/* ── About Values – 3 Pill Cards ── */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-values__card {
    padding: 36px 28px;
    border-radius: 80px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 300ms ease;
}

.about-values__card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    border-color: color-mix(in oklab, var(--cta) 30%, var(--border));
}

.about-values__icon {
    font-size: 32px;
    color: var(--cta);
    margin-bottom: 16px;
}

.about-values__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
}

.about-values__text {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.6;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 820px) {
    .about-values {
        grid-template-columns: 1fr;
    }
    .about-values__card {
        border-radius: 80px;
    }
}

/* ── About Feature Cards (What/Who/Why) ── */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-features__card {
    padding: 32px 28px;
    border-radius: 80px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 300ms ease;
}

.about-features__card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    border-color: color-mix(in oklab, var(--cta) 30%, var(--border));
}

.about-features__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.about-features__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: color-mix(in oklab, var(--cta) 18%, var(--surface));
    border: 1px solid color-mix(in oklab, var(--cta) 24%, var(--border));
    color: var(--cta);
    font-size: 20px;
    flex: 0 0 auto;
}

.about-features__head h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 900;
}

.about-features__head p {
    margin: 4px 0 0;
    color: var(--page-muted);
    font-size: 13px;
    font-weight: 500;
}

.about-features__card .ticks {
    padding: 0;
}

@media (max-width: 820px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-features__card {
        border-radius: 80px;
    }
}

/* ── More Services Story Card (like Our Story pill) ── */
.more-services-story {
    margin-bottom: 36px;
}

.more-services-story__card {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 44px;
    border-radius: 160px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.more-services-story__img-wrap {
    flex: 0 0 160px;
    width: 160px;
    height: 140px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 3px solid color-mix(in oklab, var(--cta) 25%, var(--border));
}

.more-services-story__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.more-services-story__body {
    flex: 1;
    min-width: 0;
    text-align: start;
}

.more-services-story__title {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 900;
}

.more-services-story__text {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 700px) {
    .more-services-story__card {
        padding: 28px 24px;
        border-radius: 80px;
        flex-direction: column;
        gap: 20px;
    }
    .more-services-story__img-wrap {
        flex: none;
        width: 130px;
        height: 110px;
    }
    .more-services-story__img-wrap img {
        height: 100%;
    }
    .more-services-story__body {
        text-align: center;
    }
}

/* ── About CTA ── */
.about-cta {
    padding: 80px 0;
    text-align: center;
}

.about-cta__inner {
    max-width: 640px;
    margin: 0 auto;
}

.about-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 38px);
}

.about-cta p {
    margin: 0 0 24px;
    color: var(--page-muted);
    font-size: 17px;
    line-height: 1.6;
}

.about-cta .btn {
    padding: 14px 32px;
    font-size: 15px;
}

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

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: relative;
}

.price-card h3 {
    margin: 0 0 10px;
}

.price-card__price {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 8px 0 10px;
}

.price-card__price span {
    font-size: 13px;
    font-weight: 600;
    color: var(--page-muted);
    margin-left: 6px;
}

.price-card p {
    margin: 0 0 18px;
    color: var(--page-muted);
}

.price-card.is-featured {
    border-color: rgba(208, 138, 73, 0.55);
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.10);
    transform: translateY(-6px);
}

.price-card__badge {
    position: absolute;
    top: -12px;
    left: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(208, 138, 73, 0.20);
    border: 1px solid rgba(208, 138, 73, 0.40);
    color: #6b3f16;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.2px;
}

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

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

.pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 14px 18px;
    background: var(--surface);
    font-weight: 600;
    font-size: 18px;
    color: var(--page-text);
}

.pill i {
    color: #9a5c22;
    font-size: 22px;
}

.pill.is-active {
    background: var(--cta);
    border-color: var(--cta);
    color: var(--on-dark-text);
    box-shadow: 0 2px 10px rgba(208, 138, 73, 0.28);
    font-weight: 800;
}

.pill.is-active i {
    color: var(--on-dark-text);
}
.areas__map {
    border-radius: 80px;
    background: linear-gradient(135deg, color-mix(in oklab, var(--surface-2) 70%, #ffffff) 0%, var(--surface-2) 40%, color-mix(in oklab, var(--surface-2) 70%, #ffffff) 100%);
    border: 1px solid var(--border);
    min-height: 260px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.areas__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.areas__map-link {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.areas__map-link .areas__map-label {
    pointer-events: auto;
}

.areas__map-label {
    position: absolute;
    inset-inline: 14px;
    bottom: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    text-align: center;
}

.about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.about__owner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.about__owner-photo-card {
    width: 180px;
    height: 180px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about__owner-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about__panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.about__panel h3 {
    margin: 0 0 12px;
}

/* ── Contact Hero Banner ── */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #05070a 0%, #0c151f 50%, #0a1218 100%);
    padding: 80px 0;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 30% 70%, rgba(208, 138, 73, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(59, 179, 230, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero__inner {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact-hero__content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--on-dark-text);
}

.contact-hero__badge {
    display: inline-flex;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(208, 138, 73, 0.18);
    border: 1px solid rgba(208, 138, 73, 0.30);
    font-size: 12px;
    font-weight: 700;
    color: var(--cta);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.contact-hero__title {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -0.5px;
    line-height: 1.1;
    font-weight: 900;
}

.contact-hero__text {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--on-dark-muted);
    max-width: 560px;
}

.contact-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ── Benefits Grid ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 32px 24px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 300ms ease;
}

.benefit-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    border-color: color-mix(in oklab, var(--cta) 30%, var(--border));
}

.benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        color-mix(in oklab, var(--cta) 22%, var(--surface)) 0%,
        color-mix(in oklab, var(--brand) 14%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in oklab, var(--cta) 22%, var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--cta);
    font-size: 22px;
    transition: transform 300ms ease;
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.12);
}

.benefit-card__title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 900;
    color: var(--page-text);
}

.benefit-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--page-muted);
    font-weight: 500;
}

/* ── Contact Map Card (clickable, no iframe) ── */
.contact-map-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 80px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 300ms ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--page-text);
}

.contact-map-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    border-color: color-mix(in oklab, var(--cta) 30%, var(--border));
}

.contact-map-card:active {
    transform: translateY(-1px);
}

.contact-map-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 18%, var(--surface));
    border: 1px solid color-mix(in oklab, var(--cta) 30%, var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--cta);
    font-size: 22px;
}

.contact-map-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.contact-map-card__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--page-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-map-card__address {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    word-break: break-word;
}

.contact-map-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--surface-2) 80%, transparent);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--page-muted);
    font-size: 14px;
    transition: background 200ms ease, color 200ms ease;
}

.contact-map-card:hover .contact-map-card__arrow {
    background: var(--cta);
    border-color: var(--cta);
    color: #111827;
}

@media (max-width: 640px) {
    .contact-map-card {
        flex-wrap: wrap;
        gap: 14px;
        padding: 20px 22px;
        border-radius: 40px;
    }
    .contact-map-card__icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .contact-map-card__address {
        font-size: 14px;
    }
}

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

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .contact-hero {
        padding: 50px 0;
        min-height: 300px;
    }
}

.quote {
    background: var(--surface);
    color: var(--page-text);
    padding: 70px 0;
    /* Offset anchor scroll so the fixed branding bar + header don't cover the card */
    scroll-margin-top: calc(var(--branding-h) + var(--header-h) + 8px);
}

#quoteForm {
    scroll-margin-top: calc(var(--branding-h) + var(--header-h) + 8px);
}

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

.quote__info {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 80px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 180ms ease,
                box-shadow 180ms ease,
                border-color 180ms ease,
                background 180ms ease;
}

.quote__info:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    border-color: color-mix(in oklab, var(--cta) 32%, var(--border));
}

.quote__info h2 {
    margin: 0 0 10px;
    font-size: 30px;
    letter-spacing: -0.4px;
}

.quote__info p {
    margin: 0 0 18px;
    color: var(--page-muted);
}

.quote__meta {
    display: grid;
    gap: 12px;
}

.quote__meta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--page-text);
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 300ms ease;
}

.quote__meta-link:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: color-mix(in oklab, var(--cta) 30%, var(--border));
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.quote__meta-link i {
    width: 22px;
    text-align: center;
    color: rgba(208, 138, 73, 0.95);
}

.form {
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    border-radius: 80px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.form__row {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.form__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--page-text);
}

.form__input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 12px 12px;
    color: var(--page-text);
    outline: none;
    font-size: 13px;
}

.form__input::placeholder {
    color: var(--page-muted);
}

.footer {
    background: var(--surface);
    color: var(--page-muted);
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.footer__logo {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: color-mix(in oklab, var(--cta) 8%, var(--surface));
    border-color: color-mix(in oklab, var(--cta) 18%, var(--border));
    color: var(--cta);
    font-weight: 900;
    letter-spacing: 0.3px;
    font-size: 15px;
    transition: all 180ms ease;
}

.footer__tag {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--page-muted);
    background: color-mix(in oklab, var(--surface-2) 40%, var(--surface));
    transition: all 180ms ease;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.footer__nav a {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--page-muted);
    background: color-mix(in oklab, var(--surface-2) 40%, var(--surface));
    transition: all 180ms ease;
}

.footer__nav a:hover {
    color: var(--page-text);
    border-color: color-mix(in oklab, var(--border) 50%, var(--page-text));
    background: color-mix(in oklab, var(--surface-2) 70%, var(--surface));
}

.footer__copy {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--page-muted);
    background: var(--surface-2);
}

.how {
    background: var(--surface);
    color: var(--page-text);
    padding: 70px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how__head {
    max-width: 860px;
    margin-bottom: 24px;
}

.how__head h2 {
    margin: 0 0 10px;
    font-size: 30px;
    letter-spacing: -0.4px;
    color: var(--page-text);
}

.how__head p {
    margin: 0;
    color: var(--page-muted);
}

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

.how-step {
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    border-radius: 999px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 24px 28px;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.how-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: color-mix(in oklab, var(--cta) 30%, var(--border));
}

.how-step__dot {
    display: none;
}

.how-step__title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
    color: var(--page-text);
}

.how-step__text {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.55;
    font-weight: 600;
    font-size: 14px;
}

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

@media (max-width: 980px) {
    .topbar__brand {
        min-width: auto;
    }

    .topbar__search {
        display: none;
    }

    .cards,
    .pricing {
        grid-template-columns: 1fr;
    }

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

    .product-detail {
        grid-template-columns: 1fr;
    }

    .areas,
    .about,
    .quote__grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .site-header__nav {
        display: none;
    }

    .topbar__actions {
        gap: 8px;
    }

    .topbar__link span {
        display: none;
    }

    .nav__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        position: fixed;
        top: calc(var(--promo-h) + var(--topbar-h) + var(--nav-h));
        left: 0;
        right: 0;
        background: var(--header-bg);
        border-bottom: 1px solid var(--header-border);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav__menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 20px 18px;
        gap: 10px;
    }

    .nav__link {
        padding: 12px 10px;
        border-radius: 12px;
        background: var(--header-hover);
        border: 1px solid var(--header-border);
    }

    .nav__cta {
        text-align: center;
    }
}

@media (max-width: 820px) {
    .site-header--admin .site-header__nav {
        display: flex;
    }
}

/* Desktop Menu Adjustments */
@media (min-width: 821px) {
    .site-header__menu-btn {
        display: grid;
    }

    .side-menu__nav a[data-i18n="nav_home"],
    .side-menu__nav a[data-i18n="nav_products"],
    .side-menu__nav a[data-i18n="nav_area"],
    .side-menu__nav a[data-i18n="nav_more_services"],
    .side-menu__nav a[data-i18n="nav_about"],
    .side-menu__nav a[data-i18n="label_contact"] {
        display: none;
    }
}

/* Ensure Side Menu Items are Visible on Mobile */
@media (max-width: 820px) {
    .side-menu__nav a[data-i18n="nav_home"],
    .side-menu__nav a[data-i18n="nav_products"],
    .side-menu__nav a[data-i18n="nav_area"],
    .side-menu__nav a[data-i18n="nav_more_services"],
    .side-menu__nav a[data-i18n="nav_about"] {
        display: block !important;
    }
    
    .side-menu__nav a[data-i18n="label_contact"] {
        display: none !important;
    }
}

/* ── Product Detail – Details Pill Card ── */
.pd-details {
    margin-top: 36px;
    margin-bottom: 28px;
    padding: 14px 24px;
    border-radius: 80px;
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 300ms ease;
}

.pd-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: color-mix(in oklab, var(--cta) 28%, var(--border));
}

.pd-details__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-inline-start: 96px;
    padding-inline-end: 96px;
}

.pd-details__title {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    color: var(--page-text);
    letter-spacing: -0.3px;
    padding: 6px 16px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
}

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

.pd-action-btn {
    width: auto;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    color: var(--cta);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 160ms ease;
    font-size: 13px;
}

.pd-action-btn:hover {
    background: color-mix(in oklab, var(--cta) 35%, transparent);
    border-color: color-mix(in oklab, var(--cta) 60%, transparent);
    color: color-mix(in oklab, var(--cta) 80%, #111827);
}

.pd-action-btn.is-liked {
    color: #e74c3c;
    border-color: #e74c3c;
    background: color-mix(in oklab, #e74c3c 10%, var(--surface));
}

.pd-action-btn.is-saved {
    color: var(--cta);
    border-color: var(--cta);
    background: color-mix(in oklab, var(--cta) 10%, var(--surface));
}

/* ── Product Detail – Tabs Card ── */
.pd-tabs {
    border-radius: 80px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pd-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 14px 14px;
    background: color-mix(in oklab, var(--surface-2) 50%, transparent);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.pd-tab-btn {
    flex: 0 0 auto;
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--page-muted);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 200ms ease;
    white-space: nowrap;
    text-align: center;
}

.pd-tab-btn:hover {
    color: var(--page-text);
    background: color-mix(in oklab, var(--surface) 80%, transparent);
    border-color: var(--border);
}

.pd-tab-btn.is-active {
    background: var(--cta);
    border-color: var(--cta);
    color: #111827;
    font-weight: 800;
    box-shadow: 0 2px 10px color-mix(in oklab, var(--cta) 25%, transparent);
}

.pd-tabs__content {
    padding: 28px 32px;
}

.pd-tab-pane {
    display: none;
    animation: fadeIn 300ms ease;
}

.pd-tab-pane.is-active {
    display: block;
}

.pd-tab-pane p {
    margin: 0 0 12px;
    color: var(--page-muted);
    line-height: 1.8;
    font-weight: 500;
    font-size: 15px;
}

.pd-tab-pane p:last-child {
    margin-bottom: 0;
}

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

.pd-tab-pane ul li {
    position: relative;
    padding-inline-start: 24px;
    color: var(--page-muted);
    line-height: 1.7;
    font-weight: 500;
    font-size: 14px;
}

.pd-tab-pane ul li::before {
    content: "✓";
    position: absolute;
    inset-inline-start: 0;
    top: 2px;
    color: var(--cta);
    font-weight: 700;
    font-size: 14px;
}    @media (max-width: 640px) {
        .pd-details {
            border-radius: 28px;
            padding: 10px 16px;
        }
        .pd-details__head {
            padding-inline: 0;
        }
        .pd-details__title {
            font-size: 18px;
        }
    .pd-action-btn {
        height: 28px;
        padding: 0 10px;
        font-size: 11px;
    }
    .pd-tabs {
        border-radius: 28px;
    }
    .pd-tabs__nav {
        padding: 10px 12px;
        gap: 6px;
    }
    .pd-tabs__content {
        padding: 20px 18px;
    }
    .pd-tab-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ── Product Detail – Description Pills (Privacy-style with Tick Circle) ── */
/* ── Product Detail – Description Sections (shipping-style card) ── */
.pd-desc-sections {
    display: grid;
    gap: 24px;
}

.pd-desc-section {
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    border-radius: 80px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pd-desc-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: color-mix(in oklab, var(--cta) 28%, var(--border));
}

.pd-desc-section__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.pd-desc-section__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cta);
    flex: 0 0 auto;
}

.pd-desc-section__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--page-text);
}

.pd-desc-section__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pd-desc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--surface) 90%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 10%, var(--border));
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.pd-desc-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pd-desc-tick {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--cta);
    flex: 0 0 auto;
}

.pd-desc-text {
    flex: 1;
    min-width: 0;
    color: var(--page-muted);
    line-height: 1.5;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 820px) {
    .pd-desc-section__items {
        grid-template-columns: 1fr;
    }
    .pd-specs-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pd-desc-section {
        border-radius: 40px;
        padding: 22px 20px;
    }
    .pd-desc-section__icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    .pd-desc-section__title {
        font-size: 16px;
    }
    .pd-desc-item {
        padding: 14px 16px;
        border-radius: 28px;
        gap: 12px;
    }
    .pd-desc-tick {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .pd-desc-text {
        font-size: 13px;
    }
    .pd-specs-list {
        grid-template-columns: 1fr;
    }
}

/* ── Product Detail – Key Features in Specs Tab ── */
.pd-kp-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.pd-kp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 80px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pd-kp-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: color-mix(in oklab, var(--cta) 28%, var(--border));
}

.pd-kp-tick {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--cta);
    flex: 0 0 auto;
}

.pd-kp-text {
    flex: 1;
    color: var(--page-text);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 820px) {
    .pd-kp-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .pd-kp-item {
        padding: 12px 14px;
        border-radius: 28px;
    }
    .pd-kp-tick {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .pd-kp-text {
        font-size: 12px;
    }
}

/* ── Product Detail – FAQ Items ── */
.pd-faq-item {
    grid-column: 1 / -1;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    border-radius: 80px;
    padding: 22px 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.pd-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pd-faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 15px;
    color: var(--page-text);
    margin-bottom: 10px;
}

.pd-faq-q i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--cta);
    flex: 0 0 auto;
}

.pd-faq-a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--page-muted);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    padding-left: 44px;
}

.pd-faq-a i {
    color: var(--cta);
    font-size: 13px;
    margin-top: 4px;
    flex: 0 0 auto;
}

[dir="rtl"] .pd-faq-a {
    padding-left: 0;
    padding-right: 44px;
}

/* ── Product Detail – Comparison Table ── */
.pd-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    grid-column: 1 / -1;
}

.pd-table-cell {
    padding: 14px 18px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    font-weight: 500;
    font-size: 13px;
    color: var(--page-text);
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.pd-table-cell:first-child {
    font-weight: 700;
    background: color-mix(in oklab, var(--surface) 92%, var(--cta));
    border-color: color-mix(in oklab, var(--cta) 25%, var(--border));
}

.pd-table-cell:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

@media (max-width: 640px) {
    .pd-faq-item {
        border-radius: 28px;
        padding: 18px 16px;
    }
    .pd-faq-q {
        font-size: 13px;
    }
    .pd-faq-q i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .pd-faq-a {
        font-size: 13px;
        padding-left: 40px;
    }
    [dir="rtl"] .pd-faq-a {
        padding-left: 0;
        padding-right: 40px;
    }
    .pd-table-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .pd-table-cell {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* ── Product Detail – Specs Section Cards (shipping-style) ── */
.pd-spec-sections {
    display: grid;
    gap: 24px;
}

.pd-spec-section {
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    border-radius: 80px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pd-spec-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: color-mix(in oklab, var(--cta) 28%, var(--border));
}

.pd-spec-section__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.pd-spec-section__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cta);
    flex: 0 0 auto;
}

.pd-spec-section__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--page-text);
}

.pd-spec-section__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pd-spec-section__items--kp {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 820px) {
    .pd-spec-section__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .pd-spec-section__items--kp {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .pd-spec-section {
        border-radius: 40px;
        padding: 22px 20px;
    }
    .pd-spec-section__icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    .pd-spec-section__title {
        font-size: 16px;
    }
    .pd-spec-section__items {
        grid-template-columns: 1fr;
    }
}

/* ── Product Detail – Specs List (Privacy-style Pill Cards) ── */
.pd-specs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pd-spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-radius: 80px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1.5px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pd-spec-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: color-mix(in oklab, var(--cta) 28%, var(--border));
}

.pd-spec-tick {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--cta);
    flex: 0 0 auto;
}

.pd-spec-info {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 2px;
}

.pd-spec-label {
    display: block;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: color-mix(in oklab, var(--cta) 75%, var(--page-text));
}

.pd-spec-value {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--page-text);
    line-height: 1.4;
}

.pd-spec-item--full {
    text-align: center;
    justify-content: center;
}

/* ── Product Detail – Shipping Pills ── */
.pd-shipping-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pd-shipping-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 80px;
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pd-shipping-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: color-mix(in oklab, var(--cta) 28%, var(--border));
}

.pd-shipping-tick {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--cta);
}

.pd-shipping-text {
    flex: 1;
    min-width: 0;
    color: var(--page-muted);
    line-height: 1.7;
    font-weight: 500;
    font-size: 14px;
}

/* ── Structured Shipping Sections ── */
.pd-ship-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pd-ship-section {
    background: color-mix(in oklab, var(--surface) 96%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 12%, var(--border));
    border-radius: 80px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pd-ship-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: color-mix(in oklab, var(--cta) 28%, var(--border));
}

.pd-ship-section__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.pd-ship-section__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cta);
    flex: 0 0 auto;
}

.pd-ship-section__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--page-text);
}

.pd-ship-section__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-ship-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--surface) 90%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 10%, var(--border));
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.pd-ship-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pd-ship-item__tick {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--cta);
    flex: 0 0 auto;
}

.pd-ship-item__text {
    flex: 1;
    color: var(--page-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

/* ── Timeline ── */
.pd-ship-timeline {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.pd-ship-timeline__step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--surface) 90%, var(--cta));
    border: 1px solid color-mix(in oklab, var(--cta) 10%, var(--border));
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.pd-ship-timeline__step:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pd-ship-timeline__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex: 0 0 auto;
}

.pd-ship-timeline__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 12px;
}

.pd-ship-timeline__label {
    font-weight: 700;
    font-size: 14px;
    color: var(--page-text);
}

.pd-ship-timeline__dur {
    font-size: 12px;
    font-weight: 600;
    color: var(--page-muted);
    background: color-mix(in oklab, var(--cta) 12%, transparent);
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

@media (max-width: 820px) {
    .pd-ship-sections {
        grid-template-columns: 1fr;
    }
    .pd-shipping-list {
        grid-template-columns: 1fr;
    }
    .pd-ship-section {
        border-radius: 40px;
        padding: 22px 20px;
    }
    .pd-ship-section__icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    .pd-ship-section__title {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .pd-spec-item {
        padding: 14px 18px;
        border-radius: 28px;
        gap: 12px;
    }
    .pd-spec-tick {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .pd-spec-label {
        font-size: 11px;
    }
    .pd-spec-value {
        font-size: 14px;
    }
    .pd-shipping-item {
        padding: 14px 16px;
        border-radius: 28px;
        gap: 12px;
        align-items: center;
    }
    .pd-shipping-tick {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .pd-shipping-text {
        font-size: 13px;
    }
    .pd-ship-section {
        border-radius: 28px;
        padding: 18px 16px;
    }
    .pd-ship-section__icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    .pd-ship-section__title {
        font-size: 14px;
    }
    .pd-ship-item {
        padding: 12px 14px;
        border-radius: 999px;
    }
    .pd-ship-item__tick {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .pd-ship-item__text {
        font-size: 13px;
    }
    .pd-ship-timeline__step {
        padding: 12px 14px;
    }
    .pd-ship-timeline__num {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .pd-ship-timeline__label {
        font-size: 13px;
    }
    .pd-ship-timeline__dur {
        font-size: 11px;
        padding: 3px 10px;
    }
}
