/*
Theme Name: Solvexia Financial
Theme URI: https://solvexia.ca
Description: Custom WordPress theme for the Solvexia Financial education platform
Version: 1.2.2
Author: Pixel United
Author URI: https://pixelunited.ca
Text Domain: securedcredit
Requires at least: 6.0
Requires PHP: 8.0
*/

/* ============================================
   SOLVEXIA FINANCIAL - MODERN FINANCIAL EDUCATION
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --navy-deep: #171927;
    --gold: #43D5CC;
    --teal: #19313A;

    /* Supporting Colors */
    --gray-light: #C5C9CC;
    --gray-medium: #75858C;
    --gray-dark: #C5C9CC;
    --white: #F1F2F2;

    /* Solvexia surfaces */
    --black-deep: #090B10;
    --panel-dark: #1D1D2B;
    --line-color: #668289;

    /* Gradients - only for buttons */
    --gradient-primary: linear-gradient(135deg, #19313A 0%, #171927 100%);
    --gradient-gold: linear-gradient(135deg, #43D5CC 0%, #668289 100%);
    --gradient-hero: linear-gradient(135deg, #171927 0%, #19313A 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(9, 11, 16, 0.28);
    --shadow-md: 0 8px 24px rgba(9, 11, 16, 0.3);
    --shadow-lg: 0 18px 44px rgba(9, 11, 16, 0.38);
    --shadow-xl: 0 28px 70px rgba(9, 11, 16, 0.48);

    /* Typography */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Michroma', 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--font-main);
    color: var(--gray-dark);
    background-color: var(--black-deep);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1,
h2 {
    font-family: var(--font-main);
    font-weight: 800;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 400;
    letter-spacing: 0.015em;
}

.gradient-text {
    color: var(--teal);
}

.text-gold {
    color: var(--gold);
}

/* ===== HEADER ===== */
.header {
    background: rgba(9, 11, 16, 0.94);
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(102, 130, 137, 0.55);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 36px rgba(9, 11, 16, 0.24);
}

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

.logo-image {
    width: 112px;
    max-height: 68px;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-deep);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--teal);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-banner {
    max-height: 60px;
    height: auto;
    display: block;
}

.nav-login {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-login:hover {
    color: var(--gold);
}

.phone-link {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--gold);
}

.lang-switch {
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--line-color);
    border-radius: 999px;
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.3s;
}

.lang-switch:hover {
    background: rgba(67, 213, 204, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black-deep);
}

.nav-cta:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black-deep);
}

.mobile-cta {
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: auto;
    justify-content: center;
    white-space: nowrap;
    padding: var(--spacing-sm) var(--spacing-xl);
}

.btn-primary {
    background: var(--navy-deep);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--white);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy-deep);
    color: var(--navy-deep);
}

.btn-outline:hover {
    background: var(--navy-deep);
    color: var(--white);
    transform: translateY(-2px);
}

.arrow {
    font-size: 1.2em;
    transition: transform 0.3s;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(2, 32, 76, 0.85) 0%, rgba(10, 58, 122, 0.85) 100%),
                url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-hero);
    opacity: 0.05;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-hero);
    opacity: 0.05;
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

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

.hero-title {
    font-size: 2.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    margin-bottom: var(--spacing-md);
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
}

.hero-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-card-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.hero-card-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
}

.hero-card-gradient {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--gray-medium);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    justify-content: center;
}

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

.trust-text {
    font-weight: 500;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--navy-deep);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: var(--spacing-xl);
}

.section-subtitle-alt {
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.step-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(1).animate {
    animation-delay: 0.1s;
}

.step-card:nth-child(2).animate {
    animation-delay: 0.3s;
}

.step-card:nth-child(3).animate {
    animation-delay: 0.5s;
}

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

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    margin-bottom: var(--spacing-md);
    color: var(--teal);
}

.step-icon svg {
    width: 64px;
    height: 64px;
}

.step-title {
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: var(--spacing-sm);
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-description {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    min-height: 3.2rem;
}

/* ===== PRICING ===== */
.pricing {
    background: #E2E8F0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 3px solid var(--gray-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr 280px;
    gap: var(--spacing-lg);
    align-items: center;
    cursor: pointer;
}

.pricing-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 30px rgba(10, 58, 122, 0.2);
    transform: translateX(8px);
    background: linear-gradient(90deg, var(--white) 0%, #f0fdf4 100%);
}

.pricing-popular {
    border-color: var(--teal);
    border-width: 4px;
    background: linear-gradient(90deg, #f0fdf4 0%, var(--white) 100%);
    box-shadow: 0 4px 20px rgba(10, 58, 122, 0.15);
}

.pricing-popular:hover {
    border-color: var(--navy-deep);
    box-shadow: 0 12px 40px rgba(2, 32, 76, 0.25);
    transform: translateX(12px);
}

.pricing-elite {
    background: linear-gradient(135deg, #F0FFF5 0%, #E6FFED 100%);
    border-color: var(--gold);
}

.pricing-elite:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(73, 172, 105, 0.2);
}

.pricing-header {
    text-align: left;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-bonus {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
}

.bonus-amount {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.bonus-label {
    display: inline-block;
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
}

.pricing-price {
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    display: block;
    font-size: 0.65rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.price-period {
    font-size: 0.75rem;
    color: #718096;
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs) var(--spacing-md);
}

.pricing-features li {
    padding: 0;
    color: var(--gray-dark);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.pricing-features li::before {
    content: '\2713';
    color: var(--teal);
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* ===== 6-COLUMN PRICING GRID - STACKED HORIZONTAL CARDS ===== */
.pricing-grid-6 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
    margin-top: var(--spacing-xl);
}

/* ===== BENEFITS ===== */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: var(--spacing-sm);
}

.benefit-description {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* New 3-Column Testimonial Layout */
.testimonials-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.testimonial-card-new {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.quote-icon {
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.testimonial-text-new {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.testimonial-author-section {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--gray-light);
}

.testimonial-avatar-new {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.stars-new {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--navy-deep);
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info {
    flex-grow: 1;
}

.stars {
    color: #49ac69;
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    gap: 3px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 0.5;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* ===== FAQ ===== */
.faq {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-medium);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: color 0.3s;
}

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

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

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

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

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

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--gradient-hero);
    padding: var(--spacing-3xl) 0;
}

.cta-box {
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-contact {
    margin-top: var(--spacing-lg);
    font-size: 1rem;
}

.phone-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.phone-gold:hover {
    text-decoration: underline;
}

/* ===== LEGAL CONTENT PAGES ===== */
.legal-content {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--navy-deep);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.legal-content h4 {
    font-size: 1.25rem;
    color: var(--navy-deep);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.legal-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.legal-content ul {
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.legal-content ul li {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

.legal-content a {
    color: var(--teal);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--navy-deep);
}

.legal-content .container {
    max-width: 900px;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--teal) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.intro-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.intro-section .container {
    position: relative;
    z-index: 1;
}

.intro-section .section-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.intro-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl) auto;
}

.intro-content-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.intro-highlights {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xl);
    width: 100%;
}

.intro-highlight-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    flex: 1;
}

.intro-highlight-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
}

.intro-highlight-icon {
    width: 96px;
    height: 96px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(73, 172, 105, 0.4);
    color: var(--white);
}

.intro-highlight-icon svg {
    width: 64px;
    height: 64px;
}

.intro-highlight-content h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.intro-highlight-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gray-light);
    padding: var(--spacing-3xl) 0;
}

.cta-section .section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.features-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.feature-card-col {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card-col:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta-content .section-title {
    text-align: left;
}

.cta-content .section-text {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== BENEFITS ALT SECTION ===== */
.benefits-alt {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    padding: var(--spacing-3xl) 0;
}

.benefits-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.benefits-content {
    text-align: left;
}

.benefits-content .section-title {
    text-align: left;
}

.benefits-content .section-text {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.process-section .section-text {
    margin-bottom: var(--spacing-xl);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: var(--spacing-lg) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-logo {
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    margin-top: var(--spacing-xs);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    opacity: 0.7;
}

.legal-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.separator {
    opacity: 0.5;
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

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

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

    .pricing-card {
        grid-template-columns: 160px 1fr 220px;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .pricing-name {
        font-size: 1.25rem;
    }
}

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

    .hero-visual {
        order: -1;
    }

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

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

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

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

    .intro-content-grid {
        flex-direction: column;
    }

    .intro-highlights {
        flex-direction: column;
    }

    .intro-section .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .intro-subtitle {
        font-size: 1rem;
    }

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

    .pricing-card {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }

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

    .pricing-bonus {
        justify-content: center;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .btn-full {
        width: 100%;
    }

    .pricing-badge {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
    }

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

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

    .testimonials-grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .mobile-cta {
        display: inline-flex;
        width: auto;
        white-space: nowrap;
    }

    .desktop-cta {
        display: none;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-3xl) var(--spacing-lg);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        gap: var(--spacing-lg);
    }

    .nav-right.active {
        transform: translateX(0);
    }

    .nav-login,
    .phone-link {
        width: 100%;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--gray-medium);
    }

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

    .section-text {
        font-size: 1rem;
    }

    .features-grid-3col {
        grid-template-columns: 1fr;
    }

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

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

    .cta-content .section-text {
        text-align: center;
    }

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

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

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

    .benefits-content .section-text {
        text-align: center;
    }

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

    .benefits-image {
        order: 1;
    }

    .section-subtitle-alt {
        text-align: center;
    }
}

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

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

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   SOLVEXIA BRAND LAYER
   Keeps the original component structure and behavior while applying
   the dark fintech direction supplied in the brand questionnaire.
   ============================================ */

html {
    color-scheme: dark;
}

body,
#main-content {
    background: var(--black-deep);
}

::selection {
    background: var(--gold);
    color: var(--black-deep);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.btn,
.lang-switch,
.nav-login,
.phone-link {
    font-family: var(--font-main);
}

.btn {
    letter-spacing: 0.035em;
}

.btn-primary,
.btn-gold {
    background: var(--gold);
    color: var(--black-deep);
}

.btn-primary:hover,
.btn-gold:hover {
    background: var(--white);
    color: var(--black-deep);
}

.btn-gradient {
    border-color: var(--gold);
}

.btn-outline {
    border-color: var(--line-color);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black-deep);
}

.hero {
    background: linear-gradient(105deg, var(--black-deep) 0%, var(--navy-deep) 54%, var(--teal) 100%);
    border-bottom: 1px solid rgba(102, 130, 137, 0.55);
}

.hero::before {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background-image:
        linear-gradient(rgba(102, 130, 137, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 130, 137, 0.16) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 1;
    pointer-events: none;
}

.hero::after {
    left: auto;
    right: -15%;
    bottom: -70%;
    background: radial-gradient(circle, rgba(67, 213, 204, 0.22) 0%, transparent 68%);
    opacity: 1;
    pointer-events: none;
}

.hero-title,
.section-title,
.cta-title,
.legal-content h1,
.intro-section .section-title {
    color: var(--white);
}

.hero-subtitle,
.section-subtitle,
.section-subtitle-alt,
.section-text,
.cta-subtitle,
.intro-subtitle,
.footer-tagline {
    color: var(--gray-light);
}

.hero-card,
.step-card,
.pricing-card,
.benefit-card,
.testimonial-card,
.testimonial-card-new,
.feature-card-col {
    background: var(--panel-dark);
    border-color: rgba(102, 130, 137, 0.58);
    box-shadow: var(--shadow-md);
}

.hero-card-label,
.hero-card-amount,
.trust-icon,
.step-number,
.quote-icon,
.stars,
.stars-new,
.phone-gold,
.gradient-text,
.text-gold {
    color: var(--gold);
}

.trust-bar,
.how-it-works,
.benefits,
.faq,
.process-section {
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(102, 130, 137, 0.38);
}

.pricing,
.testimonials,
.benefits-alt,
.cta-section {
    background: linear-gradient(135deg, var(--black-deep) 0%, var(--teal) 100%);
    border-bottom: 1px solid rgba(102, 130, 137, 0.38);
}

.trust-text,
.step-description,
.benefit-description,
.testimonial-text,
.testimonial-text-new,
.testimonial-role,
.feature-description,
.pricing-features li,
.price-label,
.price-period,
.pricing-disclaimer {
    color: var(--gray-light);
}

.step-title,
.benefit-title,
.testimonial-name,
.testimonial-author,
.feature-title,
.pricing-name,
.price-amount,
.faq-question {
    color: var(--white);
}

.step-icon,
.feature-icon,
.intro-highlight-icon {
    background: var(--gold);
    color: var(--black-deep);
}

.step-card:hover,
.benefit-card:hover,
.testimonial-card-new:hover,
.feature-card-col:hover,
.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 48px rgba(9, 11, 16, 0.46);
}

.pricing-popular,
.pricing-elite {
    background: linear-gradient(135deg, var(--panel-dark) 0%, var(--teal) 100%);
    border-color: var(--gold);
}

.pricing-badge {
    background: var(--gold);
    color: var(--black-deep);
}

.bonus-label {
    color: var(--gray-light);
}

.pricing-card .btn,
.pricing-card .btn-outline {
    background: transparent;
    border-color: var(--line-color);
    color: var(--white);
}

.pricing-card .btn:hover,
.pricing-card .btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black-deep);
}

.testimonial-author-section {
    border-color: rgba(102, 130, 137, 0.52);
}

.testimonial-avatar,
.testimonial-avatar-new {
    border-color: var(--line-color);
}

.faq-container {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    overflow: hidden;
    background: var(--panel-dark);
    border: 1px solid rgba(102, 130, 137, 0.48);
    border-radius: var(--radius-md);
}

.faq-question:hover,
.faq-icon,
.legal-content a {
    color: var(--gold);
}

.faq-answer p,
.legal-content p,
.legal-content ul li {
    color: var(--gray-light);
}

.final-cta,
.intro-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--teal) 100%);
    border-block: 1px solid rgba(102, 130, 137, 0.5);
}

.intro-highlight-item {
    background: rgba(29, 29, 43, 0.72);
    border: 1px solid rgba(102, 130, 137, 0.5);
}

.intro-highlight-item:hover {
    background: var(--panel-dark);
    border-color: var(--gold);
}

.intro-highlight-content h3 {
    color: var(--white);
}

.intro-highlight-content p {
    color: var(--gray-light);
}

.cta-img,
.benefits-img,
.hero-banner {
    border: 1px solid rgba(102, 130, 137, 0.62);
    box-shadow: var(--shadow-lg);
}

.legal-content {
    min-height: calc(100vh - 110px);
    background:
        radial-gradient(circle at 85% 10%, rgba(67, 213, 204, 0.12), transparent 34%),
        var(--black-deep);
}

.legal-content .container {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.legal-content h1 {
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--line-color);
}

.legal-content h4 {
    color: var(--white);
}

.legal-content a:hover {
    color: var(--white);
}

.footer,
.scg-footer-section {
    background: var(--black-deep);
    border-top: 1px solid rgba(102, 130, 137, 0.58);
}

.footer-links a,
.legal-links a {
    color: var(--gray-light);
}

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

@media (max-width: 768px) {
    .logo-image {
        width: 92px;
        max-height: 58px;
    }

    .mobile-cta {
        padding: 0.55rem 0.85rem;
        font-size: 0.75rem;
    }

    .nav-right {
        background: var(--black-deep);
        border-left: 1px solid var(--line-color);
        box-shadow: -18px 0 48px rgba(9, 11, 16, 0.58);
    }

    .nav-login,
    .phone-link {
        border-color: rgba(102, 130, 137, 0.52);
    }
}

@media (max-width: 480px) {
    .header .container {
        padding-inline: 0.75rem;
    }

    .logo-image {
        width: 80px;
        max-height: 50px;
    }

    .mobile-cta {
        padding: 0.45rem 0.65rem;
        font-size: 0.68rem;
        letter-spacing: 0.015em;
    }

    .hamburger {
        padding: 7px;
    }
}
