:root {
    --bg-dark: #0a0805;
    --bg-card: #14110b;
    --bg-card-hover: #1e1910;
    --text-primary: #ffffff;
    --text-secondary: #bba27e;
    --gold-primary: #d4af37;
    --gold-light: #f9df9f;
    --gold-dark: #aa8222;
    --gold-gradient: linear-gradient(135deg, #f9df9f 0%, #aa8222 25%, #d4af37 50%, #8a6315 75%, #f9df9f 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);
    --border-dim: #332b1c;
    --transition-speed: 0.3s;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.highlight {
    color: var(--gold-primary);
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px var(--gold-glow), inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.8), inset 0 -1px 1px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Base Layout Sections */
section {
    padding: 60px 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--border-dim);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    background: rgba(201, 168, 76, 0.05);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 56px;
    line-height: 1.2;
}

/* 01. Navigation */
.navbar {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 9, 8, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo i {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-speed);
}

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

.nav-btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* 02. Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 85%;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trusted-by {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-trusted-by span {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-trust .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.8;
}

.hero-trust .badge i {
    color: var(--gold-primary);
}

/* Live Price Widget */
.hero-visual {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-widget {
    background: rgba(10, 8, 5, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.price-widget:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.price-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 10px #4CAF50;
    }

    100% {
        opacity: 0.2;
    }
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dim);
}

.price-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.metal-info {
    display: flex;
    flex-direction: column;
}

.metal-name {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

.metal-unit {
    font-size: 13px;
    color: var(--text-secondary);
}

.metal-price {
    text-align: right;
}

.current-price {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.price-change {
    font-size: 14px;
    font-weight: 500;
}

.change-up {
    color: #4CAF50;
}

.change-down {
    color: #F44336;
}

/* 03. Stats Bar */
.stats-section {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

/* 04. How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: transform var(--transition-speed);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 76, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.step-icon {
    font-size: 48px;
    color: var(--gold-primary);
    margin: 20px 0;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-secondary);
}

/* 05. Why Gixcart */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: var(--bg-card);
    padding: 32px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    transition: all var(--transition-speed);
}

.why-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-primary);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 24px;
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* 06. Compare Table */
.compare-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.compare-table th,
.compare-table td {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-dim);
}

.compare-table th {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.col-gixcart {
    background: rgba(201, 168, 76, 0.05);
    border-left: 1px solid var(--gold-primary);
    border-right: 1px solid var(--gold-primary);
}

.th-gixcart {
    background: rgba(201, 168, 76, 0.1);
    border-top: 1px solid var(--gold-primary);
    color: var(--gold-primary) !important;
}

.cell-yes {
    color: #4CAF50;
    font-size: 20px;
}

.cell-no {
    color: #F44336;
    font-size: 20px;
}

/* 07. Trust Strip */
.trust-strip {
    padding: 60px 0;
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
    background: var(--bg-dark);
}

.trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-speed);
}

.trust-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 08. Pre-Sale CTA */
.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #151413 100%);
    text-align: center;
    padding: 120px 0;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-input {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-dim);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition-speed);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.cta-incentives {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.cta-incentives span {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-incentives i {
    color: var(--gold-primary);
}

/* 09. Premium Dashboard */
.premium-dashboard {
    max-width: 600px;
    margin: 0 auto;
    background: #0d0c0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.pd-header {
    padding: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-label {
    color: #888;
    font-size: 13px;
    margin-bottom: 8px;
}

.pd-balance {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 12px;
}

.pd-cents {
    font-size: 28px;
    color: #aaa;
}

.pd-trend {
    color: #4CAF50;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-holdings {
    display: flex;
    padding: 32px 40px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-asset {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.pd-asset-label {
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
}

.pd-asset-qty {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.pd-asset-cad {
    font-size: 13px;
    color: #666;
}

.pd-actions {
    display: flex;
    padding: 0 40px;
    gap: 16px;
    margin-top: 32px;
}

.pd-btn {
    flex: 1;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    padding: 16px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pd-btn i {
    color: var(--gold-primary);
    font-size: 18px;
}

.pd-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.pd-history {
    padding: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-tx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.pd-tx-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pd-tx-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.icon-up {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.icon-out {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.pd-tx-title {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 4px;
}

.pd-tx-time {
    color: #666;
    font-size: 13px;
}

.pd-tx-right {
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.txt-green {
    color: #4CAF50;
}

.pd-footer {
    padding: 20px 40px;
    background: #080706;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.pd-ticker-item span {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-left: 4px;
}

.pd-live {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4CAF50;
}

/* Calculator Formatting */
.calculator-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    padding: 60px;
}

.calculator-content {
    flex: 1;
}

.calculator-box {
    flex: 1;
    background: #0d0c0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.calc-row {
    margin-bottom: 24px;
}

.calc-input-group {
    display: flex;
    align-items: stretch;
    background: #1a1712;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.calc-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 16px 20px;
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-align: left;
    outline: none;
}

.calc-select {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border: none;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0 16px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    outline: none;
}

.calc-select option {
    background: #0d0c0a;
    color: #fff;
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.calc-res-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.calc-res-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.res-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.res-val {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}



/* 10. Footer */
.footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-dim);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--gold-primary);
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 80%;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-dim);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 13px;
}

.disclaimer {
    color: #666;
    font-size: 12px;
    margin-top: 16px;
    max-width: 800px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

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

    .steps-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .mockup-body {
        grid-template-columns: 1fr;
    }

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

    .nav-links,
    .nav-btn {
        display: none;
    }

    /* Calculator / Live Value — stack vertically */
    .calculator-wrapper {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
    }

    .calculator-content {
        text-align: center;
    }

    .calculator-content .section-title {
        text-align: center;
    }

    .calculator-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .calculator-box {
        padding: 28px 20px;
    }

    /* Compare table — ensure horizontal scroll */
    .compare-wrapper {
        margin-left: -24px;
        margin-right: -24px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .compare-table {
        min-width: 700px;
    }

    .compare-table th,
    .compare-table td {
        padding: 16px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .section-title,
    .hero-title {
        font-size: 2.5rem;
    }

    /* Calculator further refinements */
    .calculator-wrapper {
        padding: 28px 16px;
        gap: 24px;
        border-radius: 16px;
    }

    .calculator-box {
        padding: 24px 16px;
    }

    .calc-input-group {
        flex-direction: column;
    }

    .calc-input-group input {
        font-size: 20px;
        padding: 14px 16px;
    }

    .calc-select {
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        padding: 12px 16px;
    }

    .calc-results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .calc-res-card {
        padding: 16px 12px;
    }

    .res-val {
        font-size: 18px;
    }

    .res-label {
        font-size: 11px;
    }

    /* Compare table — scroll hint */
    .compare-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        font-size: 13px;
        color: var(--text-secondary);
        background: rgba(212, 175, 55, 0.05);
        border-bottom: 1px solid var(--border-dim);
    }

    .compare-scroll-hint i {
        color: var(--gold-primary);
        animation: swipeHint 1.5s ease-in-out infinite;
    }

    @keyframes swipeHint {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(6px); }
    }

    /* Price widget at mobile */
    .price-widget {
        transform: none;
        padding: 24px;
    }

    .price-widget:hover {
        transform: none;
    }

    .current-price {
        font-size: 22px;
    }

    .metal-name {
        font-size: 16px;
    }

    /* Trust strip */
    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .trust-logo {
        font-size: 16px;
    }

    /* CTA section */
    .form-row {
        flex-direction: column;
    }

    .cta-incentives {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Dashboard preview */
    .pd-balance {
        font-size: 40px;
    }

    .pd-cents {
        font-size: 20px;
    }

    .pd-header {
        padding: 24px;
    }

    .pd-holdings {
        flex-direction: column;
        padding: 20px 24px;
    }

    .pd-actions {
        padding: 0 24px;
        flex-direction: column;
    }

    .pd-history {
        padding: 24px;
    }

    .pd-footer {
        padding: 16px 24px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .calc-results-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-item h3 {
        font-size: 2.2rem;
    }
}

/* 11. Premium Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Stagger grids */
.steps-grid .step-card:nth-child(2) {
    transition-delay: 0.1s;
}

.steps-grid .step-card:nth-child(3) {
    transition-delay: 0.2s;
}

.why-grid .why-card:nth-child(2) {
    transition-delay: 0.1s;
}

.why-grid .why-card:nth-child(3) {
    transition-delay: 0.2s;
}

.why-grid .why-card:nth-child(4) {
    transition-delay: 0.1s;
}

.why-grid .why-card:nth-child(5) {
    transition-delay: 0.2s;
}

.why-grid .why-card:nth-child(6) {
    transition-delay: 0.3s;
}

.stats-grid .stat-item:nth-child(2) {
    transition-delay: 0.1s;
}

.stats-grid .stat-item:nth-child(3) {
    transition-delay: 0.2s;
}

.stats-grid .stat-item:nth-child(4) {
    transition-delay: 0.3s;
}