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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    transition: opacity 0.3s ease;
}

/* Smooth Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Keyboard Navigation Support */
*:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ffd700;
    color: #0a0a0a;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1002;
    font-weight: 600;
    transition: top 0.3s ease;
}

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

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

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(26, 26, 26, 0.8);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-progress.visible {
    opacity: 1;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #d4af37);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    z-index: 1000;
}

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

.nav-menu {
    display: flex;
    gap: 3rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link.active {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-login-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    border-radius: 0;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-login-btn:hover {
    color: #ffd700;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: scale(1.05);
}

.mobile-menu-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Hamburger Animation */
.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1500;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 1.5rem;
    padding: 2rem;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: rotate(90deg);
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 320px;
    border: 1px solid transparent;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    left: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.mobile-login-btn {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #0a0a0a;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    margin-top: 1rem;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.mobile-login-btn:hover,
.mobile-login-btn:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

/* Performance optimizations */
.hero-bg-orb,
.method-bg-orb,
.cta-bg-orb {
    will-change: transform;
}

img {
    max-width: 100%;
    height: auto;
}

.nav-logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-bg-orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.hero-bg-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-badge i {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-gradient {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.btn:focus {
    outline: 3px solid rgba(255, 215, 0, 0.6);
    outline-offset: 2px;
}

.nav-link:focus,
.mobile-nav-link:focus {
    outline: none;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn.loading {
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn.primary.loading::after {
    border: 2px solid rgba(10, 10, 10, 0.3);
    border-top: 2px solid #0a0a0a;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #0a0a0a;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #d4af37, #ffd700);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0.8;
}

.social-proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-text {
    font-size: 0.875rem;
    color: #a1a1aa;
    font-weight: 500;
}

.hero-urgency {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* How It Works Section */
.how-it-works-section {
    padding: 120px 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    position: relative;
    z-index: 1;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 2rem;
}

.how-it-works-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.how-it-works-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.how-it-works-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    position: absolute;
    top: 0;
    right: 1rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.4);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    width: 40px;
    height: 40px;
    color: #ffd700;
}

.how-it-works-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.how-it-works-step p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-requirements,
.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-requirements span {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.step-features span {
    color: #a1a1aa;
    font-size: 0.875rem;
}

.compatibility-info {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.compatibility-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.compatibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #a1a1aa;
}

.compatibility-item i {
    width: 32px;
    height: 32px;
    color: #ffd700;
}





/* Method Section */
.method-section {
    padding: 120px 0;
    position: relative;
    background: #0a0a0a;
}

.method-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.method-bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.method-bg-orb-1 {
    width: 800px;
    height: 800px;
    top: -200px;
    left: -300px;
}

.method-bg-orb-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -200px;
}

.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 2rem;
}

.method-badge i {
    width: 20px;
    height: 20px;
}

.method-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.method-tagline {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.method-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar-card-horizontal {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pillar-card-horizontal:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(26, 26, 26, 1);
    transform: translateY(-2px);
}

.pillar-icon-container {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pillar-icon-container i {
    width: 24px;
    height: 24px;
    color: #ffd700;
}

.pillar-card-horizontal .pillar-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.2);
    line-height: 1;
}

.pillar-card-horizontal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.pillar-card-horizontal p {
    color: #a1a1aa;
    line-height: 1.7;
    font-size: 1rem;
}

.method-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.method-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.2);
}

.method-image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overlay-content i {
    width: 32px;
    height: 32px;
    color: #ffd700;
}

.overlay-header {
    font-size: 0.875rem;
    color: #a1a1aa;
    font-weight: 500;
}

.overlay-main {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 700;
}

.method-pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.pillar-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.pillar-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.1);
    line-height: 1;
}

.pillar-card i {
    width: 48px;
    height: 48px;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.pillar-card p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pillar-hover {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: #0a0a0a;
}

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

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.feature-card i {
    width: 64px;
    height: 64px;
    color: #ffd700;
    margin-bottom: 1.5rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 2rem;
}

.testimonial-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.testimonial-description {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.testimonial-image {
    border-radius: 24px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.2);
}

.testimonial-quote-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-quote-box {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 4px solid #ffd700;
    border-radius: 16px;
    padding: 2rem;
}

.testimonial-quote-box blockquote {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #ffd700;
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

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

.author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #a1a1aa;
    font-size: 0.875rem;
}

.testimonial-features {
    list-style: none;
}

.testimonial-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #a1a1aa;
    line-height: 1.6;
}

.testimonial-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd700;
}

/* Live AI Training Features Section */
.ai-features-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.ai-features-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ai-features-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ai-features-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.ai-feature-card-horizontal {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ai-feature-card-horizontal:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-4px);
}

.ai-feature-card-horizontal .ai-feature-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ai-feature-card-horizontal .ai-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ai-feature-icon-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon-overlay i {
    width: 20px;
    height: 20px;
    color: #0a0a0a;
}

.ai-feature-card-horizontal .ai-feature-content {
    padding: 1.5rem;
}

.ai-feature-card-horizontal h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.ai-feature-card-horizontal p {
    font-size: 0.9rem;
    color: #a1a1aa;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ai-feature-bullets {
    list-style: none;
    margin-bottom: 2rem;
}

.ai-feature-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #a1a1aa;
    line-height: 1.5;
}

.ai-feature-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffd700;
}

.ai-feature-cta {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.ai-feature-cta:hover {
    color: #ffed4e;
}

/* Exercise Pages */
.exercise-section {
    padding: 120px 0 60px 0;
    background: #0a0a0a;
    min-height: 100vh;
}

.exercise-breadcrumb {
    margin-bottom: 2rem;
    color: #a1a1aa;
    font-size: 0.875rem;
}

.exercise-breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.exercise-breadcrumb a:hover {
    color: #ffed4e;
}

.exercise-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exercise-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.exercise-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exercise-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.exercise-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.exercise-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    font-size: 0.875rem;
}

.exercise-meta-item i {
    width: 16px;
    height: 16px;
    color: #ffd700;
}

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

.exercise-main {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
    height: fit-content;
}

.exercise-image {
    margin-bottom: 2rem;
    text-align: center;
}

.exercise-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exercise-content h2 {
    color: #ffd700;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.exercise-content h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.exercise-content p {
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.exercise-steps,
.exercise-mistakes,
.ai-benefits {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.exercise-steps li,
.exercise-mistakes li,
.ai-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #a1a1aa;
    line-height: 1.7;
}

.exercise-steps li::before,
.exercise-mistakes li::before,
.ai-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-weight: bold;
}

.exercise-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
}

.exercise-widget {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.exercise-widget:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.exercise-widget h4 {
    color: #ffd700;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.exercise-widget p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.related-exercises li {
    margin-bottom: 0.5rem;
}

.related-exercises a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-exercises a:hover {
    color: #ffd700;
}

/* Mobile responsiveness for exercise pages */
@media (max-width: 768px) {
    .exercise-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .exercise-main {
        padding: 2rem;
    }

    .exercise-meta {
        gap: 1rem;
    }

    .exercise-meta-item {
        font-size: 0.8rem;
    }

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

.exercise-steps li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffd700;
    color: #0a0a0a;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.exercise-steps {
    counter-reset: item;
}

.exercise-mistakes li::before,
.ai-benefits li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
    line-height: 1.7;
}

.exercise-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exercise-widget {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.exercise-widget h4 {
    color: #ffd700;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.exercise-widget p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.related-exercises,
.related-programs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-exercises li,
.related-programs li {
    margin-bottom: 0.75rem;
}

.related-exercises a,
.related-programs a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.related-exercises a:hover,
.related-programs a:hover {
    color: #ffd700;
}

/* Exercise Template Styles */
.exercise-video-placeholder {
    background: rgba(26, 26, 26, 0.8);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.exercise-video-placeholder:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(26, 26, 26, 0.9);
}

.benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #a1a1aa;
}

.benefit-list li span {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.benefit-list li strong {
    color: #ffffff;
}

.prerequisites-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.prerequisites-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #a1a1aa;
    line-height: 1.6;
}

.prerequisites-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

.exercise-step {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.exercise-step h3 {
    color: #ffd700;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.exercise-step h3 span {
    background: #ffd700;
    color: #0a0a0a;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 0.9rem;
}
.exercise-video-placeholder:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(26, 26, 26, 0.9);
}

.exercise-video-placeholder i {
    width: 48px;
    height: 48px;
    color: #ffd700;
    margin-bottom: 1rem;
}

.exercise-video-placeholder h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.exercise-video-placeholder p {
    color: #a1a1aa;
    margin: 0;
}

/* Exercise Library */
.exercise-categories {
    max-width: 1200px;
    margin: 0 auto;
}

.exercise-category {
    margin-bottom: 4rem;
}

.exercise-category h2 {
    color: #ffd700;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.exercise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.exercise-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.exercise-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(26, 26, 26, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.exercise-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.exercise-card p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsiveness for exercise pages */
@media (max-width: 768px) {
    .exercise-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .exercise-main {
        padding: 2rem;
    }

    .exercise-meta {
        gap: 1rem;
    }

    .exercise-meta-item {
        font-size: 0.8rem;
    }

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

/* HYROX Training Pages */
.hyrox-training-section {
    padding: 120px 0 80px 0;
    background: #0a0a0a;
    min-height: 100vh;
}

.hyrox-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.hyrox-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #0a0a0a;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hyrox-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hyrox-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.hyrox-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hyrox-index-section {
    padding: 120px 0 80px 0;
    background: #0a0a0a;
}

.hyrox-index-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.hyrox-index-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hyrox-index-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.hyrox-index-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.6;
}

/* Mobile responsiveness for HYROX pages */
@media (max-width: 768px) {
    .hyrox-training-section,
    .hyrox-index-section {
        padding: 100px 0 60px 0;
    }

    .countdown-section {
        padding: 1.5rem !important;
    }

    .countdown-section div {
        font-size: 1.5rem !important;
    }

    .cities-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .city-search input {
        width: 100% !important;
        max-width: none !important;
    }
}

/* Training Programs Section */
.programs-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.programs-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.programs-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #0a0a0a;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.programs-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.programs-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
}

.program-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

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

.program-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    max-width: 90%;
}

.program-card:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    max-width: 90%;
}

.program-card:nth-child(even) .program-image {
    order: 2;
}

.program-card:nth-child(even) .program-content {
    order: 1;
}

.program-card:nth-child(odd) .program-image {
    order: 1;
}

.program-card:nth-child(odd) .program-content {
    order: 2;
}

.program-content {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

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

.program-badge {
    display: inline-flex;
    background: rgba(255, 215, 0, 0.9);
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
    white-space: nowrap;
}

.program-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.program-content p {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.program-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.program-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: #a1a1aa;
    line-height: 1.7;
    font-size: 1.05rem;
}

.program-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
    line-height: 1.7;
}

.program-cta {
    background: transparent;
    color: #ffd700;
    border: none;
    padding: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    margin-left: 1.75rem;
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

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

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(26, 26, 26, 1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-item h4 {
    color: #ffd700;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #ffd700;
    color: #0a0a0a;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: #a1a1aa;
    line-height: 1.6;
    padding: 0 2rem 2rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .pricing-card-popular {
        transform: none;
    }

    .pricing-card:hover {
        transform: translateY(-4px);
    }

    .price-number {
        font-size: 3rem;
    }

    .pricing-faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .pricing-section {
        padding: 80px 0;
    }

    .pricing-header {
        margin-bottom: 60px;
    }
}


.program-cta:hover {
    color: #ffed4e;
    transform: translateX(4px);
}

.programs-final-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0a0a0a;
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
}

.programs-final-cta h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #0a0a0a;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.pricing-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.pricing-card-trial {
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-card-popular {
    border-color: #ffd700;
    background: rgba(26, 26, 26, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.pricing-card-pro {
    border-color: rgba(255, 215, 0, 0.4);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #0a0a0a;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.pricing-plan-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
}

.price-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
    margin: 0 0.25rem;
}

.pricing-description {
    color: #a1a1aa;
    line-height: 1.5;
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features h4 {
    color: #ffd700;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    color: #a1a1aa;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.pricing-cta-trial {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.pricing-cta-trial:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.pricing-cta-popular {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #0a0a0a;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.pricing-cta-popular:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.pricing-cta-pro {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.pricing-cta-pro:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.pricing-note {
    text-align: center;
    color: #a1a1aa;
    font-size: 0.75rem;
}

.pricing-faq {
    margin-bottom: 4rem;
    text-align: center;
}

.pricing-faq h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.pricing-faq-item {
    text-align: left;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(26, 26, 26, 0.8);
}

.pricing-faq-item h4 {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-faq-item p {
    color: #a1a1aa;
    line-height: 1.5;
    font-size: 0.9rem;
}

.pricing-guarantee {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon i {
    width: 32px;
    height: 32px;
    color: #ffd700;
}

.guarantee-text h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: #a1a1aa;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Privacy Policy Section */
.privacy-section {
    padding: 140px 0 80px;
    background: #0a0a0a;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.privacy-badge i {
    width: 18px;
    height: 18px;
}

.privacy-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-last-updated {
    font-size: 1rem;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.privacy-intro {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.privacy-intro-text {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
}

.privacy-intro-text p {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.privacy-section-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.privacy-section-block:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(26, 26, 26, 0.4);
}

.privacy-section-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.privacy-section-block h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-section-block h3:first-child {
    margin-top: 0;
}

.privacy-section-block h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.privacy-section-block p {
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section-block ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section-block li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #a1a1aa;
    line-height: 1.6;
}

.privacy-section-block li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
    line-height: 1.6;
}

.privacy-section-block strong {
    color: #ffffff;
    font-weight: 600;
}

.privacy-section-block a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section-block a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Mobile optimization for privacy page */
@media (max-width: 768px) {
    .privacy-section {
        padding: 120px 0 60px;
    }

    .privacy-header {
        margin-bottom: 60px;
        padding: 0 1rem;
    }

    .privacy-content {
        padding: 0 1rem;
    }

    .privacy-section-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section-block h2 {
        font-size: 1.5rem;
    }

    .privacy-section-block h3 {
        font-size: 1.25rem;
    }

    .privacy-section-block h4 {
        font-size: 1.125rem;
    }

    .privacy-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 140px 0 80px;
    background: #0a0a0a;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-badge i {
    width: 18px;
    height: 18px;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(26, 26, 26, 0.7);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    width: 24px;
    height: 24px;
    color: #ffd700;
}

.method-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.method-info p {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin: 0;
}

.faq-link {
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
}

.faq-link h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.faq-link p {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin: 0;
}

.faq-link a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-link a:hover {
    color: #ffed4e;
}

.contact-form-container {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0a0a0a;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 0.875rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 48px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(97, 176, 255, 0.2);
    transform: translateY(-1px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 1px #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

.character-count {
    text-align: right;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #a1a1aa;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffd700;
    border-color: #ffd700;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.75rem;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #0a0a0a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

.contact-submit-btn.loading span {
    opacity: 0.8;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-submit-btn i {
    width: 18px;
    height: 18px;
}

.contact-footer {
    margin-top: 3rem;
    text-align: center;
}

.contact-security {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50px;
}

.contact-security i {
    width: 16px;
    height: 16px;
    color: #ffd700;
}

/* Feedback message improvements */
.feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    display: none;
}

.feedback.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.feedback.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}


/* Mobile optimization for contact page */
@media (max-width: 768px) {
    .contact-section {
        padding: 120px 0 60px;
    }

    .contact-header {
        margin-bottom: 60px;
        padding: 0 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-group {
        gap: 0.375rem;
    }

    .contact-submit-btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }

    .contact-security {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        padding: 1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: #0a0a0a;
}

.cta-bg-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    letter-spacing: -0.05em;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: #ffd700;
    color: #0a0a0a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #a1a1aa;
    line-height: 1;
}

.footer-social {
    margin: 2rem 0 1rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    color: #a1a1aa;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transform: translateY(-2px);
}

.social-links a i {
    width: 18px;
    height: 18px;
}

.footer-copyright {
    color: #a1a1aa;
    font-size: 0.875rem;
}

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

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.025em;
}

.footer-column a {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffd700;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-overflow-scrolling: touch;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
}

.modal.show {
    opacity: 1;
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: sticky;
    top: 0;
    background: #1a1a1a;
    z-index: 10;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.modal-close:hover,
.modal-close:active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 1.5rem;
}

/* Enhanced touch interactions for buttons */
.auth-btn {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: #0a0a0a;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
}

.auth-btn:hover,
.auth-btn:active {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-1px);
}

.auth-btn:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.email-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: #0a0a0a;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    box-sizing: border-box;
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: #0a0a0a;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.auth-btn:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
}

.auth-icon {
    font-size: 1.25rem;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: #a1a1aa;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 215, 0, 0.1);
}

.auth-divider span {
    background: #1a1a1a;
    padding: 0 1rem;
}

.email-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: #0a0a0a;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.4);
}

.email-input::placeholder {
    color: #a1a1aa;
}

.feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.feedback.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.feedback.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Professional App Download Modal */
.app-download-modal {
    max-width: 480px;
    border: none;
    border-radius: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.app-download-modal .modal-header {
    padding: 1.5rem 1.5rem 0;
    border: none;
    background: transparent;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.app-download-modal .modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #a1a1aa;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-download-modal .modal-close:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: scale(1.1);
}

.app-download-modal .modal-close i {
    width: 18px;
    height: 18px;
}

.app-download-content {
    padding: 2rem 2rem 2.5rem;
    text-align: center;
}

.app-hero-section {
    margin-bottom: 2.5rem;
}

.app-logo {
    margin-bottom: 1.5rem;
}

.app-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    font-weight: 900;
    color: #0a0a0a;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.app-download-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.app-download-content p {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
}

.store-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.store-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 80px;
    width: 100%;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.store-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.store-badge:hover::before {
    left: 100%;
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.google-play-badge {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.app-store-badge {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.play-logo,
.apple-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-logo {
    color: #ffffff;
}

.apple-logo {
    color: #ffffff;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.badge-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    white-space: nowrap;
}

.google-play-badge .badge-subtitle {
    color: #ffffff;
}

.app-store-badge .badge-subtitle {
    color: #ffffff;
}

.badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.google-play-badge .badge-title {
    color: #ffffff;
}

.app-store-badge .badge-title {
    color: #ffffff;
}



/* Mobile optimizations */
@media (max-width: 768px) {
    .app-download-modal {
        max-width: none;
        margin: 0;
        border-radius: 24px 24px 0 0;
    }

    .app-download-content {
        padding: 1.75rem 1.5rem 2rem;
    }

    .app-icon {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
        border-radius: 20px;
    }

    .app-download-content h2 {
        font-size: 1.75rem;
    }

    .app-download-content p {
        font-size: 1rem;
    }

    .store-buttons-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .store-badge {
        padding: 1.25rem 1.5rem;
        min-height: 70px;
        max-width: none;
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .badge-content {
        gap: 1rem;
    }

    .play-logo,
    .apple-logo {
        width: 40px;
        height: 40px;
    }

    .badge-subtitle {
        font-size: 0.8rem;
    }

    .badge-title {
        font-size: 1.125rem;
    }
}

/* Portfolio Modal Styles */
.portfolio-message {
    text-align: center;
    padding: 2rem 0;
}

.portfolio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.portfolio-icon i {
    color: #ffd700;
    width: 32px;
    height: 32px;
}

.portfolio-message h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-message p {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.portfolio-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    font-size: 0.875rem;
}

.portfolio-feature i {
    color: #ffd700;
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .portfolio-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Enhanced Modal Styles */
.program-modal .modal-content {
    max-width: 600px;
}

.program-modal-content {
    margin-bottom: 2rem;
}

.program-overview {
    text-align: center;
    margin-bottom: 2rem;
}

.program-overview p {
    color: #a1a1aa;
    font-size: 1rem;
}

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

.program-option {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-option:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(26, 26, 26, 1);
    transform: translateY(-2px);
}

.program-option h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.program-option p {
    color: #a1a1aa;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.program-price {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.875rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.selected-program-info {
    text-align: center;
    margin-bottom: 2rem;
}

.selected-program-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
}

.trial-info {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.trial-info p {
    color: #a1a1aa;
    font-size: 0.875rem;
}

.program-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.program-price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.program-duration {
    color: #a1a1aa;
    font-size: 0.875rem;
}

.program-description {
    color: #a1a1aa;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.program-features-list h5 {
    color: #ffd700;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.program-features-list ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-features-list li {
    color: #a1a1aa;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.program-features-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Demo Modal */
.demo-modal .modal-content {
    max-width: 800px;
}

.demo-content {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.demo-video-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.demo-video-preview img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.demo-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.demo-play-overlay:hover {
    background: rgba(10, 10, 10, 0.8);
}

.demo-play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.demo-play-button:hover {
    background: #ffd700;
    transform: scale(1.1);
}

.demo-play-button i {
    width: 32px;
    height: 32px;
    color: #0a0a0a;
    margin-left: 4px;
}

.demo-preview-text h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.demo-preview-text p {
    color: #a1a1aa;
    font-size: 0.9rem;
}

.demo-simulation {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.demo-feedback-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.demo-feedback-item.active {
    opacity: 1;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.demo-feedback-item i {
    width: 16px;
    height: 16px;
    color: #ffd700;
    flex-shrink: 0;
}

.demo-feedback-item span {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.4;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.demo-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
}

.demo-feature i {
    width: 24px;
    height: 24px;
    color: #ffd700;
}

.demo-feature span {
    color: #a1a1aa;
    font-size: 0.875rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-login-btn {
        display: none;
    }

    /* Container and Layout Mobile */
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 1rem 16px;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 90vh;
        padding: 80px 0 40px 0;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* How It Works Mobile */
    .how-it-works-section {
        padding: 80px 0;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    /* Method Section Mobile */
    .method-section {
        padding: 80px 0;
    }

    .method-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pillar-card-horizontal {
        padding: 2rem 1.5rem;
    }

    /* AI Features Mobile */
    .ai-features-section {
        padding: 80px 0;
    }

    .ai-features-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Programs Section Mobile */
    .programs-section {
        padding: 80px 0;
    }

    .program-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 2rem;
    }

    .program-card:nth-child(even) .program-image,
    .program-card:nth-child(even) .program-content {
        order: initial;
    }

    .program-content {
        min-height: auto;
        padding: 0 1rem;
    }

    .program-image {
        min-height: 300px;
    }

    /* Testimonial Mobile */
    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Pricing Mobile */
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .pricing-card-popular {
        transform: none;
    }

    .pricing-faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 80px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 80px 0;
    }

    /* Footer Mobile - PRESERVE EXISTING STRUCTURE */
    .footer {
        padding: 60px 0 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-left {
        min-height: auto;
    }

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

    .footer-watermark {
        font-size: 6rem;
        bottom: -20px;
    }

    /* Typography Mobile */
    .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .method-title,
    .ai-features-title,
    .programs-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
    }

    /* Container spacing mobile */
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 1rem 20px;
    }

    /* Section headers mobile */
    .method-header,
    .ai-features-header,
    .programs-header,
    .testimonial-header {
        margin-bottom: 50px;
        padding: 0 1rem;
    }

    /* Contact Page Mobile */
    .contact-section {
        padding: 120px 0 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    /* Blog Mobile */
    .blog-section {
        padding: 120px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Exercise Pages Mobile */
    .exercise-section {
        padding: 100px 0 60px;
    }

    .exercise-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .exercise-main {
        padding: 2rem 1.5rem;
    }

    /* Privacy/Terms Mobile */
    .privacy-section {
        padding: 120px 0 60px;
    }

    .privacy-content {
        padding: 0 1rem;
    }

    .privacy-section-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section-block h2 {
        font-size: 1.5rem;
    }

    .privacy-section-block h3 {
        font-size: 1.25rem;
    }

    .privacy-section-block h4 {
        font-size: 1.125rem;
    }

    .privacy-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Blog Styles */
.blog-section {
    padding: 140px 0 80px;
    background: #0a0a0a;
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blog-badge i {
    width: 18px;
    height: 18px;
}

.blog-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(26, 26, 26, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.blog-card-content {
    position: relative;
    z-index: 1;
}

.blog-category {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.blog-card-title {
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #ffd700;
}

.blog-card-description {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    font-size: 0.875rem;
}

.blog-meta-item i {
    width: 16px;
    height: 16px;
    color: #ffd700;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #ffed4e;
    transform: translateX(4px);
}

.blog-read-more i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

.blog-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-state-icon i {
    width: 32px;
    height: 32px;
    color: #ffd700;
}

.blog-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.blog-empty-state p {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Blog Post Styles */
.blog-post-section {
    padding: 140px 0 80px;
    background: #0a0a0a;
    min-height: 100vh;
}

/* Enhanced Breadcrumb Styles */
.blog-breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: #52525b;
    margin-left: 0.75rem;
    margin-right: 0.25rem;
    font-weight: 400;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    background: transparent;
}

.breadcrumb-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.breadcrumb-link i {
    width: 16px;
    height: 16px;
}

.breadcrumb-item.active span {
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.blog-meta-items {
    display: flex;
    gap: 1.5rem;
}

.blog-post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.blog-post-description {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.blog-content-wrapper {
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
    line-height: 1.8;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-content-wrapper * {
    visibility: visible !important;
    opacity: 1 !important;
}

.blog-content-wrapper div {
    color: inherit;
}

.blog-content-wrapper div p {
    color: #a1a1aa !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
}

.blog-content-wrapper h1,
.blog-content-wrapper h2,
.blog-content-wrapper h3,
.blog-content-wrapper h4,
.blog-content-wrapper h5,
.blog-content-wrapper h6 {
    color: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    margin-top: 2rem !important;
}

.blog-content-wrapper h1:first-child,
.blog-content-wrapper h2:first-child,
.blog-content-wrapper h3:first-child {
    margin-top: 0;
}

.blog-content-wrapper h1 { font-size: 2.25rem; }
.blog-content-wrapper h2 { font-size: 1.875rem; color: #ffd700; }
.blog-content-wrapper h3 { font-size: 1.5rem; }
.blog-content-wrapper h4 { font-size: 1.25rem; }

.blog-content-wrapper p {
    color: #a1a1aa !important;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.blog-content-wrapper ul,
.blog-content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.blog-content-wrapper li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #a1a1aa !important;
    line-height: 1.7;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.blog-content-wrapper ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
    line-height: 1.7;
}

.blog-content-wrapper ol {
    counter-reset: item;
}

.blog-content-wrapper ol li::before {
    content: counter(item) '.';
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-weight: 700;
    line-height: 1.7;
}

.blog-content-wrapper blockquote {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #ffffff;
}

.blog-content-wrapper a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content-wrapper a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

.blog-content-wrapper strong {
    color: #ffffff;
    font-weight: 700;
}

.blog-content-wrapper code {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-family: 'Courier New', monospace;
    color: #ffd700;
    font-size: 0.9em;
}

.blog-content-wrapper pre {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-content-wrapper pre code {
    background: none;
    border: none;
    padding: 0;
    color: #a1a1aa;
}

.blog-post-footer {
    max-width: 800px;
    margin: 0 auto;
}

.blog-footer-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0a0a0a;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
}

.blog-cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.blog-cta-content .btn {
    background: #0a0a0a;
    color: #ffd700;
    border: none;
}

.blog-cta-content .btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.3);
}

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

.blog-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 1rem;
}

.blog-nav-link:hover {
    color: #ffd700;
}

.blog-nav-link i {
    width: 16px;
    height: 16px;
}

/* Blog Post Navigation */
.blog-post-navigation {
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.blog-nav-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-nav-item {
    display: flex;
}

.blog-nav-prev {
    justify-content: flex-start;
}

.blog-nav-next {
    justify-content: flex-end;
    text-align: right;
}

.blog-nav-link-extended {
    display: block;
    text-decoration: none;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    max-width: 320px;
    width: 100%;
}

.blog-nav-link-extended:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
}

.blog-nav-direction {
    font-size: 0.875rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-nav-title {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

.blog-nav-link-extended:hover .blog-nav-title {
    color: #ffd700;
}

@media (max-width: 768px) {
    .blog-nav-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-nav-next {
        text-align: left;
    }

    .blog-nav-link-extended {
        max-width: 100%;
    }

    .blog-post-navigation {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-meta-items {
        justify-content: center;
    }

    .blog-content-wrapper {
        padding: 2rem;
    }

    .blog-footer-cta {
        padding: 2rem;
    }

    .blog-cta-content h3 {
        font-size: 1.5rem;
    }

    .blog-cta-content p {
        font-size: 1rem;
    }
}

/* End FAQ Section */

/* Sitemap Styling */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.sitemap-column h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.sitemap-column ul {
    list-style: none;
    margin-bottom: 2rem;
}

.sitemap-column ul li {
    margin-bottom: 0.5rem;
}

.sitemap-column ul li a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.sitemap-column ul li a:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* End Sitemap Styling */