*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue-light: #6badea;
    --blue-mid: #3d7fc4;
    --blue-deep: #1c4874;
    --ink: #16202b;
    --muted: #6b7785;
    --bg: #eef3f8;
    --card: #ffffff;
    --border: rgba(16,40,64,0.1);
    --green: #1f9d55;
    --green-bg: #e4f7ea;
    --shadow: 0 10px 30px -12px rgba(16,40,64,0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.3rem); font-weight: 700; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: var(--muted); }

a { color: inherit; }

.eyebrow { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 12px; display: block; }

/* Logo wordmark */
.logo {
    font-family: 'Fraunces', Georgia, serif;
    font-optical-sizing: auto;
    font-size: 1.6rem;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    font-family: 'Geist', 'Plus Jakarta Sans', sans-serif;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 30px; border: none; border-radius: 999px;
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
    text-decoration: none; cursor: pointer; position: relative; overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-text-roll { display: inline-block; overflow: hidden; height: 1.2em; position: relative; }
.btn-text-roll span { display: block; transition: transform 0.4s cubic-bezier(.4,0,.2,1); }
.btn-text-roll span::after { content: attr(data-text); position: absolute; top: 100%; left: 0; }
.btn:hover .btn-text-roll span { transform: translateY(-1.2em); }

.btn-primary { background: var(--blue-deep); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue-deep); }
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(16,40,64,0.04); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.5); transform: scale(0); animation: ripple-anim 0.6s ease-out; pointer-events: none; }
.btn-primary .ripple, .btn-ghost .ripple, .btn-white .ripple { background: rgba(28,72,116,0.15); }
@keyframes ripple-anim { to { transform: scale(3); opacity: 0; } }

/* Nav */
.site-nav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--ink); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--blue-mid); transition: width 0.25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-icons { display: flex; align-items: center; gap: 14px; }
.icon-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg); color: var(--ink); text-decoration: none;
    border: 1px solid var(--border);
    position: relative; transition: transform 0.2s ease, background 0.2s ease;
}
.icon-btn:hover { transform: translateY(-2px); background: #e4ecf5; }
.cart-count {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px; padding: 0 4px;
    background: var(--blue-deep); color: #fff; font-size: 0.65rem; font-weight: 700;
    border-radius: 999px; display: flex; align-items: center; justify-content: center;
}
.menu-toggle {
    display: none; background: none; border: none; font-size: 1.3rem; color: var(--ink); cursor: pointer;
    width: 42px; height: 42px; align-items: center; justify-content: center;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(160deg, var(--blue-light) 0%, var(--blue-mid) 55%, var(--blue-deep) 100%);
    color: #fff;
    padding: 100px 0 140px;
    overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.hero h1 { color: #fff; max-width: 780px; margin-bottom: 20px; }
.hero h1 .dim { color: rgba(255,255,255,0.68); }
.hero p { color: rgba(255,255,255,0.85); max-width: 520px; font-size: 1.05rem; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 48px; color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600; }
.hero-trust .stars { color: #ffd166; letter-spacing: 2px; }

/* Shop teaser on home */
.shop-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }

/* Product cards (matches reference: white card, in-stock pill, centered image, price + tag, full-width button) */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; margin-top: 44px; }
.product-card {
    background: var(--card); border-radius: 20px; border: 1px solid var(--border);
    box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -14px rgba(16,40,64,0.22); }
.product-card-link { text-decoration: none; color: inherit; display: block; }
.product-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 20px 20px 0; }
.product-card-top h3 { margin-bottom: 0; font-size: 1.02rem; }
.stock-badge {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 5px;
    background: var(--green-bg); color: var(--green); font-size: 0.72rem; font-weight: 700;
    padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.stock-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.product-media {
    height: 260px; display: flex; align-items: center; justify-content: center;
    padding: 8px; margin: 16px 20px 0; background: var(--bg); border-radius: 14px;
}
.product-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-meta-row { display: flex; align-items: baseline; gap: 10px; }
.product-price { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.category-pill {
    font-size: 0.72rem; font-weight: 700; color: var(--blue-deep); background: rgba(61,127,196,0.12);
    padding: 4px 10px; border-radius: 999px;
}
.product-card-body .btn { margin-top: auto; }
.safety-link { font-size: 0.75rem; color: var(--muted); text-align: center; text-decoration: underline; text-underline-offset: 2px; }

/* Feature rows (numbered list, no icon boxes) */
.feature-list { margin-top: 44px; display: flex; flex-direction: column; }
.feature-row { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--border); align-items: start; }
.feature-row:last-child { border-bottom: 1px solid var(--border); }
.feature-num { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--blue-mid); }
.feature-row h3 { margin-bottom: 6px; }
.feature-row p { margin-bottom: 0; max-width: 640px; }

/* Journey steps (how it works) */
.journey-steps { display: flex; justify-content: space-between; margin-top: 48px; gap: 12px; }
.journey-step { text-align: center; flex: 1; position: relative; }
.journey-step:not(:last-child)::after {
    content: ''; position: absolute; top: 24px; left: 50%; right: -50%;
    height: 2px; background: var(--border); z-index: 0;
}
.journey-icon {
    width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
    background: var(--card); color: var(--blue-deep); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    position: relative; z-index: 1;
}
.journey-label { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.journey-time { font-size: 0.8rem; color: var(--muted); }
.email-preview {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px;
    padding: 24px; box-shadow: var(--shadow); margin-top: 40px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.email-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.email-sender { font-weight: 700; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.email-sender .dot { width: 7px; height: 7px; background: var(--blue-deep); border-radius: 50%; }
.email-subject { font-weight: 700; font-size: 0.98rem; margin-bottom: 10px; }
.email-body { font-size: 0.88rem; color: var(--muted); }
.email-badge {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    background: var(--green-bg); color: var(--green); font-size: 0.75rem; font-weight: 700; margin-top: 12px;
}

/* Testimonial */
.testimonial { background: var(--card); border-radius: 20px; padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--border); max-width: 760px; margin: 0 auto; }
.testimonial-text { font-size: 1.1rem; color: var(--ink); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-img { width: 48px; height: 48px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; }
.author-info h4 { margin: 0; font-size: 0.98rem; }
.author-info p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* CTA */
.cta-section { background: var(--blue-deep); color: #fff; text-align: center; padding: 90px 0; border-radius: 28px; margin: 0 24px; max-width: 1280px; margin: 0 auto; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 32px; }

/* Footer */
footer { background: var(--ink); color: #a7b2bd; padding: 64px 0 32px; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: 0.95rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #a7b2bd; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding-top: 24px; text-align: center; font-size: 0.8rem; color: #6b7785; }

/* Page header (for non-home pages) */
.page-header { padding: 64px 0 24px; }
.page-header .eyebrow { margin-bottom: 10px; }
.page-header p { max-width: 620px; }

/* Cart page */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.cart-line { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-line-media { width: 90px; height: 90px; background: var(--bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 8px; }
.cart-line-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-line-title { font-weight: 700; margin-bottom: 4px; }
.cart-line-meta { font-size: 0.85rem; color: var(--muted); }
.qty-control { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); background: var(--card); cursor: pointer; font-weight: 700; }
.cart-line-price { font-weight: 800; text-align: right; }
.remove-line { font-size: 0.78rem; color: var(--muted); text-decoration: underline; background: none; border: none; cursor: pointer; margin-top: 6px; display: block; }
.cart-summary { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; color: var(--muted); }
.summary-row.total { color: var(--ink); font-weight: 800; font-size: 1.15rem; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 14px; }
.empty-cart { text-align: center; padding: 80px 0; }
.empty-cart i { font-size: 2.4rem; color: var(--border); margin-bottom: 16px; }

/* Product detail page */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-detail-media {
    background: linear-gradient(160deg, #eef3f8 0%, #cfe0ee 60%, #b9d3e8 100%);
    border-radius: 24px; padding: 32px; display: flex; align-items: flex-end; justify-content: center;
    min-height: 620px; position: sticky; top: 100px;
}
.product-detail-media img { max-width: 100%; max-height: 560px; object-fit: contain; }
.product-breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.product-breadcrumb a { color: var(--muted); text-decoration: none; }
.product-breadcrumb a:hover { color: var(--blue-deep); }
.product-detail-info .product-price { font-size: 1.8rem; margin: 16px 0 24px; }
.option-group { margin-bottom: 28px; }
.option-label { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; display: block; color: var(--ink); }
.option-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch-btn {
    padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border); background: var(--card);
    font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease;
}
.swatch-btn.active { border-color: var(--blue-deep); background: var(--blue-deep); color: #fff; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 42px; height: 42px; border: none; background: var(--card); cursor: pointer; font-weight: 700; font-size: 1.1rem; }
.qty-stepper span { width: 44px; text-align: center; font-weight: 700; }
.add-line { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.add-line .btn { flex: 1; }

/* Accordion */
.accordion { margin-top: 36px; border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-head {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 2px; background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 0.92rem; font-weight: 700; color: var(--ink); text-align: left;
}
.accordion-head i { transition: transform 0.3s ease; color: var(--muted); font-size: 0.85rem; }
.accordion-item.open .accordion-head i { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(.2,.8,.2,1); }
.accordion-item.open .accordion-body { max-height: 200px; }
.accordion-body p { font-size: 0.9rem; color: var(--muted); padding: 0 2px 18px; margin: 0; }

/* Marquee */
.marquee-band { overflow: hidden; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 22s linear infinite; }
.marquee-track span {
    font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 500; color: var(--ink);
    padding: 0 28px; white-space: nowrap; flex-shrink: 0;
}
.marquee-track span::after { content: '·'; margin-left: 56px; color: var(--blue-mid); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Editorial split */
.editorial-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; align-items: center; }
.editorial-text { padding-right: 64px; }
.editorial-text .eyebrow { margin-bottom: 20px; }
.editorial-text h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.05; margin-bottom: 24px; }
.editorial-media { position: relative; }
.editorial-media img.main-shot { width: 100%; height: 560px; object-fit: cover; border-radius: 20px; }
.editorial-media img.detail-shot {
    position: absolute; bottom: -40px; left: -60px; width: 220px; height: 220px;
    object-fit: cover; border-radius: 16px; border: 6px solid var(--bg); box-shadow: var(--shadow);
}

/* Related products */
.related-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.related-heading h2 { margin-bottom: 0; font-size: clamp(1.5rem, 3vw, 2rem); }

/* Bottom lifestyle band */
.lifestyle-band {
    position: relative; border-radius: 24px; overflow: hidden; min-height: 420px;
    display: flex; align-items: center; padding: 60px;
}
.lifestyle-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.lifestyle-band::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(22,32,43,0.75) 0%, rgba(22,32,43,0.35) 55%, rgba(22,32,43,0.1) 100%);
}
.lifestyle-content { position: relative; z-index: 2; max-width: 420px; color: #fff; }
.lifestyle-content h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.lifestyle-content p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.lifestyle-form { display: flex; gap: 10px; max-width: 380px; }
.lifestyle-form input { flex: 1; padding: 13px 16px; border-radius: 999px; border: none; font-family: inherit; font-size: 0.9rem; }

@media (max-width: 900px) {
    .editorial-split { grid-template-columns: 1fr; gap: 40px; }
    .editorial-text { padding-right: 0; }
    .editorial-media img.detail-shot { display: none; }
    .lifestyle-band { padding: 40px 28px; }
    .product-detail-media { position: static; }
}
.toast {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--ink); color: #fff; padding: 14px 26px; border-radius: 999px;
    font-size: 0.9rem; font-weight: 600; opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 500;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-intro { max-width: 640px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Responsive */
@media (max-width: 900px) {
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-sm { padding: 44px 0; }
    .hero { padding: 56px 0 80px; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column; gap: 0;
        position: fixed; top: 78px; left: 0; right: 0; bottom: 0;
        background: #fff; padding: 12px 24px; z-index: 300; overflow-y: auto;
    }
    .nav-links.open li { border-bottom: 1px solid var(--border); }
    .nav-links.open a { display: block; padding: 18px 4px; font-size: 1.05rem; }
    .shop-teaser-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .journey-steps { flex-direction: column; gap: 28px; }
    .journey-step:not(:last-child)::after { display: none; }
    .cta-section { margin: 0 16px; padding: 56px 24px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cart-line { grid-template-columns: 64px 1fr; }
    .cart-line-price { grid-column: 2; text-align: left; }
}
@media (max-width: 420px) {
    .container { padding: 0 18px; }
    .btn { padding: 14px 22px; font-size: 0.88rem; }
}

/* Moriah Labs badge */
.moriah-badge {
    position: fixed; bottom: 24px; left: 24px; z-index: 4000;
    display: inline-flex; align-items: center; height: 46px; border-radius: 999px;
    background: #0a0a0a; color: #fff; text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
    overflow: hidden; white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: box-shadow 0.3s ease;
}
.moriah-badge-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
}
    .moriah-badge-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.moriah-badge-text {
    max-width: 0; opacity: 0; overflow: hidden;
    font-size: 0.82rem; font-weight: 600;
    transition: max-width 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.25s ease;
}
.moriah-badge:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.moriah-badge:hover .moriah-badge-text { max-width: 220px; opacity: 1; padding-right: 20px; }
@media (max-width: 640px) {
    .moriah-badge { bottom: 16px; left: 16px; }
    .moriah-badge:hover .moriah-badge-text { max-width: 180px; }
}

/* ===== TRUST SYSTEM ===== */
.trust-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; margin: 0 auto 56px; max-width: 900px; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-stat { text-align: center; }
.trust-stat-num { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 600; color: var(--blue-deep); }
.trust-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }
.testimonial-stars { color: var(--blue-mid); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { color: var(--ink); font-size: 0.92rem; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar-initials { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-deep); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.85rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-role { font-size: 0.76rem; color: var(--muted); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } .trust-stats { gap: 26px; } }

/* GLOBAL: never default browser formatting on any element */
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
