:root {
    /* Vibrant FinTech Palette */
    --bg-dark: #060913; /* Deep midnight blue, not dead black */
    --bg-card: #0f1525;
    --bg-card-hover: #161e35;
    
    --primary: #0ea5e9; /* Vibrant Cyan */
    --primary-hover: #0284c7;
    --accent: #00e676; /* Vivid Neon Green */
    --secondary: #3b82f6; 
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    
    --border-color: rgba(14, 165, 233, 0.15); /* Tinted border */
    --glass-bg: rgba(10, 15, 30, 0.7);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    /* Vibrant colorful background glows */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(14, 165, 233, 0.15), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 230, 118, 0.12), transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: clip;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Premium Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1, .wp-block-heading:is(h1) {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

h2, .wp-block-heading:is(h2) {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
}

h3, .wp-block-heading:is(h3) {
    font-size: 1.75rem;
    font-weight: 700;
}

p, .wp-block-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

ul, ol {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utility */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-accent {
    color: var(--accent);
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    /* Disabled JS-dependent animation to prevent WP-Rocket delay issues */
    /* transition: opacity 0.8s ease, transform 0.8s ease; */
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #02b65e);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #02b65e, var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.5);
}

.btn-outline {
    background: rgba(14, 165, 233, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    color: var(--primary);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.btn-outline:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.5);
    color: var(--primary);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Glassmorphism */
.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

/* Native WordPress Menu Support */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-link,
.nav-links a {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-links a:hover,
.nav-links .current-menu-item > a {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* Premium Submenu Dropdowns */
.nav-links li {
    position: relative;
}

.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--primary);
    border-radius: 4px;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    z-index: 1001;
}

.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px); /* 10px gap below the nav item */
}

.nav-links .sub-menu li {
    width: 100%;
    margin: 0;
}

.nav-links .sub-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.nav-links .sub-menu a:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary);
    text-shadow: none;
    padding-left: 2rem;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    transform: translateY(0);
}

/* Native WordPress Mobile Menu Support */
.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-link,
.mobile-menu a {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-link:hover,
.mobile-link.active,
.mobile-menu a:hover,
.mobile-menu .current-menu-item > a {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* Centered Hero Section */
.hero {
    position: relative;
    padding: 140px 0 0px; /* remove bottom padding so image touches next section implicitly */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(14, 165, 233, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    z-index: -2;
}

.glow-badge {
    border: 1px solid rgba(0, 230, 118, 0.4);
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.hero-title-massive {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle-centered {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin: 0 auto 2.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.hero-cta-group-centered {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Browser Mockup centered presentation */
.hero-visual-centered {
    width: 100%;
    max-width: 1100px;
    perspective: 1200px;
    margin: 0 auto;
    z-index: 10;
}

.browser-mockup {
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 0 100px -20px rgba(14, 165, 233, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform: rotateX(5deg) translateY(20px);
    transform-origin: bottom center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}

.browser-mockup:hover {
    transform: rotateX(0deg) translateY(0);
    box-shadow: 0 0 120px -10px rgba(0, 230, 118, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.browser-header {
    background: rgba(20, 25, 40, 0.9);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.browser-url {
    flex: 1;
    text-align: center;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 4px 0;
    margin: 0 24px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    font-family: monospace;
}

.app-mockup {
    width: 100%;
    display: block;
    mix-blend-mode: normal;
}

.floating-card {
    position: absolute;
    background: rgba(17, 22, 36, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 2s;
}

.positive { color: var(--primary); font-weight: bold; }
.highlight { color: #ff3d00; font-weight: bold; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Typography & Layout Shared */
.section {
    padding: 6rem 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.full-width { width: 100%; }

/* Stats */
.social-proof {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255,255,255,0.01);
}

.subtle-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

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

.feature-card {
    background: linear-gradient(180deg, rgba(20, 25, 40, 0.4) 0%, rgba(10, 15, 25, 0.8) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-glow-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.feature-card:hover .feature-glow-line {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.1);
    transition: all 0.4s ease;
}

.feature-icon-svg {
    width: 24px;
    height: 24px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon-svg {
    transform: rotate(-5deg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Split Section */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: url('https://i.ytimg.com/vi/7UPYpL6UkBk/maxresdefault.jpg') center/cover;
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.2), 0 20px 50px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 25, 0.2); /* Very light tint for contrast, NO blur */
    transition: background 0.4s ease;
}

.video-placeholder:hover::before {
    background: rgba(10, 15, 25, 0.05); /* Almost invisible on hover */
}

.btn-outline {
    background: rgba(14, 165, 233, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    color: var(--primary);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.btn-outline:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.5);
    color: var(--primary);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
    z-index: 2;
    padding: 24px;
}

.video-placeholder:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.6);
}

.play-button svg {
    margin-left: 5px; /* optical balance for play icon */
    width: 100%;
    height: 100%;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    margin-right: 1rem;
}

/* Pricing Section */
.pricing-tabs {
    margin-bottom: 2rem;
    display: inline-flex;
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.75rem 2rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.pricing-tab-pane {
    display: none;
}

.pricing-tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card); /* Override glass-card */
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-5px);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 1.5rem 0;
    color: var(--text-main);
}
.plan-price span {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.highlight-border {
    border-color: rgba(14, 165, 233, 0.4);
}

.popular {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.1), 0 20px 40px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.05) 0%, var(--bg-card) 50%);
}

.popular-badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    padding: 0.4rem 0;
    text-align: center;
    border-radius: 12px 12px 0 0;
    transform: none;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    color: var(--text-muted);
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* arbitrary large max-height for CSS transition */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
}

.plan-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #cbd5e1;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-muted);
    margin: 1rem 0;
    font-size: 0.95rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary);
    color: #000;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .email-capture-form {
        max-width: 500px;
        margin: 0 auto 0.75rem;
    }
    
    .floating-card {
        display: none; /* Hide complex floating elements on mobile */
    }
    
    .pricing-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }
    .hero-title-massive {
        font-size: 2.8rem;
    }

    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .split-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 40px;
    }
    .hero-title-massive {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .hero-subtitle-centered {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .email-capture-form {
        flex-direction: column;
    }
}

/* Trust Elements */
.trust-rating {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    display: flex;
    gap: 4px;
    color: #ffb400; /* Trustpilot yellow */
    margin-bottom: 0.5rem;
}

.stars svg {
    width: 20px;
    height: 20px;
}

.trust-rating p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.trust-rating strong {
    color: var(--text-main);
}

.guarantee-box {
    margin: 4rem auto 0;
    max-width: 750px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
}

.guarantee-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.guarantee-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Slider Overrides */
.slider-container {
    position: relative;
    padding-bottom: 0 !important; /* overrides browser-mockup padding */
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* border radius trick to keep image inside mockup */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-track .slide {
    min-width: 100%;
    object-fit: cover;
    display: block; /* prevents inline gap */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 15, 25, 0.7);
    color: #fff;
    border: 1px solid rgba(14, 165, 233, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
    padding-bottom: 4px; /* optical alignment for arrow characters */
}

.slider-arrow:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 15px;
}

.slider-arrow.next {
    right: 15px;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 1rem 0;
    background: #0b0f19; /* matches mockup header bottom */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.slider-pagination .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.slider-pagination .dot:hover {
    background: rgba(255,255,255,0.5);
}

.slider-pagination .dot.active {
    background: var(--primary);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.6);
    transform: scale(1.3);
}

/* NEW CRO SECTIONS CSS */

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.15) 0%, rgba(0, 230, 118, 0.15) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001; /* Above navbar if navbar isn't sticky yet, wait navbar is fixed */
}

/* Push navbar down so announcement bar is visible */
@media (max-width: 768px) {
    .announcement-bar { font-size: 0.8rem; padding: 0.5rem 1rem; }
}

.pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.banner-link {
    color: var(--primary);
    font-weight: 600;
    margin-left: 10px;
    text-decoration: underline;
}

/* Comparison Section */
.comparison-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.compare-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.compare-card.retail {
    border: 1px solid rgba(255, 61, 0, 0.3);
}

.compare-card.smart-money {
    border: 1px solid rgba(0, 230, 118, 0.3);
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.05) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
}

.compare-header {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.compare-list {
    list-style: none;
}

.compare-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.compare-list .icon {
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.icon.red { color: #ff3d00; }
.icon.green { color: var(--accent); }

.vs-circle {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 2;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #7dd3fc;
    margin: 0 auto 0.5rem;
    line-height: 1;
}

.step-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.step-card p {
    color: #e2e8f0;
}

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

.testo-card {
    padding: 2rem;
    position: relative;
}

.testo-text {
    font-size: 1rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testo-author {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.mb-2 { margin-bottom: 1rem; }

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
    .comparison-grid { flex-direction: column; }
    .vs-circle { margin: 1rem 0; }
    .steps-grid, .testo-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   bbPress Forum Overrides (Cinematic Dark Theme)
   ========================================================================== */

#bbpress-forums {
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-muted);
}

#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results {
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(10, 15, 25, 0.6);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
}

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
    background: rgba(255,255,255,0.02);
    border-top: none;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    padding: 1rem 2rem;
}

#bbpress-forums li.bbp-header {
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.02);
    transition: background 0.3s ease;
}

#bbpress-forums li.bbp-body ul.forum:hover,
#bbpress-forums li.bbp-body ul.topic:hover {
    background: rgba(14, 165, 233, 0.05);
}

#bbpress-forums li.bbp-body ul.forum:first-child,
#bbpress-forums li.bbp-body ul.topic:first-child {
    border-top: none;
}

#bbpress-forums div.bbp-forum-title,
#bbpress-forums div.bbp-topic-title h3,
#bbpress-forums a.bbp-forum-title,
#bbpress-forums a.bbp-topic-permalink {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#bbpress-forums a.bbp-forum-title:hover,
#bbpress-forums a.bbp-topic-permalink:hover {
    color: var(--primary);
}

#bbpress-forums .bbp-forum-info .bbp-forum-content {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

#bbpress-forums div.bbp-forum-author img.avatar,
#bbpress-forums div.bbp-topic-author img.avatar,
#bbpress-forums div.bbp-reply-author img.avatar {
    border-radius: 50%;
    border: 2px solid rgba(14, 165, 233, 0.2);
    padding: 2px;
}

#bbpress-forums div.bbp-reply-content {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    color: #e2e8f0;
}

#bbpress-forums fieldset.bbp-form,
.bbp-login-form fieldset.bbp-form {
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(10, 15, 25, 0.6);
    padding: 2.5rem;
    border-radius: 12px;
}

.bbp-login-form {
    margin-top: 0 !important;
}

.bbp-login-form fieldset.bbp-form {
    max-width: 420px;
    margin: 0 0 3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#bbpress-forums fieldset.bbp-form legend,
.bbp-login-form fieldset.bbp-form legend {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.5rem;
    padding: 0 10px;
    margin-bottom: 1rem;
}

.bbp-login-form .bbp-username,
.bbp-login-form .bbp-password {
    margin-bottom: 1.5rem;
}

#bbpress-forums fieldset.bbp-form input[type="text"],
#bbpress-forums fieldset.bbp-form input[type="password"],
#bbpress-forums fieldset.bbp-form textarea,
.bbp-login-form input[type="text"],
.bbp-login-form input[type="password"] {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    width: 100%;
    margin-top: 0.5rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#bbpress-forums fieldset.bbp-form input:focus,
.bbp-login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
    background: rgba(0,0,0,0.8);
}

.bbp-login-form label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.bbp-login-form .bbp-remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    margin-top: -0.5rem;
}

.bbp-login-form .bbp-remember-me label {
    display: inline-block;
    margin: 0;
}

#bbpress-forums fieldset.bbp-form button,
#bbpress-forums .bbp-submit-wrapper button,
.bbp-login-form .bbp-submit-wrapper button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: block;
}

#bbpress-forums fieldset.bbp-form button:hover,
#bbpress-forums .bbp-submit-wrapper button:hover,
.bbp-login-form .bbp-submit-wrapper button:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

#bbpress-forums .bbp-pagination-links a.page-numbers,
#bbpress-forums .bbp-pagination-links span.page-numbers.current,
#bbpress-forums .bbp-pagination-links span.page-numbers.dots {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin: 0 2px;
    text-decoration: none;
    display: inline-block;
}

#bbpress-forums .bbp-pagination-links span.page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

#bbpress-forums .bbp-pagination-links span.page-numbers.dots {
    background: transparent;
    border-color: transparent;
}

#bbpress-forums .bbp-pagination-links {
    margin-right: 2rem;
}

#bbpress-forums .bbp-pagination-links a.page-numbers:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

#bbpress-forums .bbp-search-form {
    margin-bottom: 1rem;
    margin-right: 2rem;
}

#bbpress-forums #bbp-search-form #bbp_search {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 350px;
    max-width: 100%;
}

#bbpress-forums .bbp-search-form input[type="text"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

#bbpress-forums .bbp-search-form input[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

#bbpress-forums .bbp-search-form input[type="submit"]:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

#bbpress-forums div.even, #bbpress-forums ul.even { background-color: transparent !important; }
#bbpress-forums div.odd, #bbpress-forums ul.odd { background-color: transparent !important; }

/* Ultimate Membership Pro Pricing Overrides */
.ihc_level_template_5 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin: 4rem auto !important;
    max-width: 1400px !important;
    padding: 0 !important;
}

@media (max-width: 1200px) {
    .ihc_level_template_5 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .ihc_level_template_5 {
        grid-template-columns: 1fr !important;
    }
}

.ihc_level_template_5::after, .ihc_level_template_5::before {
    display: none !important;
}

.ihc_level_template_5 .ihc-level-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    float: none !important;
}

.ihc_level_template_5 .ihc-level-item-wrap {
    background: var(--bg-card) !important;
    border: 1px solid rgba(14, 165, 233, 0.1) !important;
    border-radius: 12px !important;
    padding: 2rem 1.5rem !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
    transition: all 0.4s ease !important;
    height: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

.ihc_level_template_5 .ihc-level-item-wrap:hover {
    border-color: rgba(14, 165, 233, 0.3) !important;
    transform: translateY(-5px) !important;
}

/* Make the FIRST item "Popular" (MK Web) */
.ihc_level_template_5 .ihc-level-item:first-child .ihc-level-item-wrap {
    border-color: var(--accent) !important;
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.1), 0 20px 40px rgba(0,0,0,0.5) !important;
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.05) 0%, var(--bg-card) 50%) !important;
}

.ihc_level_template_5 .ihc-level-item-top,
.ihc_level_template_5 .ihc-level-item-bottom {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.ihc_level_template_5 .ihc-level-item-title {
    font-family: var(--font-heading) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
}

.ihc_level_template_5 .ihc-level-item-price {
    font-family: var(--font-heading) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 1rem 0 1.5rem 0 !important;
    color: var(--text-main) !important;
    background: transparent !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

.ihc_level_template_5 .ihc-level-item-content {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
    flex-grow: 1 !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
}

/* Default Button (Outline) */
.ihc_level_template_5 .ihc-level-item-link {
    background: rgba(14, 165, 233, 0.1) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    padding: 0.85rem 1.75rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

.ihc_level_template_5 .ihc-level-item-link:hover {
    background: rgba(14, 165, 233, 0.2) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
}

/* Popular Button (Neon Green) */
.ihc_level_template_5 .ihc-level-item:first-child .ihc-level-item-link {
    background: linear-gradient(135deg, var(--accent), #02b65e) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35) !important;
}

.ihc_level_template_5 .ihc-level-item:first-child .ihc-level-item-link:hover {
    background: linear-gradient(135deg, #02b65e, var(--accent)) !important;
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.5) !important;
}

/* ----------------------------------------------------
   CINEMATIC "ABOUT" NARRATIVE STYLES
   ---------------------------------------------------- */
.cinematic-header {
    position: relative;
    padding: 3rem 0 4rem;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cinematic-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTU5IDYwaC0xVjFoLTF2NTlIMFY1OWg1OFYwaDF2NjB6IiBmaWxsPSJyZ2JhKDE0LCAxNjUsIDIzMywgMC4wNykiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==') repeat;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: -1;
}

.mega-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

/* The Grid */
.story-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    padding: 4rem 0;
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Dynamic Sticky Portrait */
.portrait-sticky {
    position: sticky;
    top: 140px;
}

.portrait-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-card);
}

.portrait-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 50%);
    pointer-events: none;
}

.portrait-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(40%) contrast(1.1) brightness(0.9);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portrait-frame:hover .portrait-img {
    filter: grayscale(0%) contrast(1.1) brightness(1);
    transform: scale(1.05);
}

.portrait-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}

.portrait-overlay-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 5px;
    color: #fff;
}

.portrait-overlay-text p {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Deep Narrative Typography */
.narrative-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.drop-cap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.8;
    padding-right: 1rem;
    padding-top: 0.5rem;
    color: var(--primary);
    font-weight: 900;
}

.narrative-content p {
    margin-bottom: 2rem;
}

.narrative-content strong {
    color: #fff;
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.2) 0%, transparent 100%);
    padding: 0 5px;
    border-radius: 4px;
}

/* Cinematic Quote */
.cinematic-quote {
    position: relative;
    padding: 2.5rem 3rem;
    margin: 3rem 0;
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.cinematic-quote::before {
    content: '"';
    position: absolute;
    top: -20px; left: 30px;
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: rgba(0, 230, 118, 0.15);
}

.cinematic-quote p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

/* Premium Socials */
.premium-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-box:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

/* ----------------------------------------------------
   1000X CRO LANDING PAGE STYLES (2026 FINTECH)
   ---------------------------------------------------- */
.fintech-hero {
    padding: 4rem 0 8rem;
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.trust-badge .stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

.trust-badge .trust-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-primary-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #02b65e);
    color: #000 !important;
    font-weight: 800;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5);
    color: #000;
}

.btn-outline-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Matrix Reveal */
.matrix-reveal-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comp-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.comp-card.retail-view {
    opacity: 0.7;
    filter: grayscale(0.5);
}

.comp-card.mk-view {
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.1);
}

.comp-badge {
    position: absolute;
    top: 0; right: 0;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom-left-radius: 16px;
}

.comp-badge.danger { background: #ef4444; color: #fff; }
.comp-badge.success { background: var(--accent); color: #000; }

.comp-visual {
    height: 200px;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Abstract Charts */
.abstract-chart {
    width: 80%; height: 60%;
    position: relative;
}

.retail-chart {
    background: linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%) center/20px 100%;
}
.retail-chart::after {
    content: '';
    position: absolute;
    bottom: 20%; left: 0; right: 0; height: 2px;
    background: #ef4444;
    transform: rotate(-10deg);
}

.mk-chart {
    background: linear-gradient(90deg, transparent 49%, rgba(0,230,118,0.05) 50%, transparent 51%) center/20px 100%;
}
.mk-chart::after {
    content: '';
    position: absolute;
    top: 20%; left: 10%; width: 50%; height: 30px;
    border: 2px solid var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 15px var(--accent);
}
.mk-chart::before {
    content: 'STOP HUNT TARGET';
    position: absolute;
    top: -5px; left: 10%;
    color: var(--accent);
    font-size: 10px;
    font-weight: bold;
}

.comp-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.comp-card p { color: #94a3b8; font-size: 1rem; }

/* Whistleblower */
.whistleblower-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: radial-gradient(circle at right center, rgba(14, 165, 233, 0.05), transparent 50%);
}

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

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

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.check-list li svg {
    color: var(--accent);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Glass Grid 3 */
.platform-section {
    padding: 6rem 0;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.card-icon {
    width: 60px; height: 60px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.glass-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.glass-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}

/* Guarantee */
.guarantee-section {
    padding: 4rem 0 8rem;
}

.guarantee-box {
    background: linear-gradient(180deg, rgba(20, 25, 35, 0.8) 0%, rgba(10, 15, 20, 0.9) 100%);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.05);
    display: block;
    text-align: center;
}

.shield-icon {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.4));
}

.shield-icon svg {
    width: 60px; height: 60px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
}

.guarantee-box h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.guarantee-box p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mt-4 { margin-top: 2rem; }

@media (max-width: 768px) {
    .comparison-grid, .glass-grid-3 { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary-neon, .btn-outline-glass { width: 100%; }
}

/* ----------------------------------------------------
   ULTIMATE MEMBERSHIP PRO: HIGH-TRUST LIGHT MODE
   (Register, Checkout, Login) - "White Card" Design
---------------------------------------------------- */

/* Remove the "box behind the box" (the theme's glass panel) if it contains the form */
body .page-content:has(.iump-register-form),
body .glass-panel:has(.iump-register-form),
body .page-content:has(.ihc-checkout-page-wrapp),
body .glass-panel:has(.ihc-checkout-page-wrapp),
body .content-wrapper.glass-card:has(.iump-register-form),
body .content-wrapper.glass-card:has(.ihc-checkout-page-wrapp) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important; /* Force remove the 3rem padding from glass-card */
}

/* Turn the main form containers into beautiful, floating white cards */
body .ihc-checkout-page-wrapp,
body .iump-register-form,
body .ihc-login-form-wrap {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 40px !important;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0,0,0,0.05) !important;
    margin: 20px auto !important;
    max-width: 800px !important; /* Made wider as requested */
}

/* Global Text inside the white card */
body .ihc-checkout-page-wrapp,
body .ihc-checkout-page-wrapp input,
body .ihc-checkout-page-wrapp select,
body .ihc-checkout-page-wrapp textarea,
body .ihc-checkout-page-wrapp label,
body .ihc-checkout-page-wrapp h1, body .ihc-checkout-page-wrapp h2, body .ihc-checkout-page-wrapp h3, body .ihc-checkout-page-wrapp h4,
body .iump-register-form,
body .iump-register-form input,
body .iump-register-form select,
body .iump-register-form textarea,
body .iump-register-form label,
body .ihc-login-form-wrap,
body .ihc-login-form-wrap input {
    color: #30313d !important; /* Stripe dark grey */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Explicitly protect icon fonts */
body .iump-register-form .dashicons,
body .ihc-checkout-page-wrapp .dashicons,
body .ihc-login-form-wrap .dashicons,
body .ihc-hide-pw {
    font-family: dashicons !important;
}

/* Headings inside the card */
body .ihc-checkout-page-wrapp h1, body .ihc-checkout-page-wrapp h2, body .ihc-checkout-page-wrapp h3, body .ihc-checkout-page-wrapp h4,
body .ihc-checkout-page-box-title,
body .iump-register-form .ihc-register-title,
body .ihc-login-form-wrap h2 {
    color: #1a1b25 !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 25px !important;
    text-align: left !important;
    font-size: 26px !important;
}

/* 
   THE ACTUAL INPUT FIELDS
   Maximum Specificity with IDs and native classes to defeat Template 9 pill shapes
*/
html body div.ihc-register-9 input,
html body div.ihc-register-9 select,
html body div.ihc-register-9 textarea,
html body div.ihc-register-9 input[type="text"],
html body div.ihc-register-9 input[type="email"],
html body div.ihc-register-9 input[type="password"],
html body #createuser input,
html body #createuser select,
html body #createuser textarea,
html body .ihc-checkout-page-wrapp form input,
html body .ihc-checkout-page-wrapp form select,
html body .ihc-checkout-page-wrapp form textarea,
html body div.iump-register-form form input,
html body div.iump-register-form .iump-form-line-register input,
html body form.ihc-login-form-wrap input {
    background: #ffffff !important; 
    border: 1px solid #e6e6e6 !important; /* Stripe uses very light border */
    color: #1a1b25 !important; 
    padding: 12px 14px !important; /* Compact Stripe padding */
    border-radius: 5px !important; /* Exact Stripe curve, strictly kills pills */
    font-size: 15px !important; 
    font-weight: 400 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), inset 0 0 0 1px transparent !important;
    transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
    line-height: 1.5 !important;
}

/* Force override if UMP uses inline styles for pill shapes */
html body form#createuser input[style],
html body .iump-form-line-register input[style],
html body div.ihc-register-9 input[style] {
    border-radius: 5px !important;
}

/* Fix placeholders - hide them completely for all browsers */
html body #createuser input::-webkit-input-placeholder { color: transparent !important; opacity: 0 !important; text-indent: -9999px !important; font-size: 0 !important; }
html body #createuser input::-moz-placeholder { color: transparent !important; opacity: 0 !important; text-indent: -9999px !important; font-size: 0 !important; }
html body #createuser input:-ms-input-placeholder { color: transparent !important; opacity: 0 !important; text-indent: -9999px !important; font-size: 0 !important; }
html body #createuser input::placeholder { color: transparent !important; opacity: 0 !important; text-indent: -9999px !important; font-size: 0 !important; }
html body .ihc-checkout-page-wrapp form input::placeholder { color: transparent !important; opacity: 0 !important; text-indent: -9999px !important; font-size: 0 !important; }

/* INJECT STRIPE-STYLE LABELS ABOVE INPUTS */
html body .iump-form-user_login::before { content: "Username"; display: block; color: #30313d; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
html body .iump-form-user_email::before { content: "Email"; display: block; color: #30313d; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
html body .iump-form-first_name::before { content: "First Name"; display: block; color: #30313d; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
html body .iump-form-pass1::before { content: "Password"; display: block; color: #30313d; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
html body .iump-form-pass2::before { content: "Confirm Password"; display: block; color: #30313d; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
html body .ihc-stripe-connect-form-card-name-wrap::before { content: "Name on card"; display: block; color: #30313d; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
html body .ihc-stripe-connect-form-card-number-wrap::before { content: "Card information"; display: block; color: #30313d; font-size: 13px; font-weight: 600; margin-bottom: 6px; }

/* Exceptions for buttons/checkboxes */
html body form#createuser input[type="submit"],
html body div.iump-register-form input[type="submit"],
html body .ihc-checkout-page-wrapp form input[type="submit"],
html body form#createuser input[type="checkbox"] {
    width: auto !important;
    box-shadow: none !important;
}

/* Focus States - Stripe Style */
html body form#createuser input:focus,
html body .ihc-checkout-page-wrapp form input:focus,
html body div.iump-register-form form input:focus {
    border-color: #8b5cf6 !important; /* Stripe purple/blue focus */
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2), inset 0 0 0 1px #8b5cf6 !important;
    outline: none !important;
}

/* 
   CLEAN STRIPE CONTAINERS AND PAYMENT TITLE 
*/
body .ihc-stripe-connect-form-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
}

/* Add a beautiful Payment Details title before the Stripe fields */
body .ihc-stripe-connect-form-wrapper::before {
    content: "Payment Details";
    display: block;
    color: #1a1b25 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
}

/* Prevent box-in-box if UMP nests checkout wrapper inside register form */
body .iump-register-form .ihc-checkout-page-wrapp {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

body .ihc-stripe-connect-form-wallets-wrap,
body .ihc-stripe-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Stripe input spacing */
body .ihc-stripe-connect-form-card-number-wrap,
body .ihc-stripe-connect-form-card-name-wrap {
    padding: 0 !important;
    margin-bottom: 15px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 
   Apply borders ONLY to the actual inputs, not the wrappers!
   This fixes the "box-in-box" issue where the label gets a border too.
*/
body .ihc-stripe-connect-form-card-name-wrap input,
body #ihc-stripe-connect-card-element {
    background: #ffffff !important; 
    border: 1px solid #e6e6e6 !important; 
    color: #1a1b25 !important; 
    padding: 12px 14px !important; 
    border-radius: 5px !important; 
    font-size: 15px !important; 
    font-weight: 400 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), inset 0 0 0 1px transparent !important;
    transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

/* Focus states for Stripe inputs */
body .ihc-stripe-connect-form-card-name-wrap input:focus,
body #ihc-stripe-connect-card-element.StripeElement--focus {
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2), inset 0 0 0 1px #8b5cf6 !important;
    outline: none !important;
}

/* Checkbox Alignment and Terms */
body #createuser input[type="checkbox"] {
    margin-right: 10px !important;
    display: inline-block !important;
    transform: scale(1.1);
}
body div.iump-register-form .ihc-tos-wrap {
    display: flex !important;
    align-items: flex-start !important;
    color: #4f566b !important;
    font-size: 13px !important;
    margin-top: 20px !important;
    padding: 0 !important;
    background: transparent !important;
}
body div.iump-register-form .ihc-tos-wrap a {
    color: #8b5cf6 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* 
   ORDER SUMMARY BOX
*/
body .ihc-checkout-page-right-side .ihc-checkout-page-box-wrapper,
body .ihc-checkout-page-order-summary {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-top: 25px !important;
    box-shadow: none !important;
}

/* Action Buttons - Stripe Style */
body form#createuser input[type="submit"],
body .ihc-checkout-page-wrapp form input[type="submit"],
body .ihc-checkout-page-wrapp button,
body div.iump-register-form input[type="submit"],
body form.ihc-login-form-wrap input[type="submit"] {
    background: #7c3aed !important; /* Stripe primary button color */
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    border: none !important;
    font-size: 15px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background 0.15s ease, transform 0.15s ease !important;
    margin-top: 1.5rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

body .ihc-checkout-page-wrapp form input[type="submit"]:hover,
body div.iump-register-form input[type="submit"]:hover,
body form#createuser input[type="submit"]:hover {
    background: #6d28d9 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

/* Make spacing compact - Stripe style */
html body .iump-form-line-register {
    padding: 0 !important; /* UMP adds 10px padding by default, which breaks compact layouts */
    margin-bottom: 12px !important; /* Compact spacing */
    position: relative !important;
}

/* Password Eye Icon Fix */
html body .ihc-hide-pw {
    position: absolute !important;
    top: 38px !important; /* Perfect vertical center relative to the top label (25px) + half input (23px) - half icon (10px) = 38px */
    bottom: auto !important; 
    right: 14px !important;
    z-index: 10 !important;
    cursor: pointer !important;
    color: #4f566b !important; /* Stripe dark gray icon */
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
}
html body .ihc-hide-pw:hover {
    color: #8b5cf6 !important; /* Highlight on hover */
}

/* Modernize Password Strength Meter (Restored) */
body .ihc-strength-wrapper {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    margin-top: 8px !important;
    width: 100% !important;
}
body .ihc-strength {
    display: flex !important;
    gap: 4px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 4px !important;
}
body .ihc-strength .point {
    flex: 1 !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: #e2e8f0; /* REMOVED !important so UMP JS can change colors */
    transition: background-color 0.3s ease !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}
/* UMP colors the points via inline styles or specific classes, the above gives them a premium background shape */
body .ihc-strength-label {
    font-size: 11px !important;
    color: #64748b !important;
    margin-top: 4px !important;
    text-align: right !important;
}

/* ----------------------------------------------------
   COOKIE NOTICE STYLING
---------------------------------------------------- */
#cookie-notice {
    background-color: #0b1120 !important; /* Match dark theme */
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding: 20px !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.8) !important;
}

#cookie-notice .cookie-notice-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
}

#cookie-notice #cn-notice-text {
    color: #cbd5e1 !important;
    font-size: 14px !important;
    text-align: center !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

#cookie-notice #cn-accept-cookie {
    background: linear-gradient(135deg, var(--accent), #02b65e) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 14px 24px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    width: 100% !important;
    max-width: 350px !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
}

/* Close icon styling */
#cookie-notice #cn-close-notice {
    top: 5px !important;
    right: 5px !important;
}
#cookie-notice #cn-close-notice::before, #cookie-notice #cn-close-notice::after {
    background-color: #94a3b8 !important;
}

@media (min-width: 768px) {
    #cookie-notice .cookie-notice-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    #cookie-notice #cn-notice-text {
        text-align: left !important;
        margin-right: 20px !important;
        font-size: 15px !important;
    }
    #cookie-notice #cn-accept-cookie {
        width: auto !important;
        min-width: 200px !important;
        white-space: nowrap !important;
    }
}

/* ----------------------------------------------------
   FEATURES & COURSE PAGES STYLING
   Optimized for spacing, layout, & premium visuals
---------------------------------------------------- */

/* Spacing and layout fixes for Features template */
.features-hero {
    padding: 13rem 0 5rem;
    position: relative;
    text-align: center;
    background-image: radial-gradient(circle at 50% 10%, rgba(14, 165, 233, 0.15), transparent 60%);
}

.mega-title {
    font-size: clamp(3rem, 6.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-browser {
    margin-top: 5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: #090e18;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: var(--transition);
}

.hero-browser:hover {
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 45px 90px rgba(14, 165, 233, 0.12);
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.5rem;
    background: #0f1525;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.browser-url {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0.35rem 2.5rem;
    border-radius: 6px;
    margin-left: 2rem;
    width: 100%;
    max-width: 420px;
    text-align: left;
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-row {
    display: flex;
    gap: 5rem;
    align-items: center;
    padding: 8rem 0;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.feature-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/10;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-image:hover img {
    transform: scale(1.04);
}

.glow-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.85rem;
}

.check-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
}


/* Spacing and layout fixes for Course template */
.course-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    padding: 13rem 0 8rem;
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 230, 118, 0.1), transparent 50%);
}

.course-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    background: rgba(0, 230, 118, 0.08);
    color: var(--accent);
    border: 1px solid rgba(0, 230, 118, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.course-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.course-desc {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
    padding-bottom: 8rem;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.module-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(14, 165, 233, 0.06);
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    transition: var(--transition);
}

.module-card:hover .module-number {
    color: rgba(14, 165, 233, 0.15);
    transform: scale(1.05);
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.module-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.module-list li {
    font-size: 1.05rem;
    color: var(--text-muted);
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.module-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.module-list li:last-child {
    border-bottom: none;
}

/* Responsiveness */
@media (max-width: 991px) {
    .features-hero {
        padding: 11rem 0 4rem;
    }
    
    .hero-browser {
        margin-top: 3.5rem;
    }
    
    .feature-row {
        flex-direction: column !important;
        gap: 3.5rem;
        padding: 5rem 0;
        text-align: center;
    }
    
    .check-list li {
        justify-content: center;
    }
    
    .course-hero {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 11rem 0 5rem;
        text-align: center;
        justify-items: center;
    }
    
    .course-hero div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .course-hero div style {
        justify-content: center;
    }
}

