/* ========================================
   WEALTHWISE - CSS STYLESHEET
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES (Design System)
   ======================================== */
:root {
    /* Brand Colors */
    --ww-primary: #1F2F5C;
    --ww-primary-light: #2A3F7A;
    --ww-primary-dark: #182448;
    --ww-secondary: #1FC793;
    --ww-secondary-light: #2EDBA6;
    --ww-secondary-dark: #18A077;
    --ww-accent: #D8B560;
    --ww-accent-light: #E5C97D;
    --ww-accent-dark: #C9A44D;

    /* Background Colors */
    --ww-bg-light: #F5F8FA;
    --ww-bg-white: #FFFFFF;
    --ww-bg-dark: #1F2F5C;
    --ww-problem-bg: #FDF2F2;
    --ww-problem-border: #FECACA;
    --ww-solution-bg: #ECFDF5;
    --ww-solution-border: #A7F3D0;

    /* Text Colors */
    --ww-text-dark: #1F2F5C;
    --ww-text-body: #444444;
    --ww-text-muted: #888888;
    --ww-text-light: #FFFFFF;

    /* Shadows */
    --ww-shadow-sm: 0 2px 8px rgba(31, 47, 92, 0.06);
    --ww-shadow-md: 0 4px 20px rgba(31, 47, 92, 0.10);
    --ww-shadow-lg: 0 8px 40px rgba(31, 47, 92, 0.15);
    --ww-shadow-card: 0 4px 24px rgba(31, 47, 92, 0.08);

    /* Border Radius */
    --ww-radius-sm: 4px;
    --ww-radius-md: 8px;
    --ww-radius-lg: 12px;
    --ww-radius-xl: 16px;
    --ww-radius-2xl: 24px;
    --ww-radius-full: 50px;

    /* Transitions */
    --ww-transition: 0.3s ease;
    --ww-transition-fast: 0.2s ease;

    /* Typography */
    --ww-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ww-font-family);
    background: var(--ww-bg-light);
    color: var(--ww-text-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.ww-heading-1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ww-text-dark);
    letter-spacing: -0.02em;
}

.ww-heading-2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ww-text-dark);
    letter-spacing: -0.01em;
}

.ww-heading-3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ww-text-dark);
}

.ww-heading-4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ww-text-dark);
}

.ww-text-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ww-text-body);
}

.ww-text-small {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--ww-text-muted);
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.ww-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ww-section {
    padding: 100px 0;
}

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

.ww-section-header .ww-heading-2 {
    margin-bottom: 16px;
}

.ww-section-header p {
    color: var(--ww-text-muted);
    font-size: 1.125rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.ww-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--ww-radius-md);
    transition: all var(--ww-transition-fast);
    cursor: pointer;
}

.ww-btn-primary {
    background: var(--ww-accent);
    color: var(--ww-text-dark);
    box-shadow: 0 4px 14px rgba(216, 181, 96, 0.35);
}

.ww-btn-primary:hover {
    background: var(--ww-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 181, 96, 0.45);
}

.ww-btn-secondary {
    background: transparent;
    color: var(--ww-text-dark);
    border: 2px solid var(--ww-primary);
}

.ww-btn-secondary:hover {
    background: var(--ww-primary);
    color: var(--ww-text-light);
}

.ww-btn-white {
    background: var(--ww-bg-white);
    color: var(--ww-primary);
    box-shadow: var(--ww-shadow-md);
}

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

.ww-btn-dark {
    background: var(--ww-primary);
    color: var(--ww-text-light);
}

.ww-btn-dark:hover {
    background: var(--ww-primary-dark);
    transform: translateY(-2px);
}

.ww-btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.ww-btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.ww-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--ww-transition);
}

.ww-nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(31, 47, 92, 0.08);
    padding: 14px 5%;
}

.ww-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ww-nav__logo-icon {
    width: 36px;
    height: 36px;
}

.ww-nav__logo-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ww-primary);
}

.ww-nav__logo-text span {
    color: var(--ww-accent);
}

.ww-nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ww-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ww-nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ww-text-body);
    position: relative;
}

.ww-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ww-secondary);
    transition: var(--ww-transition-fast);
}

.ww-nav__link:hover {
    color: var(--ww-primary);
}

.ww-nav__link:hover::after {
    width: 100%;
}

.ww-nav__cta {
    background: var(--ww-accent);
    color: var(--ww-text-dark);
    padding: 10px 24px;
    border-radius: var(--ww-radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--ww-transition-fast);
}

.ww-nav__cta:hover {
    background: var(--ww-accent-dark);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.ww-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    cursor: pointer;
}

.ww-nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--ww-primary);
    border-radius: 2px;
    transition: var(--ww-transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.ww-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F4F8 40%, #E8EFF6 100%);
    position: relative;
    overflow: hidden;
}

/* Soft gradient orbs for depth */
.ww-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216, 181, 96, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* Decorative gradient orb */
.ww-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(31, 199, 147, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ww-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.ww-hero__content {
    max-width: 560px;
}

.ww-hero__title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--ww-primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.ww-hero__subtitle {
    font-size: 1.25rem;
    color: var(--ww-text-body);
    line-height: 1.6;
    margin-bottom: 32px;
}

.ww-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.ww-hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--ww-text-body);
}

.ww-hero__badge-icon {
    width: 20px;
    height: 20px;
    color: var(--ww-secondary);
}

.ww-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ww-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ww-hero__phone {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(31, 47, 92, 0.2));
    animation: float 6s ease-in-out infinite;
}

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

/* Floating financial data boxes (hidden on desktop, shown on mobile) */
.ww-hero__floats {
    display: none;
}

.ww-hero__float {
    background: var(--ww-bg-white);
    border-radius: var(--ww-radius-md);
    padding: 10px 14px;
    box-shadow: 0 4px 20px rgba(31, 47, 92, 0.12);
    position: absolute;
    z-index: 10;
}

.ww-hero__float-label {
    display: block;
    font-size: 0.625rem;
    color: var(--ww-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ww-hero__float-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ww-primary);
}

.ww-hero__float-change {
    display: block;
    font-size: 0.75rem;
    color: var(--ww-secondary);
    font-weight: 500;
}

.ww-hero__float-percent {
    color: var(--ww-secondary);
}

.ww-hero__float-ticker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ww-primary);
}

.ww-hero__float-price {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ww-text-dark);
}

.ww-hero__float-gain {
    display: block;
    font-size: 0.6875rem;
    color: var(--ww-secondary);
    font-weight: 500;
}


/* ========================================
   PROBLEM/SOLUTION SECTION
   ======================================== */
.ww-problem-solution {
    padding: 100px 5%;
    background: var(--ww-bg-white);
}

.ww-problem-solution__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.ww-problem-solution__header h2 {
    margin-bottom: 12px;
}

.ww-problem-solution__header p {
    color: var(--ww-text-muted);
    font-size: 1.125rem;
}

.ww-problem-solution__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ww-problem-card,
.ww-solution-card {
    padding: 40px;
    border-radius: var(--ww-radius-xl);
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.ww-problem-card {
    background: var(--ww-problem-bg);
    border: 1px solid var(--ww-problem-border);
}

.ww-solution-card {
    background: var(--ww-solution-bg);
    border: 1px solid var(--ww-solution-border);
}

.ww-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--ww-text-dark);
}

.ww-problem-card .ww-card__title {
    color: #991B1B;
}

.ww-solution-card .ww-card__title {
    color: #065F46;
}

.ww-card__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.ww-card__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ww-card__item-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    object-fit: contain;
}

.ww-card__item-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--ww-text-dark);
}

.ww-card__item-content p {
    font-size: 0.8125rem;
    color: var(--ww-text-muted);
    line-height: 1.45;
}

/* Floating images on the right */
.ww-card__image {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    z-index: 1;
}

.ww-card__image img {
    width: 100%;
    border-radius: var(--ww-radius-md);
    box-shadow: var(--ww-shadow-lg);
}

/* Problem card - messy overlapping screenshots */
.ww-problem-card .ww-card__image {
    right: -25px;
    top: 50%;
    width: 220px;
}

.ww-problem-card .ww-card__image img {
    opacity: 0.9;
}

/* Solution card - clean floating app screenshot */
.ww-solution-card .ww-card__image {
    right: -20px;
    top: 50%;
    width: 200px;
}

.ww-solution-card .ww-card__image img {
    box-shadow: 0 15px 40px rgba(31, 199, 147, 0.2);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.ww-features {
    padding: 100px 5%;
    background: var(--ww-bg-light);
    position: relative;
}

.ww-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(31, 199, 147, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(216, 181, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ww-features__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.ww-features__header h2 {
    margin-bottom: 12px;
}

.ww-features__header p {
    color: var(--ww-text-muted);
    font-size: 1.125rem;
}

.ww-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ww-feature-card {
    background: var(--ww-bg-white);
    border-radius: var(--ww-radius-xl);
    padding: 32px;
    padding-bottom: 0;
    box-shadow: var(--ww-shadow-card);
    transition: all var(--ww-transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.ww-feature-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    object-fit: contain;
}

.ww-feature-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ww-text-dark);
    margin-bottom: 12px;
}

.ww-feature-card__description {
    font-size: 0.9375rem;
    color: var(--ww-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ww-feature-card__image {
    margin: 0 -32px;
    padding: 20px 20px 0;
    border-radius: var(--ww-radius-lg) var(--ww-radius-lg) 0 0;
    overflow: hidden;
    height: 300px;
    position: relative;
    margin-top: auto;
    flex-shrink: 0;
}

.ww-feature-card__image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: var(--ww-radius-md) var(--ww-radius-md) 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* Colored backgrounds for each feature card */
.ww-feature-card:nth-child(1) .ww-feature-card__image {
    background: linear-gradient(180deg, #1F2F5C 0%, #162040 100%);
}

.ww-feature-card:nth-child(2) .ww-feature-card__image {
    background: linear-gradient(180deg, #D1E9F0 0%, #B8DDE8 100%);
}

.ww-feature-card:nth-child(3) .ww-feature-card__image {
    background: linear-gradient(180deg, #D8B560 0%, #C9A44D 100%);
}

.ww-feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ww-secondary);
    margin-bottom: 20px;
}

.ww-feature-card__link:hover {
    color: var(--ww-secondary-dark);
    gap: 10px;
}

.ww-feature-card__link--gold {
    color: var(--ww-accent-dark);
}

.ww-feature-card__link--gold:hover {
    color: var(--ww-accent);
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */
.ww-social-proof {
    padding: 100px 5%;
    background: var(--ww-bg-white);
}

.ww-social-proof__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.ww-social-proof__header h2 {
    margin-bottom: 12px;
}

.ww-social-proof__header p {
    color: var(--ww-text-muted);
    font-size: 1.125rem;
}

.ww-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.ww-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ww-stat__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ww-stat__icon--green {
    background: rgba(31, 199, 147, 0.15);
    color: var(--ww-secondary);
}

.ww-stat__icon--gold {
    background: rgba(216, 181, 96, 0.15);
    color: var(--ww-accent-dark);
}

.ww-stat__icon svg {
    width: 24px;
    height: 24px;
}

.ww-stat__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ww-text-dark);
    line-height: 1.2;
}

.ww-stat__content p {
    font-size: 0.875rem;
    color: var(--ww-text-muted);
}

.ww-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.ww-testimonial {
    background: var(--ww-bg-light);
    border-radius: var(--ww-radius-xl);
    padding: 32px;
    transition: var(--ww-transition);
}

.ww-testimonial:hover {
    box-shadow: var(--ww-shadow-md);
}

.ww-testimonial__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ww-testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ww-primary);
    color: var(--ww-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.ww-testimonial__info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ww-text-dark);
}

.ww-testimonial__info p {
    font-size: 0.875rem;
    color: var(--ww-text-muted);
}

.ww-testimonial__rating {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.ww-testimonial__rating svg {
    width: 18px;
    height: 18px;
    color: var(--ww-accent);
    fill: var(--ww-accent);
}

.ww-testimonial__quote {
    font-size: 0.9375rem;
    color: var(--ww-text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ww-testimonial__location {
    font-size: 0.8125rem;
    color: var(--ww-text-muted);
}

.ww-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(31, 47, 92, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.ww-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--ww-text-muted);
}

.ww-trust-badge svg {
    width: 24px;
    height: 24px;
    color: var(--ww-primary);
    opacity: 0.6;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.ww-how-it-works {
    padding: 100px 5%;
    background: var(--ww-bg-light);
    position: relative;
    overflow: hidden;
}

.ww-how-it-works__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.ww-how-it-works__header h2 {
    margin-bottom: 12px;
}

.ww-how-it-works__header p {
    color: var(--ww-text-muted);
    font-size: 1.125rem;
}

.ww-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.ww-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
}

.ww-step__number {
    width: 48px;
    height: 48px;
    background: var(--ww-accent);
    color: var(--ww-text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: 0 4px 15px rgba(216, 181, 96, 0.4);
}

.ww-step__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ww-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.ww-step__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ww-text-dark);
    margin-bottom: 12px;
}

.ww-step__description {
    font-size: 0.9375rem;
    color: var(--ww-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.ww-step__image {
    position: relative;
}

.ww-step__image img {
    max-width: 240px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(31, 47, 92, 0.15));
}

/* Arrows between steps */
.ww-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: var(--ww-accent);
    flex-shrink: 0;
    align-self: center;
}

.ww-step-arrow svg {
    width: 40px;
    height: 40px;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.ww-pricing {
    padding: 100px 5%;
    background: var(--ww-bg-white);
}

.ww-pricing__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.ww-pricing__header h2 {
    margin-bottom: 12px;
}

.ww-pricing__header p {
    color: var(--ww-text-muted);
    font-size: 1.125rem;
}

.ww-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 80px;
    align-items: stretch;
}

.ww-pricing-card {
    background: var(--ww-bg-white);
    border: 1px solid rgba(31, 47, 92, 0.1);
    border-radius: var(--ww-radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: var(--ww-transition);
    display: flex;
    flex-direction: column;
}

.ww-pricing-card:hover {
    box-shadow: var(--ww-shadow-lg);
}

.ww-pricing-card--featured {
    border: 2px solid var(--ww-accent);
    transform: scale(1.05);
    box-shadow: var(--ww-shadow-lg);
}

.ww-pricing-card--featured:hover {
    transform: scale(1.07);
}

.ww-pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ww-primary);
    color: var(--ww-text-light);
    padding: 6px 20px;
    border-radius: var(--ww-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.ww-pricing-card__tier {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ww-text-muted);
    margin-bottom: 8px;
}

.ww-pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ww-text-dark);
    margin-bottom: 4px;
}

.ww-pricing-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ww-text-muted);
}

.ww-pricing-card__subtitle {
    font-size: 0.875rem;
    color: var(--ww-text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(31, 47, 92, 0.1);
}

.ww-pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.ww-pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--ww-text-body);
}

.ww-pricing-card__feature svg {
    width: 20px;
    height: 20px;
    color: var(--ww-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ww-pricing-card__cta {
    width: 100%;
    margin-top: auto;
}

/* Final CTA */
.ww-pricing__cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 1px solid rgba(31, 47, 92, 0.1);
}

.ww-pricing__cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ww-text-dark);
    margin-bottom: 12px;
}

.ww-pricing__cta p {
    color: var(--ww-text-muted);
    margin-bottom: 24px;
}

.ww-pricing__cta-note {
    font-size: 0.875rem;
    color: var(--ww-text-muted);
    margin-top: 16px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.ww-faq {
    padding: 100px 5%;
    background: var(--ww-bg-light);
}

.ww-faq__header {
    text-align: center;
    margin-bottom: 60px;
}

.ww-faq__header p {
    color: var(--ww-text-muted);
    font-size: 1.125rem;
    margin-top: 16px;
}

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

.ww-faq__item {
    background: var(--ww-bg-white);
    border-radius: var(--ww-radius-lg);
    overflow: hidden;
    box-shadow: var(--ww-shadow-card);
}

.ww-faq__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ww-text-dark);
    text-align: left;
    gap: 16px;
    transition: background var(--ww-transition);
}

.ww-faq__question:hover {
    background: rgba(31, 47, 92, 0.03);
}

.ww-faq__icon {
    width: 20px;
    height: 20px;
    color: var(--ww-accent);
    transition: transform var(--ww-transition);
    flex-shrink: 0;
}

.ww-faq__item.active .ww-faq__icon {
    transform: rotate(180deg);
}

.ww-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ww-faq__item.active .ww-faq__answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.ww-faq__answer p {
    font-size: 0.875rem;
    color: var(--ww-text-muted);
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.ww-footer {
    background: var(--ww-primary);
    color: var(--ww-text-light);
    padding: 80px 5% 40px;
}

.ww-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.ww-footer__brand {
    max-width: 280px;
}

.ww-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ww-footer__logo-icon {
    width: 36px;
    height: 36px;
}

.ww-footer__logo-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ww-text-light);
}

.ww-footer__logo-text span {
    color: var(--ww-secondary);
}

.ww-footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.ww-footer__social {
    display: flex;
    gap: 16px;
}

.ww-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ww-text-light);
    transition: var(--ww-transition-fast);
}

.ww-footer__social-link:hover {
    background: var(--ww-secondary);
    transform: translateY(-3px);
}

.ww-footer__social-link svg {
    width: 18px;
    height: 18px;
}

.ww-footer__column h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ww-text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ww-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ww-footer__link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--ww-transition-fast);
}

.ww-footer__link:hover {
    color: var(--ww-text-light);
    padding-left: 5px;
}

.ww-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.ww-footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .ww-heading-1,
    .ww-hero__title {
        font-size: 2.5rem;
    }

    .ww-heading-2 {
        font-size: 2rem;
    }

    .ww-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .ww-hero__content {
        max-width: 100%;
    }

    .ww-hero__badges {
        justify-content: center;
    }

    .ww-hero__buttons {
        justify-content: center;
    }

    .ww-hero__phone {
        max-width: 300px;
    }

    .ww-problem-solution__grid {
        grid-template-columns: 1fr;
    }

    .ww-problem-card,
    .ww-solution-card {
        min-height: auto;
        padding-bottom: 60px;
    }

    .ww-card__list {
        max-width: 100%;
    }

    .ww-card__image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 200px;
        margin: 30px auto 0;
    }

    .ww-problem-card .ww-card__image,
    .ww-solution-card .ww-card__image {
        right: auto;
        top: auto;
        width: 200px;
    }

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

    .ww-testimonials {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .ww-stats {
        gap: 40px;
    }

    .ww-steps {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .ww-step {
        max-width: 400px;
    }

    .ww-step-arrow {
        display: none;
    }

    .ww-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .ww-pricing-card--featured {
        transform: none;
    }

    .ww-pricing-card--featured:hover {
        transform: translateY(-5px);
    }

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

    .ww-footer__brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .ww-footer__social {
        justify-content: center;
    }

    .ww-faq__grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .ww-section {
        padding: 60px 0;
    }

    .ww-nav__menu {
        display: none;
    }

    .ww-nav__toggle {
        display: flex;
    }

    .ww-heading-1,
    .ww-hero__title {
        font-size: 2rem;
    }

    .ww-heading-2 {
        font-size: 1.75rem;
    }

    .ww-hero {
        padding: 80px 5% 40px;
        min-height: auto;
        background: linear-gradient(180deg, #FFFFFF 0%, #F5F8FB 100%);
    }

    .ww-hero::before {
        top: -30%;
        left: -30%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(216, 181, 96, 0.15) 0%, transparent 70%);
    }

    .ww-hero::after {
        bottom: 10%;
        right: -20%;
        width: 250px;
        height: 250px;
    }

    .ww-hero__container {
        gap: 30px;
    }

    .ww-hero__title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .ww-hero__subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .ww-hero__badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
        margin-bottom: 24px;
    }

    .ww-hero__badge {
        font-size: 0.75rem;
        gap: 6px;
    }

    .ww-hero__badge-icon {
        width: 16px;
        height: 16px;
    }

    .ww-hero__buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .ww-hero__buttons .ww-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .ww-hero__image {
        order: -1;
        margin-bottom: 0;
        position: relative;
        height: 220px;
        overflow: hidden;
        margin-top: -10px;
    }

    .ww-hero__image::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(180deg, rgba(245, 248, 251, 0) 0%, #F5F8FB 100%);
        z-index: 5;
        pointer-events: none;
    }

    .ww-hero__phone {
        max-width: 200px;
        filter: drop-shadow(0 20px 40px rgba(31, 47, 92, 0.15));
        animation: none;
        margin-top: 20px;
    }

    .ww-hero__buttons .ww-btn-primary {
        background: var(--ww-primary);
        color: var(--ww-accent);
        box-shadow: 0 4px 14px rgba(31, 47, 92, 0.25);
    }

    .ww-hero__buttons .ww-btn-primary:hover {
        background: var(--ww-primary-dark);
    }

    .ww-hero__floats {
        display: block;
        position: absolute;
        top: 0;
        left: -10%;
        right: -10%;
        bottom: 0;
        pointer-events: none;
        z-index: 6;
    }

    .ww-hero__float--portfolio {
        top: 20px;
        right: 0;
        animation: floatBox 4s ease-in-out infinite;
    }

    .ww-hero__float--stock {
        top: 50%;
        left: 0;
        animation: floatBox 4.5s ease-in-out infinite 0.5s;
    }

    .ww-hero__float--stock2 {
        bottom: 10px;
        right: 0;
        animation: floatBox 5s ease-in-out infinite 1s;
    }

    @keyframes floatBox {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    .ww-problem-card,
    .ww-solution-card {
        padding: 24px;
    }

    .ww-features__grid {
        grid-template-columns: 1fr;
    }

    .ww-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
        margin: 0 auto 60px;
    }

    .ww-stat {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .ww-stat__icon {
        margin: 0 auto;
    }

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

    .ww-stat__content h3 {
        font-size: 1.5rem;
    }

    .ww-stat__content p {
        font-size: 0.75rem;
    }

    .ww-trust-badges {
        flex-direction: column;
        gap: 20px;
    }

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

    .ww-footer__brand {
        grid-column: span 1;
    }

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