@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap");

:root {
    --red: #c8312a;
    --red-l: #fdf0ef;
    --red-m: #f2cece;
    --gold: #d4a843;
    --ink: #111111;
    --ink2: #2a2825;
    --mid: #666666;
    --light: #999999;
    --off: #f8f7f4;
    --warm: #f2ede6;
    --border: #e8e5e0;
    --white: #ffffff;
    --bar-bg: #1a1a1a;
    --success: #3b6d11;
    --r: 8px;
    --rl: 14px;
    --rxl: 20px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --font: "DM Sans", system-ui, sans-serif;
    --serif: "Instrument Serif", Georgia, serif;
    --t: all 0.2s ease;
    --nav-h: 62px;
    --bar-h: 36px;
    --tab-h: 44px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── Trust bar ── */
.trust-bar {
    background: var(--bar-bg);
    /* Safe-area: iPhone notch + Android punch-hole (fallback guarantees minimum padding) */
    padding-top: env(safe-area-inset-top, 0px);
    padding-left: max(env(safe-area-inset-left, 0px), 0.75rem);
    padding-right: max(
        env(safe-area-inset-right, 0px),
        2rem
    ); /* 2rem fallback covers Galaxy S10 punch-hole */
    min-height: calc(var(--bar-h) + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3rem;
    overflow: clip; /* clip without BFC to avoid scroll context */
    box-sizing: border-box;
}
.trust-item {
    height: var(--bar-h); /* fixed 36px zone — centers text below notch */
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

/* ── Main Nav ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 600;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 0.5px solid var(--border);
    backdrop-filter: blur(14px);
}
.nav-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* keep old text-logo rules in case they appear elsewhere */
.logo-pix,
.logo-star {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--ink);
}
.logo-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    margin: 0 1px 3px;
}
.main-links {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: var(--nav-h);
}
.main-link {
    display: flex;
    align-items: center;
    padding: 0 1.1rem;
    font-size: 0.85rem;
    color: var(--mid);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
    font-weight: 400;
}
.main-link:hover {
    color: var(--ink);
}
.main-link.active {
    color: var(--ink);
    border-bottom-color: var(--ink);
    font-weight: 500;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.45rem 0.9rem;
    border: 0.5px solid var(--border);
    border-radius: var(--r);
    font-size: 0.8rem;
    color: var(--mid);
    transition: var(--t);
    cursor: pointer;
}
.nav-btn:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.nav-btn-dark {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.nav-btn-dark:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    width: 38px;
    height: 38px;
    border-radius: var(--r);
    border: 0.5px solid var(--border);
    align-items: center;
    justify-content: center;
}
.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--t);
}
.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Sub-tab bar ── */
.sub-bar {
    background: var(--off);
    border-bottom: 0.5px solid var(--border);
    height: var(--tab-h);
    display: flex;
    align-items: stretch;
    padding: 0 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    position: sticky;
    top: var(--nav-h);
    z-index: 500;
}
.sub-bar::-webkit-scrollbar {
    display: none;
}
.sub-link {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-size: 0.82rem;
    color: var(--mid);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--t);
}
.sub-link:hover {
    color: var(--ink);
}
.sub-link.active {
    color: var(--ink);
    border-bottom-color: var(--red);
    font-weight: 500;
}

/* ── Mobile drawer ── */
.mobile-drawer {
    display: none;
    position: fixed;
    top: calc(var(--bar-h) + var(--nav-h)); /* adjusted per breakpoint */
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 500;
    overflow-y: auto;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-drawer.open {
    display: block;
    transform: translateX(0);
}
.mobile-drawer .m-section {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
    padding: 0.75rem 0 0.35rem;
    border-top: 0.5px solid var(--border);
    margin-top: 0.75rem;
}
.mobile-drawer .m-section:first-child {
    margin-top: 0;
    border-top: none;
}
.mobile-drawer a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--ink);
    border-bottom: 0.5px solid var(--border);
}
.mobile-drawer a:hover {
    color: var(--red);
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.page-section {
    padding: 5.5rem 2rem;
    display: none;
}
.page-section.active {
    display: block;
}
/* Home hero needs full bleed — remove page-section padding */
#home {
    padding: 0;
}
.sub-section {
    display: none;
}
.sub-section.active {
    display: block;
}
.section-off {
    background: var(--off);
}
.section-dark {
    background: var(--ink);
    color: #fff;
}
.section-dark p,
.section-dark .lead {
    color: rgba(255, 255, 255, 0.6);
}
.eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 0.6rem;
}
.section-dark .eyebrow {
    color: rgba(212, 49, 42, 0.75);
}
h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.07;
    font-weight: 400;
    letter-spacing: -0.02em;
}
h1 .red {
    color: var(--red);
    font-style: italic;
    display: block;
}
h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
}
h3 {
    font-size: 1.05rem;
    font-weight: 500;
}
h4 {
    font-size: 0.9rem;
    font-weight: 500;
}
p,
.lead {
    color: var(--mid);
    font-size: 0.9rem;
    line-height: 1.72;
    font-weight: 300;
}
.lead {
    font-size: 1.05rem;
}
.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3.5rem;
}
.section-header h2 {
    margin-bottom: 0.75rem;
}

/* ── Grids ── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.7rem 1.5rem;
    border-radius: var(--r);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--t);
    cursor: pointer;
    font-family: var(--font);
    border: none;
}
.btn-dark {
    background: var(--ink);
    color: #fff;
}
.btn-dark:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.btn-red {
    background: var(--red);
    color: #fff;
}
.btn-red:hover {
    background: #b02520;
    transform: translateY(-1px);
}
.btn-outline {
    border: 1.5px solid var(--border);
    color: var(--ink);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--ink);
}
.btn-white {
    background: #fff;
    color: var(--ink);
}
.btn-white:hover {
    background: var(--off);
}
.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
}

/* ── Hero ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--bar-h) - var(--nav-h));
    overflow: hidden;
}
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.5rem 3rem 4.5rem 2rem;
    background: var(--off);
}
.hero-left h1 {
    margin-bottom: 1rem;
}
.hero-left > .lead {
    max-width: 400px;
    margin-bottom: 1.5rem;
}
.hero-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    padding: 0.65rem 1rem;
    background: rgba(200, 49, 42, 0.07);
    border: 1px solid rgba(200, 49, 42, 0.15);
    border-radius: var(--r);
    width: fit-content;
}
.hero-price .from {
    font-size: 0.72rem;
    color: var(--mid);
    font-weight: 300;
}
.hero-price .amount {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--ink);
    line-height: 1;
}
.hero-price .note {
    font-size: 0.7rem;
    color: var(--light);
}
.hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.hero-rating .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 1px;
}
.hero-rating span {
    font-size: 0.78rem;
    color: var(--mid);
}
.hero-right {
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    border-radius: var(--rl);
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    max-width: 175px;
}
.hero-badge-icon {
    color: var(--red);
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: 2px;
    display: flex;
    align-items: center;
}
.hero-badge h4 {
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
}
.hero-badge p {
    font-size: 0.62rem;
    color: var(--light);
    font-weight: 300;
    margin: 0;
}

/* ── Icon strip ── */
.icon-strip {
    padding: 3rem 2rem;
    border-bottom: 0.5px solid var(--border);
}
.icon-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.icon-feat {
    text-align: center;
    padding: 1rem 0.75rem;
}
.icon-feat .if-icon {
    font-size: 1.4rem;
    margin-bottom: 0.65rem;
}
.icon-feat h4 {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.2rem;
    line-height: 1.35;
}
.icon-feat p {
    font-size: 0.72rem;
    color: var(--light);
    line-height: 1.45;
    font-weight: 300;
}

/* ── Cards ── */
.card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--rl);
    padding: 1.75rem;
    transition: var(--t);
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
    width: 48px;
    height: 48px;
    background: var(--off);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid var(--border);
}
.card-dark {
    background: var(--ink2);
    border-color: transparent;
}
.card-dark h3,
.card-dark h4 {
    color: #fff;
}
.card-dark p {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Feature row ── */
.feature-row {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 0.5px solid var(--border);
    align-items: flex-start;
}
.feature-row:last-child {
    border-bottom: none;
}
.feature-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}
.feature-row h3 {
    margin-bottom: 0.35rem;
}

/* ── Product cards ── */
.prod-card {
    border: 0.5px solid var(--border);
    border-radius: var(--rxl);
    overflow: hidden;
    background: var(--white);
    transition: var(--t);
    display: flex;
    flex-direction: column;
}
.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.prod-card.featured {
    border: 2px solid var(--ink);
}
.prod-thumb {
    aspect-ratio: 4/3;
    background: var(--off);
    overflow: hidden;
    position: relative;
}
.prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.4s ease;
}
.prod-card:hover .prod-thumb img {
    transform: scale(1.04);
}
.prod-card.featured .prod-thumb {
    background: var(--warm);
}
.prod-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--ink);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
}
.prod-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.prod-size {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 3px;
}
.prod-name {
    font-size: 0.75rem;
    color: var(--light);
    margin-bottom: 1rem;
}
.prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1.25rem;
    flex: 1;
}
.prod-tag {
    background: var(--off);
    border: 0.5px solid var(--border);
    border-radius: 100px;
    padding: 3px 9px;
    font-size: 0.7rem;
    color: var(--ink2);
}
.prod-tag.accent {
    background: var(--red-l);
    border-color: var(--red-m);
    color: var(--red);
}
.prod-actions {
    display: flex;
    gap: 0.5rem;
}
.prod-actions a {
    flex: 1;
    padding: 0.58rem 0;
    border-radius: var(--r);
    font-size: 0.78rem;
    font-weight: 500;
    text-align: center;
    transition: var(--t);
}
.pa-dark {
    background: var(--ink);
    color: #fff;
}
.pa-dark:hover {
    background: #222;
}
.pa-line {
    border: 0.5px solid var(--border);
    color: var(--ink2);
}
.pa-line:hover {
    border-color: var(--ink);
}

/* ── Video CTA ── */
.video-cta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--off);
    border: 0.5px solid var(--border);
    border-radius: var(--rl);
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: var(--t);
    text-decoration: none;
}
.video-cta:hover {
    border-color: var(--ink);
}
.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t);
}
.video-cta:hover .play-btn {
    background: var(--red);
    transform: scale(1.06);
}
.play-btn svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    margin-left: 2px;
}
.video-cta-text strong {
    font-size: 0.875rem;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}
.video-cta-text span {
    font-size: 0.75rem;
    color: var(--mid);
}

/* ── Steps ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}
.step-card {
    text-align: center;
    position: relative;
}
.step-visual {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--rxl);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}
.step-num {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink);
}
.step-arrow {
    position: absolute;
    top: 38%;
    right: -1.35rem;
    font-size: 0.9rem;
    color: var(--border);
}

/* ── Spec table ── */
.spec-tbl {
    width: 100%;
    border-collapse: collapse;
}
.spec-tbl th,
.spec-tbl td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 0.5px solid var(--border);
    font-size: 0.84rem;
}
.spec-tbl th {
    background: var(--off);
    font-weight: 500;
    color: var(--ink2);
    width: 40%;
}
.spec-tbl td {
    color: var(--mid);
}

/* ── Review cards ── */
.review-card {
    background: var(--off);
    border-radius: var(--rl);
    padding: 1.5rem;
}
.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
    letter-spacing: 2px;
}
.review-quote {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 0.9rem;
}
.review-author {
    font-size: 0.74rem;
    color: var(--light);
}

/* ── CTA banner ── */
.cta-banner {
    background: var(--ink);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-banner h2 {
    color: #fff;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.4rem;
    font-size: 0.875rem;
}
.cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── FAQ ── */
.faq-item {
    border-bottom: 0.5px solid var(--border);
    padding: 1.1rem 0;
}
.faq-q {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}
.faq-q::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--light);
    flex-shrink: 0;
    transition: transform 0.25s;
}
.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}
.faq-a {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.7;
    padding-top: 0.65rem;
    display: none;
}
.faq-item.open .faq-a {
    display: block;
}

/* ── Guarantee strip ── */
.gs-strip {
    padding: 2.5rem 2rem;
    border-top: 0.5px solid var(--border);
}
.gs-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gs-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.gs-icon {
    font-size: 1.3rem;
    color: var(--ink);
    flex-shrink: 0;
}
.gs-text h4 {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 1px;
}
.gs-text p {
    font-size: 0.72rem;
    color: var(--light);
    margin: 0;
    font-weight: 300;
}

/* ── Comparison table ── */
.cmp-wrap {
    border-radius: var(--rl);
    overflow: hidden;
    border: 0.5px solid var(--border);
}
.cmp-head {
    display: grid;
    background: var(--ink);
}
.cmp-row {
    display: grid;
    border-top: 0.5px solid var(--border);
}
.cmp-row:nth-child(even) {
    background: var(--off);
}
.ch {
    padding: 0.85rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}
.ch:first-child {
    text-align: left;
}
.ch.us {
    color: #fff;
    background: rgba(200, 49, 42, 0.85);
}
.cc {
    padding: 0.8rem 1.25rem;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mid);
}
.cc:first-child {
    justify-content: flex-start;
    color: var(--ink);
}
.cc.us {
    background: rgba(200, 49, 42, 0.06);
}
.ck {
    color: var(--red);
    font-weight: 700;
}
.cx {
    color: var(--border);
}

/* ── About strip ── */
.about-strip {
    background: var(--ink);
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-strip h2 {
    color: #fff;
    margin-bottom: 0.75rem;
}
.about-strip p {
    color: rgba(255, 255, 255, 0.6);
}
.about-nums {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-num {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.an-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--red);
    line-height: 1;
    min-width: 90px;
}
.an-lbl {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-weight: 300;
}

/* ── Footer ── */
.site-footer {
    background: var(--ink);
    color: #fff;
    padding: 4rem 2rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.75rem;
}
.footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
    /* logo is dark — invert to white for dark footer */
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.fl-pix,
.fl-star {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.45rem;
    color: #fff;
}
.fl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    margin: 0 1px 3px;
}
.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.65;
    max-width: 240px;
    font-weight: 300;
}
.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer-col ul a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
    cursor: pointer;
}
.footer-col ul a:hover {
    color: #fff;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s;
}
.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Misc ── */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.tag-pill {
    background: var(--off);
    border: 0.5px solid var(--border);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 0.72rem;
    color: var(--ink2);
}
.tag-pill.accent {
    background: var(--red-l);
    border-color: var(--red-m);
    color: var(--red);
}
.info-box {
    background: var(--off);
    border-radius: var(--rl);
    padding: 1.75rem;
    border: 0.5px solid var(--border);
}
.page-hero {
    background: var(--off);
    padding: 4.5rem 2rem 3.5rem;
    border-bottom: 0.5px solid var(--border);
}

/* ── Sticky buy ── */
.sticky-buy {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: var(--ink);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.sticky-buy strong {
    color: #fff;
    font-size: 0.875rem;
    display: block;
}
.sticky-buy span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    /* ── Mobile nav: row 1 = logo+burger, row 2 = buttons ── */
    .nav-inner {
        height: auto;
        flex-wrap: wrap;
        padding: 0.4rem 1.25rem;
        gap: 0;
        align-items: center;
    }
    .logo {
        flex: 1;
        height: var(--nav-h);
        display: flex;
        align-items: center;
    }
    .burger {
        display: flex;
        height: var(--nav-h);
        align-items: center;
    }
    .main-links {
        display: none;
    }
    .nav-right {
        order: 10;
        width: 100%;
        border-top: 0.5px solid var(--border);
        padding: 0.45rem 0 0.5rem;
        justify-content: flex-end; /* buttons aligned right on mobile */
        flex-wrap: wrap;
        gap: 0.35rem;
        height: auto;
    }
    .nav-btn {
        font-size: 0.72rem;
        padding: 0.32rem 0.7rem;
    }
    .nav-btn-dark {
        font-size: 0.72rem;
        padding: 0.32rem 0.7rem;
    }
    /* Mobile drawer: starts below 2-row nav (logo+burger row + buttons row) */
    .mobile-drawer {
        top: calc(
            var(--bar-h) + env(safe-area-inset-top, 0px) + var(--nav-h) +
                2.75rem
        );
    }
    /* ── end mobile nav ── */
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-right {
        min-height: 50vw;
    }
    .split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .icon-strip-inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-strip {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .gs-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .sticky-buy {
        display: flex;
    }
}
@media (max-width: 640px) {
    .page-section {
        padding: 3.5rem 1.25rem;
    }
    .hero-left {
        padding: 3rem 1.25rem;
    }
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .step-arrow {
        display: none;
    }
    .icon-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
    .gs-inner {
        grid-template-columns: 1fr 1fr;
    }
    h1 {
        font-size: 2.4rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    .trust-bar {
        gap: 1.25rem;
    }
    .trust-item:nth-child(3) {
        display: none;
    }
}
@media (max-width: 420px) {
    /* Galaxy S10 and other narrow phones: compact trust bar */
    .trust-bar {
        gap: 0.6rem;
        justify-content: space-between;
        padding-right: max(env(safe-area-inset-right, 0px), 2.5rem);
    }
    .trust-item {
        font-size: 0.62rem;
        height: var(--bar-h);
    }
    .trust-item .ico svg {
        width: 11px !important;
        height: 11px !important;
    }
}
