@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo:wght@300;400;600&family=Jura:wght@400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    background-image: url('8fe73332ca64ee9fe904fbf029c3a377.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #FFFFFF;
    font-family: 'Jura', sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
    line-height: 1.4;
}

body.scrollable {
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    background-attachment: fixed;
}

/* Product Name Corner */
.product-name-corner {
    position: fixed;
    top: 2rem;
    left: 2rem;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffdd00;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(255, 221, 0, 0.6), 0 0 40px rgba(255, 221, 0, 0.3);
    text-transform: uppercase;
    z-index: 10;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-text .cta-button {
    margin-top: 2rem;
}

/* New Product Hero Image */
.product-hero-image {
    margin: 0;
    max-width: 500px;
    width: 80%;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 85%);
}

.product-hero-image img:hover {
    transform: scale(1.03);
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

/* Add subtle overlay for content readability over fixed background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* Main Title */
.main-title {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    line-height: 0.9;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
}

.main-title .title-prefix {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 0.4em;
    letter-spacing: 0.05em;
    margin-right: 1.5rem;
    opacity: 0.8;
}

/* Tagline */
.tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 600px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 0 20px rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    background: none;
    padding: 0;
    text-align: center;
    width: 100%;
    text-transform: lowercase;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Unique Claim Badge */
.unique-claim {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.claim-badge {
    background: linear-gradient(135deg, #ffdd00 0%, #ff8800 100%);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 221, 0, 0.3);
    border: 2px solid rgba(255, 221, 0, 0.5);
    animation: subtle-glow 3s ease-in-out infinite alternate;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

@keyframes subtle-glow {
    0% {
        box-shadow: 0 4px 15px rgba(255, 221, 0, 0.3);
        transform: translateY(0);
    }
    100% {
        box-shadow: 0 6px 25px rgba(255, 221, 0, 0.5);
        transform: translateY(-2px);
    }
}

/* Mobile responsive for claim badge and privacy section */
@media (max-width: 768px) {
    .claim-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        letter-spacing: 0.3px;
    }
    
    .privacy-statement-section {
        padding: 3rem 1.5rem;
    }
    
    .privacy-statement {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .privacy-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
}

/* Privacy Statement Section */
.privacy-statement-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-statement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 221, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.privacy-statement {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.privacy-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #b3b3b3;
    margin: 0;
    font-weight: 300;
    line-height: 1.4;
    opacity: 0.9;
}

/* Application Section */
.application-section {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(25, 25, 25, 0.9));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Vault Demo Section */
.vault-demo {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
    padding: 3rem 0;
    position: relative;
}

.vault-demo::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 221, 0, 0.6), transparent);
}

.demo-video {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.85);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-video.scrolled {
    transform: scale(1);
}

.demo-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 0 20px rgba(255, 221, 0, 0.1));
    transition: filter 0.3s ease;
}

.demo-video:hover video {
    filter: drop-shadow(0 0 30px rgba(255, 221, 0, 0.2));
}

.demo-description {
    padding: 1rem 0;
}

.demo-description h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffdd00;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
}

.demo-description p {
    font-family: 'Jura', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

/* Responsive design for vault demo */
@media (max-width: 768px) {
    .vault-demo {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 2rem 0;
    }
    
    .demo-description {
        text-align: center;
        padding: 1rem 0;
    }
    
    .demo-description h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .demo-description p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .demo-video {
        transform: scale(0.9);
    }
    
    .demo-video.scrolled {
        transform: scale(1);
    }
    
    .vault-demo::after {
        bottom: -2rem;
        width: 90%;
    }
}

.vault-mapping {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 2.5rem;
    align-items: center;
    padding: 4rem 0;
    margin-bottom: 8rem;
    position: relative;
}

.vault-mapping::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 221, 0, 0.6), transparent);
}

.mapping-description {
    padding: 1rem 0;
    max-width: 450px;
}

.mapping-description h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #ffdd00;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
}

.mapping-description p {
    font-family: 'Jura', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.mapping-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Jura', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.mapping-video {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 221, 0, 0.3);
    transform: scale(0.9) translateX(-30px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mapping-video.scrolled {
    transform: scale(1.08) translateX(0);
}

.mapping-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 0 20px rgba(255, 221, 0, 0.1));
    transition: filter 0.3s ease;
}

.mapping-video:hover video {
    filter: drop-shadow(0 0 30px rgba(255, 221, 0, 0.2));
}

/* Responsive design for mapping section */
@media (max-width: 768px) {
    .vault-mapping {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 6rem;
        padding: 3rem 0;
    }
    
    .mapping-description {
        text-align: center;
        padding: 1rem 0;
        max-width: none;
        margin: 0 auto;
    }
    
    .mapping-description h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .mapping-description p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
        text-align: left;
    }
    
    .mapping-video {
        transform: scale(0.95);
        order: -1;
    }
    
    .mapping-video.scrolled {
        transform: scale(1.05);
    }
    
    .vault-mapping::after {
        bottom: -3rem;
        width: 90%;
    }
}

/* Vault Customization Section */
.vault-customization {
    padding: 3rem 0;
    margin-bottom: 6rem;
    position: relative;
}

.vault-customization::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 221, 0, 0.6), transparent);
}

.customization-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.customization-video {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.75);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 80%;
    margin: 0 auto;
}

.customization-video.scrolled {
    transform: scale(0.9);
}

.customization-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 0 20px rgba(255, 221, 0, 0.1));
    transition: filter 0.3s ease;
}

.customization-video:hover video {
    filter: drop-shadow(0 0 30px rgba(255, 221, 0, 0.2));
}

.customization-description {
    padding: 1rem 0;
}

.customization-description h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffdd00;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
}

.customization-description p {
    font-family: 'Jura', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.customization-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.customization-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Jura', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

/* Responsive design for customization section */
@media (max-width: 768px) {
    .vault-customization {
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .customization-content {
        gap: 1.5rem;
    }
    
    .customization-description h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .customization-description p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .customization-video {
        transform: scale(0.8);
        width: 90%;
    }
    
    .customization-video.scrolled {
        transform: scale(0.95);
    }
    
    .vault-customization::after {
        bottom: -2rem;
        width: 90%;
    }
}

/* Updates Section */
.updates-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
    margin-top: 0;
}

.updates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.updates-visual {
    position: relative;
}

.download-simulation {
    background: rgba(5, 5, 5, 0.9);
    border: 1px solid rgba(255, 221, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
}

.download-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffdd00;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
}

.download-header p {
    font-family: 'Jura', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.download-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.download-item {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.download-item:hover {
    border-color: rgba(255, 221, 0, 0.3);
}

.download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.download-name {
    font-family: 'Jura', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.download-size {
    font-family: 'Jura', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffdd00, #ffaa00);
    border-radius: 4px;
    transition: width 2s ease-in-out;
    animation: progressPulse 2s infinite;
}

.progress-fill[data-progress="85"] { width: 85%; }
.progress-fill[data-progress="100"] { width: 100%; background: #00ff88; }
.progress-fill[data-progress="45"] { width: 45%; }

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.download-status {
    font-family: 'Jura', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.updates-description h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffdd00;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
}

.updates-description p {
    font-family: 'Jura', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.subscription-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Jura', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.benefit-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 221, 0, 0.3));
}

.subscription-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffdd00;
    text-shadow: 0 0 20px rgba(255, 221, 0, 0.3);
}

.period {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.price-description {
    font-family: 'Jura', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .updates-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subscription-benefits {
        grid-template-columns: 1fr;
    }
    
    .download-simulation {
        padding: 1.5rem;
    }
}

/* Preparedness Section */
.preparedness-section {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 221, 0, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(15px);
}

.bunker-context h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffdd00;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
    text-align: center;
}

.tech-leaders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.leader-item {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-family: 'Jura', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.leader-item:hover {
    border-color: rgba(255, 221, 0, 0.3);
    background: rgba(15, 15, 15, 0.8);
}

.vault-alternative {
    text-align: center;
    border-top: 1px solid rgba(255, 221, 0, 0.2);
    padding-top: 2rem;
}

.vault-alternative h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.vault-alternative p {
    font-family: 'Jura', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .preparedness-section {
        padding: 2rem;
    }
    
    .tech-leaders {
        grid-template-columns: 1fr;
    }
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.app-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 221, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.app-card p {
    font-family: 'Jura', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Container */
.cta-container {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

/* CTA Button Base */
.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Jura', sans-serif;
    font-size: 0.75rem;
    border: 1px solid;
    backdrop-filter: blur(10px);
}

/* Primary Button (Pre-Order) */
.cta-button.primary {
    background: rgba(255, 255, 255, 0.9);
    border-color: #FFFFFF;
    color: #000000;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button.primary:hover {
    color: #FFFFFF;
}

.cta-button.primary:hover::before {
    left: 0;
}

/* Secondary Button (Learn More) */
.cta-button.secondary {
    background: rgba(10, 10, 10, 0.8);
    border-color: #333333;
    color: #CCCCCC;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button.secondary:hover {
    color: #FFFFFF;
    border-color: #666666;
}

.cta-button.secondary:hover::before {
    left: 0;
}

/* Minimal Navigation */
.minimal-nav {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    z-index: 3;
}

.minimal-nav a {
    color: #666666;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    background: rgba(10, 10, 10, 0.8);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-family: 'Jura', sans-serif;
}

.minimal-nav a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

.minimal-nav a:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.minimal-nav a:hover::after {
    width: 100%;
}

/* Subtle Background Grid - Only visible where image doesn't cover */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 280px;
    }
    
    .minimal-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.7rem;
        width: 100%;
    }
    
    .hero-image img {
        filter: blur(3px) brightness(0.3) saturate(1.2);
    }
    
    .tagline {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .payment-box {
        width: 100%;
        padding: 1.5rem;
    }
}

/* Payment Page Styles */
body.payment-page {
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    background: #0a0a0a !important;
    background-image: none !important;
}

.payment-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 2rem;
    background-color: #0a0a0a;
}

.payment-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 700px;
    backdrop-filter: blur(10px);
}

.payment-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.product-info {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-details {
    flex-grow: 1;
}

.product-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.product-desc {
    font-family: 'Exo', sans-serif;
    font-size: 0.9rem;
    color: #999;
    margin: 0.25rem 0 0;
}

.product-price {
    font-family: 'Jura', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-tagline {
    font-family: 'Exo', sans-serif;
    color: #ccc;
    text-align: center;
    margin: -1rem 0 2rem;
    line-height: 1.5;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

#payment-form {
    width: 100%;
}

.form-row {
    margin-bottom: 1.5rem;
}

#payment-form label {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 0.75rem;
}

#card-element {
    background-color: rgba(0,0,0,0.3);
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

#card-element.StripeElement--focus {
    background-color: rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.payment-button {
    width: 100%;
    margin-top: 1rem;
}

.payment-button.success {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #ffffff;
    cursor: default;
}

#card-errors {
    color: #fa755a;
    font-family: 'Exo', sans-serif;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    text-align: center;
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.success-message {
    color: #4CAF50;
    font-family: 'Exo', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

#payment-message {
    color: #fa755a;
    font-family: 'Exo', sans-serif;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    text-align: center;
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

#payment-message.hidden {
    display: none;
}

.stripe-info {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #666;
    font-family: 'Exo', sans-serif;
}

.stripe-info strong {
    color: #888;
    font-weight: 600;
}

.back-link {
    margin-top: 2rem;
    color: #666;
    font-family: 'Exo', sans-serif;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #fff;
}

/* New Content Pages (Features, How-it-works) */
.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 2rem 10rem;
    background-color: #0a0a0a;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

/* Features Page */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.feature-card {
    background: rgba(15, 15, 15, 0.7);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-title {
    font-family: 'Jura', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 0.03em;
}

.feature-description {
    font-family: 'Exo', sans-serif;
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* How It Works Page */
.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.step-card {
    background: rgba(15, 15, 15, 0.5);
    padding: 2rem;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.step-title {
    font-family: 'Jura', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.step-description {
    font-family: 'Exo', sans-serif;
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Consistent Navigation Bar */
.full-nav {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(10, 10, 10, 0.8);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.full-nav a {
    color: #888;
    text-decoration: none;
    font-family: 'Jura', sans-serif;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.full-nav a:hover {
    color: #fff;
}

.full-nav a.active {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.full-nav a.cta-nav {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.full-nav a.cta-nav:hover {
    background-color: #ccc;
    border-color: #ccc;
    color: #000;
} 

/* Shipping Page Styles */
.shipping-container {
    background: rgba(15, 15, 15, 0.7);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    margin: 0 auto;
}

.product-summary {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.product-summary .product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-summary .product-details {
    flex-grow: 1;
}

.product-summary .product-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.product-summary .product-desc {
    font-family: 'Exo', sans-serif;
    font-size: 0.9rem;
    color: #999;
    margin: 0.25rem 0 0;
}

.product-summary .product-price {
    font-family: 'Jura', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.shipping-form {
    width: 100%;
}

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

.form-section h3 {
    font-family: 'Jura', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group label {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background-color: rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder {
    color: #666;
}

/* Address Autocomplete Styles */
.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.address-suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: #fff;
    font-family: 'Jura', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.address-suggestion:hover,
.address-suggestion.selected {
    background-color: rgba(255, 221, 0, 0.1);
    color: #ffdd00;
}

.address-suggestion:last-child {
    border-bottom: none;
}

.address-loading {
    padding: 1rem;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Referral Code Styles */
.referral-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Exo', sans-serif;
    display: none;
}

.referral-message.success {
    background-color: rgba(0, 217, 36, 0.1);
    border: 1px solid rgba(0, 217, 36, 0.3);
    color: #00d924;
    display: block;
}

.referral-message.error {
    background-color: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    display: block;
}

.discount-summary {
    background-color: rgba(255, 221, 0, 0.1);
    border: 1px solid rgba(255, 221, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
}

.discount-summary.active {
    display: block;
}

.discount-summary h4 {
    color: #ffdd00;
    margin: 0 0 0.5rem 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
}

.price-breakdown {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.price-breakdown .original-price {
    text-decoration: line-through;
    color: #999;
}

.price-breakdown .discount-amount {
    color: #00d924;
    font-weight: 600;
}

.price-breakdown .final-price {
    color: #ffdd00;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Progress Hero Section */
.progress-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.progress-hero-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.success-header {
    margin-bottom: 4rem;
}

.success-checkmark {
    font-size: 3.5rem;
    color: #00d924;
    margin-bottom: 1.5rem;
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.success-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.success-subtitle {
    font-size: 1rem;
    color: #b3b3b3;
    margin: 0;
    font-weight: 300;
    line-height: 1.5;
}

.order-number-hero {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 1.2rem 2rem;
    margin: 2.5rem auto;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.order-label {
    color: #999999;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    margin-right: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.order-id-display {
    color: #ffffff;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.progress-diagram-hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 4rem;
    gap: 0;
    flex-wrap: nowrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Order Tracking Styles */
.tracking-container {
    margin-bottom: 2rem;
}

.progress-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 1rem;
}

.progress-diagram-hero .progress-step {
    flex: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-diagram-hero .step-circle {
    width: 64px;
    height: 64px;
}

.progress-step.completed .step-circle {
    background: #00d924;
    border-color: #00d924;
    color: white;
    box-shadow: 0 0 0 3px rgba(0, 217, 36, 0.2);
}

.progress-step.active .step-circle {
    background: #ffdd00;
    border-color: #ffdd00;
    color: #000;
    box-shadow: 0 0 0 3px rgba(255, 221, 0, 0.2);
}

.progress-step .step-circle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #666666;
}

.step-icon {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.progress-diagram-hero .step-icon {
    font-size: 1.5rem;
}

.step-label h4 {
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
}

.progress-diagram-hero .step-label h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.step-label p {
    color: #999999;
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.3;
    font-weight: 300;
}

.progress-diagram-hero .step-label p {
    font-size: 0.8rem;
}

.progress-step.completed .step-label h4 {
    color: #00d924;
}

.progress-step.active .step-label h4 {
    color: #ffdd00;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    margin: 0 -1rem;
    border-radius: 1px;
    margin-top: -32px;
    z-index: 1;
}

.progress-diagram-hero .progress-line {
    height: 2px;
    margin-top: -34px;
}

.progress-line.active {
    background: linear-gradient(
        90deg,
        #00d924 0%,
        #00d924 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

.progress-line:last-of-type {
    background: rgba(255, 255, 255, 0.2);
}

.order-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-details h4 {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-bottom: 1.2rem !important;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #b3b3b3;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.detail-row span:last-child {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.next-steps {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.next-steps h4 {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-bottom: 1.2rem !important;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step-item {
    display: flex;
    align-items: center;
    color: #b3b3b3;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    font-weight: 300;
}

.step-number {
    width: 24px;
    height: 24px;
    background: #ffdd00;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .progress-hero {
        min-height: 100vh;
        padding: 1rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .success-checkmark {
        font-size: 3rem;
    }
    
    .order-number-hero {
        padding: 1rem 1.5rem;
        margin: 2rem auto;
    }
    
    .order-label {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .order-id-display {
        font-size: 1.2rem;
    }
    
    .progress-diagram,
    .progress-diagram-hero {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }
    
    .progress-step,
    .progress-diagram-hero .progress-step {
        min-width: 100%;
    }
    
    .step-circle,
    .progress-diagram-hero .step-circle {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
        border-width: 2px;
    }
    
    .step-icon,
    .progress-diagram-hero .step-icon {
        font-size: 2rem;
    }
    
    .step-label h4,
    .progress-diagram-hero .step-label h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-label p,
    .progress-diagram-hero .step-label p {
        font-size: 0.9rem;
    }
    
    .progress-line,
    .progress-diagram-hero .progress-line {
        width: 4px;
        height: 50px;
        margin: 0;
        margin-top: 0;
        background: rgba(255, 255, 255, 0.1);
        min-width: auto;
    }
    
    .progress-line.active {
        background: linear-gradient(
            180deg,
            #00d924 0%,
            #ffdd00 50%,
            rgba(255, 255, 255, 0.1) 100%
        );
    }
    
    .order-details,
    .next-steps {
        padding: 1.5rem;
    }
}

/* Success Page Button Overrides */
.payment-page .cta-button {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.payment-page .cta-button.primary {
    background: #ffdd00;
    color: #000;
}

.payment-page .cta-button.primary:hover {
    background: #ffcc00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 221, 0, 0.3);
}

.payment-page .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-page .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.payment-page .cta-button.primary::before,
.payment-page .cta-button.secondary::before {
    display: none;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(0,0,0,0.3);
}

.shipping-option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.shipping-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    margin: 0;
    font-family: 'Exo', sans-serif;
}

.option-name {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.option-desc {
    color: #999;
    font-size: 0.9rem;
    margin-left: auto;
    margin-right: 1rem;
}

.option-price {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-actions .cta-button {
    flex: 1;
    max-width: 200px;
}

/* Responsive Design for Shipping Page */
@media (max-width: 768px) {
    .shipping-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-actions .cta-button {
        max-width: none;
    }
    
    .shipping-option label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .option-desc {
        margin: 0;
    }
} 

.shipping-summary {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.shipping-summary h4 {
    font-family: 'Jura', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shipping-summary #shipping-details {
    font-family: 'Exo', sans-serif;
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.back-button {
    margin-bottom: 1rem;
    width: 100%;
}

/* Consultant page styles */
.consultant-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: 100vh;
}

.consultant-hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.consultant-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.consultant-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.prop-icon {
    font-size: 2rem;
    min-width: 60px;
}

.prop-text h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.prop-text p {
    color: #b8b8b8;
    line-height: 1.5;
    margin: 0;
}

.roi-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.consultant-demo {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.demo-screen {
    padding: 2rem;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.demo-title {
    color: #00ff88;
    font-weight: 600;
}

.demo-status {
    color: #ffaa00;
    font-size: 0.9rem;
}

.demo-query {
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.query-text {
    color: #00ff88;
    font-style: italic;
}

.demo-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #00ff88;
}

.result-item h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.result-item p {
    color: #b8b8b8;
    margin: 0;
    font-size: 0.9rem;
}

.consultant-problems {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.consultant-problems h2 {
    text-align: center;
    color: #ff4444;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
}

.problem-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.scenario {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.scenario h3 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.scenario p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.scenario-cost {
    color: #ff4444;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 68, 68, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

.consultant-solution {
    padding: 4rem 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-benefits {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #00ff88;
}

.benefit h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #b8b8b8;
    line-height: 1.5;
    margin: 0;
}

.knowledge-matrix {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.matrix-title {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.knowledge-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.knowledge-area {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.consultant-roi {
    padding: 4rem 0;
    background: rgba(0, 255, 136, 0.05);
}

.roi-calculator {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    margin-bottom: 3rem;
}

.roi-inputs {
    margin-bottom: 2rem;
}

.roi-input label {
    color: #00ff88;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.roi-input select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    font-size: 1.1rem;
}

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

.roi-metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff88;
    font-family: 'Orbitron', monospace;
}

.metric-label {
    color: #b8b8b8;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

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

.additional-benefit {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    color: #b8b8b8;
    line-height: 1.5;
}

.consultant-testimonials {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #00ff88;
}

.quote {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.consultant-pricing {
    padding: 4rem 0;
}

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

.pricing-tier {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-5px);
}

.pricing-tier.featured {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-name {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tier-price {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.tier-billing {
    color: #888;
    margin-bottom: 2rem;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    color: #b8b8b8;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-cta {
    display: inline-block;
    background: #00ff88;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.guarantee {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.consultant-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
}

.cta-button.huge {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.detail {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive adjustments for consultant page */
@media (max-width: 768px) {
    .consultant-title {
        font-size: 2.5rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .knowledge-areas {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roi-results {
        grid-template-columns: 1fr;
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .additional-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Consultant Premium page styles */
.consultant-premium-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: 100vh;
}

.brand-elite {
    color: #ffaa00;
    font-weight: 700;
    margin-left: 0.5rem;
}

.urgency-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(255, 170, 0, 0.2) 0%, rgba(255, 68, 68, 0.2) 100%);
    border: 1px solid rgba(255, 170, 0, 0.5);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    animation: urgency-pulse 3s infinite;
}

@keyframes urgency-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 170, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 170, 0, 0.5); }
}

.urgency-icon {
    font-size: 1.5rem;
    color: #ffaa00;
}

.urgency-text {
    color: #fff;
    font-size: 1.1rem;
}

.premium-hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(255, 170, 0, 0.1) 0%, transparent 70%);
}

.premium-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.8rem;
    font-weight: 900;
    color: #ffaa00;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 170, 0, 0.4);
}

.premium-subtitle {
    font-size: 1.4rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 650px;
}

.sovereignty-statement {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.sovereignty-icon {
    font-size: 3rem;
    min-width: 80px;
}

.sovereignty-text h3 {
    color: #ffaa00;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.sovereignty-text p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.exclusivity-note {
    color: #ffaa00;
    font-style: italic;
    margin-top: 1rem;
    font-weight: 600;
}

.elite-dashboard {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    border: 2px solid rgba(255, 170, 0, 0.4);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(255, 170, 0, 0.2);
}

.dashboard-header {
    background: linear-gradient(90deg, rgba(255, 170, 0, 0.2) 0%, rgba(255, 170, 0, 0.1) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 170, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-name {
    color: #ffaa00;
    font-weight: 700;
    font-size: 1.1rem;
}

.sovereignty-badge {
    color: #00ff88;
    font-size: 0.9rem;
    background: rgba(0, 255, 136, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.dashboard-content {
    padding: 2rem;
}

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

.analysis-section h4 {
    color: #ffaa00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.data-points {
    display: grid;
    gap: 0.5rem;
}

.data-point {
    background: rgba(255, 170, 0, 0.1);
    color: #fff;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #ffaa00;
    font-size: 0.9rem;
}

.competitive-intel h4 {
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.competitive-intel p {
    color: #b8b8b8;
    font-style: italic;
}

.market-disruption {
    padding: 4rem 0;
    background: rgba(255, 68, 68, 0.05);
}

.market-disruption h2 {
    text-align: center;
    color: #ff4444;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
}

.disruption-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    position: relative;
}

.timeline-item.current {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
}

.timeline-item.future {
    background: rgba(255, 170, 0, 0.1);
    border-color: rgba(255, 170, 0, 0.4);
}

.timeline-item.danger {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.4);
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffaa00;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-item.current h3 { color: #00ff88; }
.timeline-item.future h3 { color: #ffaa00; }
.timeline-item.danger h3 { color: #ff4444; }

.timeline-content p {
    color: #b8b8b8;
    line-height: 1.5;
}

.corporate-risks h3 {
    text-align: center;
    color: #ff4444;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.risk-item {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.risk-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.risk-item h4 {
    color: #ff4444;
    margin-bottom: 1rem;
}

.risk-item p {
    color: #b8b8b8;
    line-height: 1.5;
}

.custom-knowledge {
    padding: 4rem 0;
}

.knowledge-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.custom-offerings {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.offering {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 170, 0, 0.05);
    border: 1px solid rgba(255, 170, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.offering:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 170, 0, 0.1);
}

.offering-icon {
    font-size: 2.5rem;
    min-width: 80px;
}

.offering-content h4 {
    color: #ffaa00;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.offering-content p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.offering-price {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(0, 255, 136, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.custom-specs {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(255, 170, 0, 0.3);
    position: sticky;
    top: 2rem;
}

.custom-specs h3 {
    color: #ffaa00;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.spec-list {
    display: grid;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 170, 0, 0.2);
}

.spec-label {
    color: #b8b8b8;
    font-weight: 500;
}

.spec-value {
    color: #ffaa00;
    font-weight: 700;
}

.roi-elite {
    padding: 4rem 0;
    background: rgba(255, 170, 0, 0.05);
}

.elite-calculator {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 170, 0, 0.3);
    margin-bottom: 3rem;
}

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

.input-group label {
    color: #ffaa00;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.input-group select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    border: 2px solid rgba(255, 170, 0, 0.4);
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
}

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

.result-metric {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.2) 0%, rgba(255, 170, 0, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 170, 0, 0.4);
}

.result-metric .metric-value {
    font-size: 3rem;
    font-weight: 900;
    color: #ffaa00;
    font-family: 'Orbitron', monospace;
}

.result-metric .metric-label {
    color: #fff;
    margin-top: 0.5rem;
    font-weight: 600;
}

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

.advantage {
    background: rgba(255, 170, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffaa00;
    color: #fff;
    line-height: 1.6;
}

.elite-pricing {
    padding: 4rem 0;
}

.pricing-subtitle {
    text-align: center;
    color: #ffaa00;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.elite-tier {
    background: rgba(255, 170, 0, 0.05);
    border: 2px solid rgba(255, 170, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.elite-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 170, 0, 0.2);
}

.elite-tier.featured {
    border-color: #ffaa00;
    background: rgba(255, 170, 0, 0.15);
    transform: scale(1.05);
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.elite-tier .tier-name {
    color: #ffaa00;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.elite-tier .tier-price {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.elite-tier .tier-billing {
    color: #b8b8b8;
    font-size: 1rem;
}

.elite-tier .tier-features {
    margin-bottom: 2rem;
}

.elite-tier .feature {
    color: #fff;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 170, 0, 0.2);
    font-weight: 500;
}

.elite-tier .tier-cta {
    display: block;
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    color: #000;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.elite-tier .tier-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.4);
}

.exclusivity-guarantee {
    text-align: center;
    background: rgba(255, 170, 0, 0.1);
    border: 2px solid rgba(255, 170, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.exclusivity-guarantee h3 {
    color: #ffaa00;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    font-weight: 600;
    font-size: 0.9rem;
}

.urgency-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.3) 0%, rgba(255, 68, 68, 0.2) 100%);
    text-align: center;
}

.urgency-content h2 {
    font-size: 3rem;
    color: #ffaa00;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.urgency-content p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffaa00;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b8b8b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button.massive {
    font-size: 1.5rem;
    padding: 2rem 4rem;
    border-radius: 16px;
}

.cta-button.premium {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    color: #000;
    font-weight: 900;
    text-shadow: none;
    box-shadow: 0 20px 40px rgba(255, 170, 0, 0.3);
}

.cta-button.premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 170, 0, 0.5);
}

/* Responsive adjustments for premium page */
@media (max-width: 768px) {
    .premium-title {
        font-size: 2.8rem;
    }
    
    .disruption-timeline {
        grid-template-columns: 1fr;
    }
    
    .knowledge-content {
        grid-template-columns: 1fr;
    }
    
    .risk-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .elite-results {
        grid-template-columns: 1fr;
    }
    
    .elite-tiers {
        grid-template-columns: 1fr;
    }
    
    .urgency-stats {
        grid-template-columns: 1fr;
    }
    
    .strategic-advantages {
        grid-template-columns: 1fr;
    }
    
    .guarantee-badges {
        flex-direction: column;
        align-items: center;
    }
} 