:root {
    /* American Flag Palette - High Contrast, Fortune 500 Quality */
    --flag-blue-primary: #002868;   /* Official American flag blue */
    --flag-blue-deep: #001529;      /* Hero, dark sections */
    --flag-blue-light: #003366;     /* Hover states */
    --american-blue: #002868;       /* Alias for compatibility */
    --american-red: #B22234;        /* Standard Flag Red (Accents only) */
    --american-white: #FFFFFF;      /* Pure White */
    
    --golden-accent: #D4AF37;       /* Metallic Gold - Accents only */
    --golden-light: #F4E87C;
    
    /* Text Colors */
    --text-primary: #111111;    /* Jet Black for main text */
    --text-secondary: #444444;  /* Dark Gray for secondary text */
    --text-muted: #666666;      /* Medium Gray */
    --text-light: #999999;
    --text-white: #FFFFFF;

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F5F7FA;        /* Very light cool gray */
    --bg-section: #FAFBFC;
    --bg-dark: #050A14;         /* Very dark blue/black */

    /* Buttons - Solid Colors Only */
    --btn-primary: var(--flag-blue-primary);
    --btn-primary-text: var(--american-white);
    --btn-primary-hover: var(--flag-blue-light);

    /* Borders */
    --border-light: #E0E0E0;
    --border-medium: #CCCCCC;
    
    /* Legacy mapping */
    --primary: var(--american-blue);
    --text-main: var(--text-primary);
    --text-dim: var(--text-secondary);
    --bg-deep: var(--bg-white);
    --bg-card: var(--bg-white);
    --bg-card-hover: var(--bg-light);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background: var(--bg-deep);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: -1;
    pointer-events: none;
}

/* Section Background Alternation */
section {
    background: var(--bg-deep);
}

section:not(.hero):nth-child(even) {
    background: var(--bg-section);
}

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

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

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

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

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

#contact {
    background: var(--bg-deep);
}

/* debt-billboard-section uses its own bg */

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    padding: 0.35rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

nav.scrolled .nav-container {
    padding: 0.65rem 1.5rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    justify-content: center;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    font-weight: 600; /* Increased weight */
    color: #B4941F; /* Darker gold */
    letter-spacing: 0.12em;
    text-transform: none;
    opacity: 1;
    line-height: 1.2;
    font-style: italic;
    text-align: left;
    position: relative;
    white-space: nowrap;
    margin-left: 0;
    text-shadow: 0 0 1px rgba(0,0,0,0.1); /* Subtle shadow */
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--primary-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

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

.nav-cta {
    background: var(--flag-blue-primary);
    color: var(--american-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(10, 30, 64, 0.2);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 30, 64, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero - Fortune 500 Quality: American Flag Blue, High Contrast */
.hero {
    padding: clamp(120px, 15vw, 200px) 1.5rem clamp(80px, 12vw, 120px);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(160deg, rgba(0, 40, 104, 0.88) 0%, rgba(0, 21, 41, 0.92) 40%, rgba(0, 10, 20, 0.95) 100%),
        url('../assets/crypto-blockchain-concept.png') center center / cover no-repeat;
    background-color: var(--flag-blue-deep);
    min-height: clamp(500px, 85vh, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Geometric accent - subtle diagonal lines for texture */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(105deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(75deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

/* Soft gold glow at corners - institutional elegance */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 0.5rem;
    width: 100%;
    text-align: center;
}

@media (max-width: 1200px) {
    .hero-content {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        transform: none;
    }
}

.hero-trust {
    margin-top: 2.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-white);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.flag-text {
    color: var(--american-blue);
    font-weight: 700;
}

h1 {
    font-size: clamp(1.75rem, 4.5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

/* Hero-specific headline scaling - responsive across breakpoints */
.hero h1 {
    font-size: clamp(1.85rem, 5vw + 1.25rem, 3.5rem);
    line-height: 1.2;
}

.hero .company-name {
    display: block;
    font-size: clamp(0.85rem, 1.5vw + 0.5rem, 1.2rem) !important;
    letter-spacing: 2px !important;
    margin-bottom: 1rem;
    color: var(--golden-accent);
    font-weight: 700;
    text-transform: uppercase;
}

.hero-headline-white {
    display: block;
    font-weight: 800;
    color: var(--american-white);
}

.hero-headline-gold {
    display: block;
    font-weight: 800;
    color: var(--golden-accent);
}

.text-main {
    color: var(--text-primary);
}

.hero-desc {
    font-size: clamp(0.95rem, 1.5vw + 0.6rem, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero-specific button styles - high contrast (higher specificity than .btn-primary) */
.hero .hero-btn-primary {
    background: var(--flag-blue-primary);
    color: var(--american-white);
    border: 2px solid var(--flag-blue-primary);
    font-weight: 700;
    transition: all 0.3s ease;
    min-height: 48px;
    padding: 0.875rem 1.75rem;
}

/* Higher specificity so hero button overrides .btn-primary:hover */
.hero .hero-btn-primary:hover {
    background: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    color: var(--american-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 40, 104, 0.35);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--american-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    min-height: 48px;
    padding: 0.875rem 1.75rem;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--american-white);
    color: var(--american-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

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

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--american-blue);
    color: var(--american-white);
    border: 1px solid var(--american-blue);
}

.btn-primary:hover {
    background: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 30, 64, 0.2);
}

.btn-secondary {
    background: var(--american-white);
    color: var(--american-blue);
    border: 1px solid var(--american-blue);
}

.btn-secondary:hover {
    background: var(--american-blue);
    color: var(--american-white);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 100px 1.5rem;
    position: relative;
}

section:not(.hero):nth-child(even) {
    background: var(--bg-section);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--flag-blue-primary);
    color: var(--american-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(0, 40, 104, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Remove all animation effects for professional look */
.hero-bg-animation {
    display: none;
}

.orb, .cursor-orb, .grid-overlay {
    display: none;
}

/* Interactive Glow - Disabled */
.cursor-glow {
    display: none;
}
.floating-debt-warning {
    display: none !important;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
    position: relative;
    flex-wrap: nowrap;
}

.warning-icon {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden-accent);
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.warning-icon svg {
    width: 14px;
    height: 14px;
}

.warning-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.warning-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--american-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.warning-subtitle {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.warning-live {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--american-white);
    background: #cc0000;
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    white-space: nowrap;
}

.warning-display {
    text-align: center;
    padding: 0.4rem 0.5rem;
    background: #000000;
    border: 1px solid #333;
    border-radius: 4px;
    margin-bottom: 0.625rem;
    color: #ff0000;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #ff0000 #1a1a1a;
}

.warning-display::-webkit-scrollbar {
    height: 3px;
}

.warning-display::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 2px;
}

.warning-display::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 2px;
}

.warning-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0.5rem;
}

.warning-message {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.warning-btn {
    background: var(--golden-accent);
    color: #000;
    border: none;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.warning-btn:hover {
    background: var(--golden-light);
    transform: translateY(-1px);
}

.warning-particles {
    display: none;
}

.warning-particles::before,
.warning-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ff1a1a;
    border-radius: 50%;
    animation: particleFloat 4s linear infinite;
}

.warning-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -1s;
}

.warning-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: -2.5s;
}

@keyframes warningPulse {
    0% { opacity: 0.95; }
    100% { opacity: 1; }
}

@keyframes iconGlow {
    0% { opacity: 0.9; }
    100% { opacity: 1; }
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100%) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100%) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile responsiveness for floating widget */
@media (max-width: 768px) {
    .floating-debt-warning {
        bottom: 12px;
        left: 12px;
        right: 12px;
        min-width: unset;
        max-width: calc(100vw - 24px);
        width: auto;
        padding: 0.75rem;
    }

    .warning-header {
        gap: 0.5rem;
    }

    .warning-display {
        font-size: 11px;
        padding: 0.35rem 0.45rem;
        letter-spacing: 0.2px;
    }

    .warning-icon {
        width: 24px;
        height: 24px;
    }

    .warning-icon svg {
        width: 12px;
        height: 12px;
    }

    .warning-title {
        font-size: 0.6rem;
        letter-spacing: 0.02em;
    }

    .warning-subtitle {
        font-size: 0.5rem;
    }

    .warning-live {
        font-size: 0.45rem;
        padding: 1px 4px;
    }

    .warning-message {
        font-size: 0.5rem;
    }

    .warning-btn {
        font-size: 0.55rem;
        padding: 0.25rem 0.55rem;
    }
}

@media (max-width: 480px) {
    .floating-debt-warning {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100vw - 20px);
        padding: 0.65rem;
        border-radius: 6px;
    }

    .warning-header {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }

    .warning-icon {
        width: 22px;
        height: 22px;
    }

    .warning-icon svg {
        width: 11px;
        height: 11px;
    }

    .warning-title {
        font-size: 0.55rem;
    }

    .warning-subtitle {
        font-size: 0.48rem;
    }

    .warning-live {
        font-size: 0.42rem;
        padding: 1px 4px;
    }

    .warning-display {
        font-size: 10px;
        padding: 0.3rem 0.4rem;
        letter-spacing: 0.1px;
        margin-bottom: 0.5rem;
    }

    .warning-footer {
        padding-top: 0.4rem;
        gap: 0.4rem;
    }

    .warning-message {
        font-size: 0.48rem;
    }

    .warning-btn {
        font-size: 0.52rem;
        padding: 0.22rem 0.5rem;
    }
}

@media (max-width: 380px) {
    .floating-debt-warning {
        min-width: unset;
        padding: 0.55rem;
        left: 8px;
        right: 8px;
    }

    .warning-display {
        font-size: 9px;
        padding: 0.25rem 0.35rem;
    }

    .warning-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
    }

    .warning-btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobile responsiveness for hero section */
@media (max-width: 768px) {
    .hero {
        padding: 140px 1rem 80px;
        min-height: 500px;
    }

    .hero-container {
        gap: 2rem;
        align-items: center;
    }

    .hero-content {
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
    }

    .hero-trust {
        margin-top: 2rem;
    }

    .hero-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stats-section {
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        min-width: 120px;
        max-width: 140px;
        flex: 1;
        padding: 0.875rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 2rem;
    }

    .american-flag-accent {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 1rem 60px;
        min-height: 450px;
    }

    .hero-container {
        gap: 1.5rem;
    }

    .hero-trust {
        margin-top: 1.5rem;
    }

    .hero-badge {
        padding: 0.625rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-stats-section {
        gap: 0.75rem;
        margin-top: 1.25rem;
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }

    .hero-buttons {
        gap: 0.875rem;
    }

    .btn {
        max-width: 260px;
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.25rem;
    }
}

/* Hero min-height for desktop - ensures full presence */
@media (min-width: 769px) {
    .hero {
        min-height: 620px;
    }
}

/* Process Section Connection Lines */
.process-grid::before {
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
    top: 40px;
    height: 1px;
}

.process-card {
    background: var(--bg-deep); /* Opaque bg to cover line */
    z-index: 2;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.process-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Typography Refinement */
h1, h2, h3 {
    letter-spacing: -0.03em;
}

/* Button Glow */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmerBtn 3s infinite;
}

@keyframes shimmerBtn {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

/* Editorial blocks - Fortune 500 style, no cards */
.features-section {
    padding: 100px 1.5rem 80px;
    background: var(--bg-section);
}

.features-section .section-header {
    margin-bottom: 4rem;
}

.editorial-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto 0;
    min-height: 420px;
    align-items: center;
}

.editorial-block:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-light);
}

.editorial-image-left .editorial-image { order: 1; }
.editorial-image-left .editorial-content { order: 2; }
.editorial-image-right .editorial-content { order: 1; }
.editorial-image-right .editorial-image { order: 2; }

.editorial-image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

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

.editorial-image-large {
    min-height: 440px;
}

.editorial-content {
    padding: 4rem 4rem;
    background: var(--bg-white);
}

.editorial-content-stack {
    padding: 4rem 4rem;
}

.editorial-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--golden-accent);
    margin-bottom: 0.75rem;
}

.editorial-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.editorial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.editorial-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.editorial-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.editorial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--flag-blue-primary);
    border-radius: 50%;
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--flag-blue-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.2s ease, color 0.2s ease;
}

.editorial-link:hover {
    gap: 0.75rem;
    color: var(--golden-accent);
}

.editorial-logos img,
.benefits-logos img {
    width: 32px;
    height: 32px;
}

@media (max-width: 968px) {
    .editorial-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .editorial-image-left .editorial-image,
    .editorial-image-left .editorial-content,
    .editorial-image-right .editorial-image,
    .editorial-image-right .editorial-content {
        order: unset;
    }

    .editorial-image {
        min-height: 280px;
    }

    .editorial-image-large {
        min-height: 320px;
    }

    .editorial-content,
    .editorial-content-stack {
        padding: 2.5rem 1.5rem;
    }

    .editorial-title {
        font-size: 1.5rem;
    }
}

/* Process timeline - elegant, no cards */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-light);
    align-items: start;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--golden-accent);
    letter-spacing: -0.02em;
    line-height: 1;
}

.process-step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }
}

/* Benefits - editorial hero */
.benefits-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.benefits-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.benefits-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefits-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(to top, rgba(0, 40, 104, 0.95) 0%, rgba(0, 40, 104, 0.6) 40%, transparent 100%);
}

.benefits-hero-overlay .section-title {
    color: var(--american-white);
}

.benefits-hero-overlay .section-desc {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.benefits-hero-overlay .section-badge {
    background: var(--golden-accent);
    color: var(--flag-blue-primary);
}

.benefits-content {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.max-width-text {
    max-width: 720px;
    margin: 0 auto;
}

.benefits-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--flag-blue-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.benefits-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefits-logos {
    margin-top: 2rem;
}

.benefits-logos img {
    width: 36px;
    height: 36px;
}

/* Crypto logos row - coin symbols in feature/benefit cards */
.crypto-logos-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.crypto-logos-row img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.crypto-logos-row-large {
    gap: 1rem;
    margin-top: 1.5rem;
}

.crypto-logos-row-large img {
    width: 36px;
    height: 36px;
}

/* Feature card section images */
.feature-image-wrap {
    margin-top: 1.25rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.feature-section-img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: cover;
    display: block;
}

/* Benefit card section images */
.benefit-image-wrap {
    margin-top: 1.25rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.benefit-section-img {
    width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: cover;
    display: block;
}

/* About section images */
.about-hero-img {
    max-width: 560px;
    margin: 2rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-hero-img-inner {
    width: 100%;
    height: auto;
    display: block;
}

.value-item-img {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.value-item-img img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: cover;
    display: block;
}

/* Calculator */
.calculator-section {
    position: relative;
}

.calculator-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.calculator {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--flag-blue-primary);
}


.slider-section {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.slider-label {
    font-weight: 700;
    color: var(--text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slider-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--american-blue);
    line-height: 1;
    letter-spacing: -0.04em;
}

.slider-wrapper {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #E1E4E8;
    border-radius: 10px;
    overflow: visible;
    z-index: 1;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--flag-blue-primary) !important;
    border-radius: 10px;
    transition: width 0.15s ease;
    z-index: 2;
    pointer-events: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.slider-input {
    position: relative;
    width: 100%;
    height: 50px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--flag-blue-primary);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(10, 30, 64, 0.3);
    cursor: grab;
    transition: all 0.2s ease;
    border: 3px solid #FFFFFF;
    margin-top: -7px;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(10, 30, 64, 0.4);
}

.slider-input::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.05);
}

.slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--flag-blue-primary);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(10, 30, 64, 0.3);
    cursor: grab;
    transition: all 0.2s ease;
    border: 3px solid #FFFFFF;
}

.slider-input::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(10, 30, 64, 0.4);
}

.slider-input::-moz-range-thumb:active {
    cursor: grabbing;
    transform: scale(1.05);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.result-card {
    background: transparent;
    border-radius: 0;
    padding: 1.25rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.result-card:last-child {
    border-right: none;
}

.result-card:hover {
    background: rgba(0, 40, 104, 0.03);
}

.result-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 40, 104, 0.05);
    border: 1px solid rgba(0, 40, 104, 0.15);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.disclaimer strong {
    color: var(--primary);
    font-weight: 600;
}

.calculator-cta {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.calculator-cta .cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.calculator-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    gap: 0.5rem;
}

/* Process */
.process-section {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-hover), var(--border-hover), transparent);
    z-index: 0;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.1);
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--flag-blue-primary);
    color: var(--american-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 2px 8px rgba(10, 30, 64, 0.2);
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(10, 30, 64, 0.3);
}

.process-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.process-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 40, 104, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--flag-blue-primary);
    border: 1px solid rgba(0, 40, 104, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05);
    background: rgba(0, 40, 104, 0.15);
    border-color: var(--flag-blue-primary);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.benefit-content p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #000;
    padding: 140px 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #000;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
    font-size: 1.35rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.btn-black {
    background: #000;
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-black:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Forms Refinement */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.03), transparent 70%);
    pointer-events: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group-slider {
    margin-bottom: 3.5rem;
}

.form-group-slider .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.form-group-slider .slider-label {
    font-weight: 700;
    color: var(--text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group-slider .slider-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--american-blue);
    line-height: 1;
    letter-spacing: -0.04em;
}

/* Ensure contact form slider uses same styles as calculator */
.form-group-slider .slider-wrapper {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

.form-group-slider .slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #E1E4E8;
    border-radius: 10px;
    overflow: visible;
    z-index: 1;
}

.form-group-slider .slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--flag-blue-primary) !important;
    border-radius: 10px;
    transition: width 0.15s ease;
    z-index: 2;
    pointer-events: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.form-group-slider .slider-input {
    position: relative;
    width: 100%;
    height: 50px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.form-group-slider .slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--flag-blue-primary);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(10, 30, 64, 0.3);
    cursor: grab;
    transition: all 0.2s ease;
    border: 3px solid #FFFFFF;
    margin-top: -7px;
}

.form-group-slider .slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(10, 30, 64, 0.4);
}

.form-group-slider .slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--flag-blue-primary);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(10, 30, 64, 0.3);
    cursor: grab;
    transition: all 0.2s ease;
    border: 3px solid #FFFFFF;
}

.form-group-slider .slider-input::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(10, 30, 64, 0.4);
}

.form-group label {
    display: block;
    color: var(--text-dim);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-deep);
    border: 1px solid var(--border-medium);
    color: var(--text-main);
    padding: 1rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-deep);
    box-shadow: 0 0 0 3px rgba(0, 40, 104, 0.1);
}

.form-group:focus-within label {
    color: var(--primary);
}

.form-submit {
    width: 100%;
    background: var(--american-blue);
    color: var(--american-white);
    padding: 1rem;
    border: 1px solid var(--american-blue);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-submit:hover {
    background: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 30, 64, 0.2);
}

/* ===========================================
   DEBT PANEL (Hero) - Professional Dark Panel
   =========================================== */
.debt-panel {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: #0a0a0a;
    border: 1px solid #2a0000;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    z-index: 10;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(180, 0, 0, 0.15),
        inset 0 0 60px rgba(0, 0, 0, 0.9);
}

.debt-panel-scanlines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 0, 0.015) 2px,
        rgba(255, 0, 0, 0.015) 4px
    );
    pointer-events: none;
    z-index: 3;
}

.debt-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.debt-panel-dot {
    width: 8px; height: 8px;
    background: #ff1a1a;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px #ff1a1a;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #ff1a1a; }
    50% { opacity: 0.4; box-shadow: 0 0 2px #ff1a1a; }
}

.debt-panel-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #cc0000;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.debt-panel-live {
    font-size: 0.55rem;
    font-weight: 800;
    color: #ff1a1a;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.15em;
    margin-left: auto;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.debt-panel-display {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff1a1a;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.debt-panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.debt-panel-rising {
    font-size: 0.6rem;
    color: #661111;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-style: italic;
}

.debt-panel-source {
    font-size: 0.55rem;
    color: #441111;
    font-weight: 400;
}

/* ================================================
   DEBT BILLBOARD (Bottom Section) - Large & Scary
   ================================================ */
.debt-billboard-section {
    background: #050505;
    padding: 80px 1.5rem;
    position: relative;
    overflow: hidden;
}

.debt-billboard-section .section-header {
    max-width: 700px;
}

.debt-billboard-section .section-title {
    color: #fff;
}

.debt-billboard-section .section-desc {
    color: #777;
}

.debt-billboard-section .section-badge {
    background: rgba(255, 0, 0, 0.08);
    color: #cc0000;
    border-color: rgba(255, 0, 0, 0.2);
}

.debt-billboard-section::before {
    background: rgba(255, 0, 0, 0.08);
}

.debt-billboard {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a0a;
    border: 1px solid #2a0000;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(180, 0, 0, 0.2),
        0 0 120px rgba(120, 0, 0, 0.08),
        inset 0 0 80px rgba(0, 0, 0, 0.95);
}

.debt-billboard-scanlines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 0, 0.02) 2px,
        rgba(255, 0, 0, 0.02) 4px
    );
    pointer-events: none;
    z-index: 3;
}

.debt-billboard-inner {
    position: relative;
    z-index: 2;
}

.debt-billboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.debt-billboard-dot {
    width: 10px; height: 10px;
    background: #ff1a1a;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px #ff1a1a;
    flex-shrink: 0;
}

.debt-billboard-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #cc0000;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
}

.debt-billboard-live {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ff1a1a;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.15em;
    margin-left: auto;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.debt-billboard-display {
    text-align: center;
    padding: 1rem 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff1a1a;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.debt-billboard-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 0, 0, 0.12);
}

.debt-billboard-rising {
    font-size: 0.75rem;
    color: #661111;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-style: italic;
}

.debt-billboard-link {
    color: #882222;
    text-decoration: none;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.debt-billboard-link:hover {
    color: #ff1a1a;
}

.debt-billboard-message {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .debt-panel { padding: 0.75rem 1rem; max-width: 100%; }
    .debt-billboard { padding: 1.5rem 1rem; }
    .debt-billboard-title { font-size: 0.7rem; letter-spacing: 0.1em; }
    .debt-panel-title { font-size: 0.6rem; }
}

@media (max-width: 480px) {
    .debt-panel { padding: 0.6rem 0.75rem; }
    .debt-billboard { padding: 1rem 0.75rem; }
}

/* Hero Statistics Section */
.hero-stats-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    min-width: 120px;
    flex: 1;
    padding: 1rem;
    background: var(--american-white);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--american-blue);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .hero {
        padding: 160px 1.5rem 100px;
    }
    
    .hero-container {
        gap: 1.75rem;
    }
    
    .hero-content {
        max-width: 90%;
    }
    
    h1 {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }
    
    .company-name {
        font-size: 1.05rem !important;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 1.5rem 80px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero::after {
        background-size: 30px 30px;
        opacity: 0.5;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    h1 {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    .company-name {
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
        letter-spacing: 1.5px !important;
    }
    
    .hero-desc {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.875rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 2rem;
        flex-wrap: wrap;
    }
    
    .btn {
        flex: 1;
        min-width: 135px;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 0.65rem 1.25rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        max-width: 95%;
        margin: 0 auto 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 1.25rem 60px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero::after {
        background-size: 25px 25px;
        opacity: 0.4;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    h1 {
        font-size: clamp(1.6rem, 10vw, 2.4rem);
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    .company-name {
        font-size: 0.85rem !important;
        margin-bottom: 0.65rem !important;
        letter-spacing: 1.3px !important;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
        padding: 0;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }
    
    .btn {
        padding: 0.85rem 1.15rem;
        font-size: 0.875rem;
        min-width: 125px;
    }
    
    .hero-badge {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
        max-width: 100%;
    }
    
    .hero-badge img {
        width: 16px !important;
    }
}


/* (Old amulet section removed - replaced by .debt-billboard-section in main panel styles) */

/* Footer Refinement */
footer {
    background: var(--bg-deep);
    padding: 80px 1.5rem 40px;
    border-top: 1px solid var(--border-light);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 320px;
}

.footer-section h5 {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--flag-blue-primary);
    color: var(--american-white);
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(10, 30, 64, 0.2);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-size: 0.85rem;
}

.back-to-top {
    position: absolute;
    top: -30px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: var(--flag-blue-primary);
    color: var(--american-white);
    border-radius: 50%;
    border: 2px solid var(--american-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(10, 30, 64, 0.2);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--btn-primary-hover);
    border-color: var(--american-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(10, 30, 64, 0.3);
}

/* Page Hero (About, GPU Compute, Managed Mining) - Same as index, shorter height */
.hero.hero-page {
    min-height: clamp(380px, 50vh, 480px);
    padding: clamp(100px, 12vw, 140px) 1.5rem clamp(60px, 8vw, 90px);
}

.hero-badge-inline {
    margin-bottom: 1.5rem;
}

.about-stats-standalone {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

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

/* GPU Compute page - consistent flag blue styling */
.page-gpu-compute .value-icon {
    color: var(--flag-blue-primary);
}

.page-gpu-compute .section-badge {
    background: var(--flag-blue-primary);
}

.content-section-hero-img {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.08);
}

.content-section-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-active {
    color: var(--flag-blue-primary) !important;
    font-weight: 600;
}

/* Page Specific: About Us */
.page-header {
    padding: 180px 1.5rem 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
}

/* About Section */
.about-section {
    position: relative;
    background: var(--bg-section);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-grid-mission {
    grid-template-columns: 1fr;
}

.about-grid-mission .about-stats-standalone {
    margin-top: 2rem;
}

.about-text h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--flag-blue-primary), var(--flag-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 2px 6px rgba(0, 40, 104, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 40, 104, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--flag-blue-primary);
    border: 1px solid rgba(0, 40, 104, 0.2);
}

.value-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.value-text p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 1.5rem;
}

.text-block {
    margin-bottom: 4rem;
}

.text-block h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.text-block p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.value-card h3 {
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* Icons SVG */
.icon-svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.icon-large {
    width: 32px;
    height: 32px;
}

/* Interactive Glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 40, 104, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
}

/* Staggered Animations */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }

.process-grid .process-card:nth-child(1) { transition-delay: 0.1s; }
.process-grid .process-card:nth-child(2) { transition-delay: 0.2s; }
.process-grid .process-card:nth-child(3) { transition-delay: 0.3s; }
.process-grid .process-card:nth-child(4) { transition-delay: 0.4s; }

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .logo-slogan {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-wrapper {
        gap: 0.5rem;
    }
    
    .logo-text-wrapper {
        gap: 0.1rem;
    }
    
    .nav-container {
        padding: 0.7rem 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-light);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links .nav-cta {
        margin-top: 1rem;
        text-align: center;
        border: none;
    }

    section {
        padding: 60px 1.25rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .section-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

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

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

    .result-card {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .result-card:nth-child(2n) {
        border-left: 1px solid var(--border-light);
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .process-grid::before {
        display: none;
    }

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

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }

    .crypto-logos-row img {
        width: 24px;
        height: 24px;
    }

    .crypto-logos-row-large img {
        width: 28px;
        height: 28px;
    }

    .feature-section-img,
    .benefit-section-img {
        max-height: 120px;
    }

    .about-hero-img {
        margin: 1.5rem 1rem 0;
    }

    .calculator {
        padding: 2rem;
    }

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

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .contact-form {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .logo-slogan {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo-wrapper {
        gap: 0.45rem;
    }

    .logo-text-wrapper {
        gap: 0.08rem;
    }

    .nav-container {
        padding: 0.6rem 0.875rem;
    }
    
    .nav-links {
        width: 260px;
        padding: 4.5rem 1.5rem 1.5rem;
    }

    /* General sections */
    section {
        padding: 50px 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
        margin-bottom: 1rem;
    }

    .section-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 0.875rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Process grid */
    .process-grid {
        gap: 1rem;
    }

    /* Benefits grid */
    .benefits-grid {
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benefit-icon {
        align-self: center;
    }

    /* Calculator */
    .calculator {
        padding: 1.5rem;
    }

    .slider-value {
        font-size: 2rem;
    }

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

    .result-card {
        padding: 1.25rem;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        border-left: none;
    }

    .result-card:last-child {
        border-bottom: none;
    }

    .result-card:nth-child(2n) {
        border-left: none;
    }

    .result-value {
        font-size: 1.25rem;
    }

    /* Contact form */
    .contact-form {
        padding: 1.75rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group-slider .slider-value {
        font-size: 2rem;
    }
    
    .calculator-cta {
        padding: 1.5rem;
    }
    
    .calculator-cta .cta-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    /* Contact form */
    .contact-form {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group-slider .slider-value {
        font-size: 2rem;
    }
    
    .form-group-slider .slider-wrapper {
        height: 50px;
    }
    
    .calculator-cta {
        padding: 1.25rem;
    }
    
    .calculator-cta .cta-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .calculator-cta-btn {
        min-width: 200px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-grid {
        gap: 2rem;
    }

    .footer-brand p {
        margin: 0 auto;
        max-width: 300px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.8rem;
    }

    /* Disclaimer */
    .disclaimer-section {
        padding: 2rem 1rem;
    }

    .disclaimer-text {
        font-size: 0.7rem;
        line-height: 1.6;
    }
}

/* Professional Disclaimer Section - Very Bottom, Subtle */
.disclaimer-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-light);
    padding: 2.5rem 1.5rem;
    position: relative;
}

.disclaimer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    color: var(--text-main);
    font-size: 0.75rem;
    line-height: 1.7;
    text-align: left;
    margin: 0;
    font-weight: 400;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 60px 1rem;
    }
    
    .disclaimer-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .disclaimer-block {
        padding: 1.5rem;
    }
    
    .disclaimer-block h4 {
        font-size: 1rem;
    }
    
    .disclaimer-block p {
        font-size: 0.9rem;
    }
}