:root {
    --navy: #071323;
    --navy-2: #0d2138;
    --ink: #132034;
    --muted: #637084;
    --gold: #d7aa54;
    --gold-2: #f3d38a;
    --cream: #fff8ed;
    --soft: #f7efe2;
    --white: #ffffff;
    --line: rgba(19, 32, 52, 0.12);
    --shadow: 0 24px 70px rgba(7, 19, 35, 0.14);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--max));
    margin-inline: auto;
}

.section-pad {
    padding: clamp(70px, 8vw, 120px) 0;
}

.section-pad-sm {
    padding: clamp(64px, 7vw, 100px) 0 clamp(40px, 5vw, 72px);
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 18px;
    z-index: 10000;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
}

.skip-link:focus {
    top: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 248, 237, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(7, 19, 35, 0.08);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 36px rgba(7, 19, 35, 0.08);
    background: rgba(255, 248, 237, 0.96);
}

.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
}

.top-bar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-bar p {
    margin: 0;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.top-actions a:hover {
    color: var(--gold-2);
}

.navbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand img {
    flex: 0 0 auto;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(215, 170, 84, 0.18);
}

.brand strong {
    display: block;
    color: var(--navy);
    font-size: clamp(1rem, 2vw, 1.18rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.76rem;
    margin-top: 2px;
}

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

.nav-menu > a:not(.btn) {
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--ink);
    font-size: 0.94rem;
}

.nav-menu > a:not(.btn):hover,
.nav-menu > a.active:not(.btn) {
    background: rgba(215, 170, 84, 0.15);
    color: var(--navy);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    min-height: 48px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
    box-shadow: 0 18px 40px rgba(7, 19, 35, 0.18);
}

.btn-primary:hover {
    box-shadow: 0 22px 50px rgba(7, 19, 35, 0.25);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    box-shadow: 0 18px 42px rgba(215, 170, 84, 0.22);
}

.btn-soft {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--line);
}

.btn-outline {
    border: 1px solid rgba(215, 170, 84, 0.55);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.22);
}

.btn-small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(215, 170, 84, 0.32), transparent 34%),
        linear-gradient(180deg, #fff8ed 0%, #fbefd9 100%);
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -220px;
    bottom: -180px;
    background: rgba(7, 19, 35, 0.08);
}

.hero-grid,
.split-grid,
.contact-grid,
.about-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: clamp(34px, 6vw, 86px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 950;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.eyebrow.light {
    color: var(--gold-2);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(2.55rem, 6vw, 5.75rem);
    margin-bottom: 22px;
}

h2 {
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
    margin-bottom: 18px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.lead {
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    color: var(--muted);
    max-width: 680px;
}

.hero-actions,
.cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-stats {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
}

.hero-stats div,
.showcase-item,
.benefit-list div,
.contact-methods a {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: 0 12px 32px rgba(7, 19, 35, 0.08);
}

.hero-stats strong {
    display: block;
    color: var(--navy);
    font-size: 1.28rem;
}

.hero-stats span,
.showcase-item span,
.benefit-list span,
.contact-methods span {
    display: block;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    z-index: 1;
}

.visual-card {
    width: min(100%, 500px);
    border-radius: 44px;
    background: linear-gradient(145deg, #ffffff, #f7e6c8);
    box-shadow: var(--shadow);
    padding: clamp(18px, 3vw, 32px);
    border: 1px solid rgba(255, 255, 255, 0.78);
}

.visual-card img {
    width: 100%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border: 1px solid rgba(215, 170, 84, 0.25);
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 24px 60px rgba(7, 19, 35, 0.16);
    max-width: 235px;
}

.floating-card span {
    display: block;
    color: var(--gold);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
}

.floating-card strong {
    color: var(--navy);
    line-height: 1.2;
}

.stock-card {
    left: 0;
    top: 95px;
}

.lead-card {
    right: 0;
    bottom: 86px;
}

.feature-strip {
    background: var(--white);
}

.strip-grid,
.category-grid,
.audience-grid,
.steps-grid,
.values-grid {
    display: grid;
    gap: 22px;
}

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

.strip-grid article,
.category-card,
.product-card,
.step-card,
.audience-grid article,
.values-grid article,
.faq-wrap,
.contact-panel,
.enquiry-form,
.cta-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(7, 19, 35, 0.08);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 16px 48px rgba(7, 19, 35, 0.08);
}

.icon-pill,
.step-card span,
.product-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    font-weight: 950;
    margin-bottom: 18px;
}

.section-heading {
    text-align: center;
    max-width: 820px;
    margin-bottom: clamp(34px, 5vw, 60px);
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 19, 35, 0.12);
}

.category-card img {
    height: 170px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 18px;
}

.category-card p,
.strip-grid p,
.step-card p,
.audience-grid p,
.values-grid p,
.product-card p,
.product-card li,
.faq-wrap p,
.legal-content p,
.contact-panel p,
.cta-card p,
.about-split p {
    color: var(--muted);
}

.category-card a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--navy);
    font-weight: 950;
    border-bottom: 2px solid var(--gold);
}

.dark-section {
    background:
        radial-gradient(circle at top right, rgba(215, 170, 84, 0.24), transparent 34%),
        linear-gradient(135deg, var(--navy), #0d2238 54%, #06101f);
    color: rgba(255, 255, 255, 0.82);
}

.dark-section h2,
.dark-section h3,
.dark-section strong {
    color: var(--white);
}

.dark-section p,
.dark-section li {
    color: rgba(255, 255, 255, 0.76);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.38);
}

.showcase-panel,
.benefit-list {
    display: grid;
    gap: 16px;
}

.showcase-item,
.benefit-list div {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.showcase-item strong,
.benefit-list strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.page-hero {
    background:
        radial-gradient(circle at top left, rgba(215, 170, 84, 0.26), transparent 28%),
        linear-gradient(180deg, #fff8ed, #fbefd9);
    border-bottom: 1px solid rgba(7, 19, 35, 0.08);
}

.page-hero-inner {
    max-width: 850px;
}

.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
}

.page-hero p {
    color: var(--muted);
    font-size: 1.14rem;
}

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

.product-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
}

.product-card h2 {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.product-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.muted-section {
    background: rgba(255, 255, 255, 0.56);
}

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

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    counter-reset: steps;
}

.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrap details {
    border-top: 1px solid var(--line);
    padding: 18px 0;
}

.faq-wrap details:first-of-type {
    margin-top: 20px;
}

.faq-wrap summary {
    cursor: pointer;
    font-weight: 950;
    color: var(--navy);
    font-size: 1.08rem;
}

.rounded-img {
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(7, 19, 35, 0.08);
}

blockquote {
    margin: 28px 0 0;
    padding: 22px 24px;
    border-left: 5px solid var(--gold);
    background: var(--white);
    border-radius: 0 22px 22px 0;
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 950;
    line-height: 1.2;
}

.contact-grid {
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-methods a {
    display: block;
}

.contact-methods strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

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

label {
    color: var(--navy);
    font-weight: 950;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(7, 19, 35, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    font: inherit;
    padding: 14px 15px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(215, 170, 84, 0.18);
}

.form-submit {
    width: 100%;
    margin-top: 4px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 14px 0 0;
}

.alert {
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-weight: 800;
}

.alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.12);
    color: #14532d;
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #7f1d1d;
    border: 1px solid rgba(239, 68, 68, 0.22);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        radial-gradient(circle at top right, rgba(215, 170, 84, 0.25), transparent 30%),
        var(--white);
}

.cta-card h2 {
    margin-bottom: 8px;
}

.site-footer {
    background: #050d18;
    color: rgba(255, 255, 255, 0.74);
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 34px;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 0;
}

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

.site-footer a:hover {
    color: var(--gold-2);
}

.brand-footer strong {
    color: var(--white);
}

.brand-footer small {
    color: var(--gold-2);
}

.footer-brand p {
    margin: 18px 0 0;
    max-width: 440px;
}

.footer-btn {
    margin-top: 20px;
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 24px;
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #115e35;
    color: var(--white);
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(17, 94, 53, 0.28);
}

.narrow {
    max-width: 860px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 32px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

@media (max-width: 1100px) {
    .category-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }

    .top-actions {
        display: none;
    }

    .navbar {
        min-height: 76px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 8px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 14px;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

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

    .nav-menu > a:not(.btn),
    .nav-menu .btn {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .about-split {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 440px;
    }

    .visual-card {
        width: min(100%, 430px);
    }

    .stock-card {
        top: 26px;
    }

    .lead-card {
        bottom: 24px;
    }

    .strip-grid,
    .product-layout,
    .audience-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-card,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 22px, var(--max));
    }

    .top-bar {
        display: none;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand strong {
        font-size: 0.98rem;
    }

    .brand small {
        font-size: 0.68rem;
    }

    h1 {
        font-size: clamp(2.15rem, 12vw, 3.2rem);
    }

    h2 {
        font-size: clamp(1.7rem, 9vw, 2.35rem);
    }

    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .hero-stats,
    .category-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        padding: 20px 0 80px;
    }

    .floating-card {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 12px;
    }

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

    .form-two {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .floating-whatsapp {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .site-footer {
        padding-bottom: 88px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Homepage redesign - premium product-led layout */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 9vw, 136px) 0 clamp(70px, 8vw, 118px);
    background:
        radial-gradient(circle at 13% 12%, rgba(215, 170, 84, 0.28), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(7, 19, 35, 0.18), transparent 26%),
        linear-gradient(135deg, #fff8ed 0%, #f8ead3 46%, #efe0c5 100%);
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.home-hero::before {
    width: 520px;
    height: 520px;
    right: -220px;
    top: 80px;
    background: rgba(7, 19, 35, 0.08);
}

.home-hero::after {
    width: 340px;
    height: 340px;
    left: -140px;
    bottom: -120px;
    border: 1px solid rgba(215, 170, 84, 0.35);
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: center;
    gap: clamp(38px, 7vw, 94px);
}

.home-hero-copy h1 {
    max-width: 790px;
}

.hero-proof {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 690px;
}

.hero-proof div {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 16px 44px rgba(7, 19, 35, 0.08);
}

.hero-proof strong {
    display: block;
    color: var(--navy);
    font-size: 1.32rem;
    letter-spacing: -0.03em;
}

.hero-proof span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.home-hero-showcase {
    position: relative;
    min-height: 640px;
}

.hero-product-main {
    position: absolute;
    inset: 24px 32px 28px 0;
    border-radius: 42px;
    overflow: hidden;
    background: #080c12;
    box-shadow: 0 36px 90px rgba(7, 19, 35, 0.26);
    border: 1px solid rgba(215, 170, 84, 0.34);
}

.hero-product-main::after,
.product-showcase-image::after,
.story-image-board::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(5, 13, 24, 0.68) 100%);
    pointer-events: none;
}

.hero-product-main img,
.hero-mini-card img,
.product-showcase-image img,
.story-image-board img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(215, 170, 84, 0.35);
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 18px 44px rgba(7, 19, 35, 0.18);
}

.hero-product-badge span,
.product-showcase-image span,
.hero-mini-card span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-product-badge strong {
    display: block;
    color: var(--navy);
    font-size: 1.1rem;
    line-height: 1.2;
    margin-top: 4px;
}

.hero-mini-card {
    position: absolute;
    z-index: 3;
    width: 185px;
    height: 220px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 28px 60px rgba(7, 19, 35, 0.20);
}

.hero-mini-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(5, 13, 24, 0.72));
}

.hero-mini-card span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 15px;
    z-index: 2;
    color: var(--gold-2);
}

.hero-mini-one {
    left: -42px;
    bottom: 76px;
}

.hero-mini-two {
    right: 0;
    top: 0;
}

.brand-strip {
    background: #050d18;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(215, 170, 84, 0.16);
    border-bottom: 1px solid rgba(215, 170, 84, 0.16);
}

.brand-strip-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 26px;
    text-align: center;
}

.brand-strip-inner span {
    position: relative;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-strip-inner span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}

.home-gallery-section {
    background:
        radial-gradient(circle at top left, rgba(215, 170, 84, 0.15), transparent 30%),
        var(--cream);
}

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

.product-showcase-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(7, 19, 35, 0.08);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 52px rgba(7, 19, 35, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-showcase-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(7, 19, 35, 0.15);
}

.product-showcase-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #080c12;
}

.product-showcase-image img {
    transition: transform 0.45s ease;
}

.product-showcase-card:hover .product-showcase-image img {
    transform: scale(1.045);
}

.product-showcase-image span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: var(--gold-2);
}

.product-showcase-content {
    padding: 22px 22px 24px;
}

.product-showcase-content h3 {
    margin-bottom: 10px;
}

.product-showcase-content p {
    color: var(--muted);
    margin-bottom: 0;
}

.refined-strip {
    background: var(--white);
}

.home-dark-story {
    overflow: hidden;
}

.home-story-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.story-image-board {
    position: relative;
    min-height: 560px;
}

.story-img-large {
    position: absolute;
    inset: 30px 74px 24px 0;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(215, 170, 84, 0.25);
}

.story-img-small {
    position: absolute;
    z-index: 2;
    width: 220px;
    height: 250px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 26px 68px rgba(0, 0, 0, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.story-img-small.top {
    right: 0;
    top: 0;
}

.story-img-small.bottom {
    right: 26px;
    bottom: 0;
}

.home-steps-grid .step-card {
    min-height: 100%;
}

.home-final-cta {
    background:
        radial-gradient(circle at top right, rgba(215, 170, 84, 0.26), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff8ed 100%);
}

@media (max-width: 1180px) {
    .product-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-mini-one {
        left: 0;
    }
}

@media (max-width: 900px) {
    .home-hero-grid,
    .home-story-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-showcase {
        min-height: 560px;
    }

    .hero-product-main {
        inset: 0 0 40px 0;
    }

    .hero-mini-one {
        left: 18px;
        bottom: 0;
    }

    .hero-mini-two {
        right: 18px;
        top: 18px;
    }

    .story-image-board {
        min-height: 520px;
    }

    .story-img-large {
        inset: 22px 80px 22px 0;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding: 56px 0 70px;
    }

    .hero-proof,
    .product-showcase-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-showcase {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .hero-product-main,
    .hero-mini-card {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .hero-product-main {
        border-radius: 30px;
    }

    .hero-product-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        border-radius: 18px;
    }

    .hero-mini-card {
        display: none;
    }

    .brand-strip-inner {
        align-items: stretch;
        padding: 16px 0;
        gap: 10px;
    }

    .brand-strip-inner span {
        flex: 1 1 45%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 999px;
        padding: 8px 10px;
        font-size: 0.86rem;
    }

    .brand-strip-inner span::after {
        display: none;
    }

    .story-image-board {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .story-img-large,
    .story-img-small {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 26px;
    }

    .story-img-small.bottom {
        display: none;
    }
}
