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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #f8fafc;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.025em;
}

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

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #0f172a;
}

.cta-button-header {
    background: #6366f1;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button-header:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.hero-left {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #4f46e5;
    font-weight: 500;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-primary {
    background: #6366f1;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.cta-secondary {
    background: transparent;
    border: none;
    color: #64748b;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.cta-secondary:hover {
    background: rgba(99, 102, 241, 0.05);
    color: #4f46e5;
}

.play-icon {
    width: 20px;
    height: 20px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Hero Visual */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.phone-mockup {
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 36px;
    padding: 6px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.phone-screen {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-radius: 30px;
    padding: 20px 16px;
    color: white;
    min-height: 580px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    padding-top: 16px;
}

.phone-notch {
    width: 140px;
    height: 28px;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 14px;
    position: absolute;
    top: -8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
}

.phone-title {
    font-weight: 700;
    font-size: 16px;
    color: #e2e8f0;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.card-display {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border-radius: 20px;
    padding: 28px 24px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.card-display::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.card-number {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: 'Inter', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.card-holder {
    font-size: 13px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.transactions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transaction {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.transaction:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.transaction-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-icon.apple {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.transaction-icon.spotify {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
}

.transaction-icon.grocery {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.transaction-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-name {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 15px;
}

.transaction-amount {
    font-weight: 700;
    color: #6366f1;
    font-size: 16px;
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card.balance {
    top: 15%;
    right: -30px;
    animation: float 6s ease-in-out infinite;
    transform: rotate(-5deg);
}

.floating-card:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.card-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.card-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-tooltip {
    position: absolute;
    bottom: 8%;
    left: -50px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
    animation: float 6s ease-in-out infinite 2s;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transform: rotate(2deg);
}

.floating-tooltip:hover {
    transform: rotate(0deg) scale(1.05);
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1e293b;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.trusted-text {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
    font-weight: 500;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 16px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Product Preview Section */
.product-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    position: relative;
    overflow: hidden;
}

.preview-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.preview-header .section-title {
    color: #1e293b;
    margin-bottom: 16px;
}

.preview-header .section-subtitle {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.preview-gallery {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.preview-main {
    margin-bottom: 32px;
}

.preview-image-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.preview-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}


.preview-thumbnails {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 8px;
    border: 2px solid transparent;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.thumbnail-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.preview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-content h4 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight-content p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.features-grid .feature-card.wide {
    grid-column: span 1;
}

.features-grid .feature-card:nth-child(4) {
    grid-column: span 2;
}

.features-grid .feature-card:nth-child(5) {
    grid-column: span 1;
}

.feature-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.feature-content {
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

/* Chart Components */
.chart-container {
    position: relative;
}

.chart-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #6366f1 0deg 245deg, #e2e8f0 245deg 360deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-circle::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 50%;
}

.chart-value {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    z-index: 1;
}

.chart-label {
    font-size: 12px;
    color: #64748b;
    z-index: 1;
}

.line-chart {
    width: 200px;
    height: 100px;
}

.budget-chart {
    position: relative;
}

.budget-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #6366f1 0deg 245deg, #e2e8f0 245deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.budget-ring::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 50%;
}

.budget-percentage {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    z-index: 1;
}

.sync-animation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-bars {
    width: 120px;
    height: 60px;
    background: linear-gradient(90deg, 
        #e2e8f0 0%, #e2e8f0 20%,
        #6366f1 20%, #6366f1 40%,
        #e2e8f0 40%, #e2e8f0 60%,
        #6366f1 60%, #6366f1 80%,
        #e2e8f0 80%, #e2e8f0 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.sync-bars::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: sync-sweep 2s infinite;
}

@keyframes sync-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.growth-score {
    position: relative;
}

.score-arc {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #6366f1 0deg 209deg, #e2e8f0 209deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-arc::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 50%;
}

.score-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    z-index: 1;
}

/* Target Audience */
.target-audience {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236366f1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.audience-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.audience-card.perfect {
    border-top: 6px solid #10b981;
}

.audience-card.not-for {
    border-top: 6px solid #ef4444;
}

.card-header {
    padding: 32px 32px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.perfect-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.not-for-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.card-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.card-content {
    padding: 0 32px;
}

.benefit-item,
.warning-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.benefit-item:last-child,
.warning-item:last-child {
    border-bottom: none;
}

.benefit-item:hover,
.warning-item:hover {
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e2e8f0;
    border-radius: 12px;
}

.benefit-icon,
.warning-icon {
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Accents for icons inside each card type */
.audience-card.perfect .benefit-icon { color: #10b981; }
.audience-card.not-for .warning-icon { color: #ef4444; }

.benefit-text,
.warning-text {
    flex: 1;
}

.benefit-text strong,
.warning-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.3;
}

.benefit-text span,
.warning-text span {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    font-weight: 500;
}

.card-footer {
    padding: 24px 32px 32px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.success-indicator,
.warning-indicator {
    text-align: center;
    padding: 16px 20px;
    border-radius: 16px;
    font-weight: 600;
}

.success-indicator {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.warning-indicator {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.success-indicator .indicator-text {
    color: #059669;
    font-size: 16px;
}

.warning-indicator .indicator-text {
    color: #dc2626;
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #6366f1;
    opacity: 0.3;
    font-family: serif;
}

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

.testimonial-content p {
    font-style: italic;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.author-info h4 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-rating {
    font-size: 1.1rem;
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
    justify-content: center;
}

.guarantee-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guarantee-text p {
    font-size: 1rem;
    opacity: 0.9;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.faq-question i {
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #64748b;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    color: #0f172a;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #6366f1;
}

.price-note {
    color: #64748b;
    font-size: 0.9rem;
}

.price-features {
    margin-bottom: 30px;
}

.feature {
    padding: 8px 0;
    text-align: left;
    color: #0f172a;
}

.cta-button-final {
    width: 100%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta-button-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.9rem;
    color: #64748b;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0f172a;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(15, 23, 42, 0.1);
}

/* Responsive Design */
/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid .feature-card:nth-child(4) {
        grid-column: span 1;
    }
    
    .phone-mockup {
        max-width: 350px;
    }
    
    .floating-card.balance {
        right: -20px;
    }
    
    .floating-tooltip {
        left: -40px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(248, 250, 252, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        z-index: 1000;
    }
    
    .nav.mobile-open {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .cta-button-header {
        margin-top: 16px;
        text-align: center;
        display: block;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-left {
        max-width: 100%;
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 18px;
        max-width: 100%;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .phone-mockup {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .floating-card.balance {
        top: 10%;
        right: -15px;
        transform: rotate(-3deg) scale(0.9);
    }
    
    .floating-tooltip {
        bottom: 5%;
        left: -30px;
        transform: rotate(1deg) scale(0.9);
    }
    
    .trusted-by {
        padding: 40px 0;
    }
    
    .logos-grid {
        gap: 24px;
        justify-content: center;
    }
    
    .logo-item {
        font-size: 14px;
    }
    
    .product-preview {
        padding: 80px 0;
    }
    
    .preview-thumbnails {
        gap: 12px;
    }
    
    .thumbnail-item {
        width: 100px;
    }
    
    .thumbnail-item img {
        height: 60px;
    }
    
    .preview-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid .feature-card.wide,
    .features-grid .feature-card:nth-child(4),
    .features-grid .feature-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .feature-card {
        min-height: 240px;
        padding: 24px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .target-audience {
        padding: 80px 0;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
    }
    
    .trust-indicators {
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .trust-number {
        font-size: 28px;
    }
    
    .guarantee {
        padding: 50px 0;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .guarantee-icon {
        font-size: 2.5rem;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Large mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero {
        padding: 90px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 6px 14px;
        margin-bottom: 24px;
    }
    
    .cta-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .phone-mockup {
        max-width: 280px;
    }
    
    .phone-screen {
        padding: 16px 12px;
        min-height: 480px;
    }
    
    .card-display {
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .card-number {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .transaction {
        padding: 12px 16px;
    }
    
    .transaction-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .transaction-name {
        font-size: 14px;
    }
    
    .transaction-amount {
        font-size: 14px;
        padding: 3px 10px;
    }
    
    .floating-card.balance {
        padding: 16px;
        right: -10px;
        transform: rotate(-2deg) scale(0.8);
    }
    
    .card-value {
        font-size: 20px;
    }
    
    .card-label {
        font-size: 12px;
    }
    
    .floating-tooltip {
        padding: 12px 16px;
        font-size: 12px;
        left: -20px;
        transform: rotate(1deg) scale(0.8);
    }
    
    .trusted-by {
        padding: 32px 0;
    }
    
    .logos-grid {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .logo-item {
        font-size: 12px;
        flex: 1 1 auto;
        min-width: 80px;
        text-align: center;
    }
    
    .product-preview {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .preview-thumbnails {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail-item {
        width: 80px;
        padding: 6px;
    }
    
    .thumbnail-item img {
        height: 50px;
    }
    
    .feature-highlight {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .highlight-icon {
        font-size: 28px;
    }
    
    .highlight-content h4 {
        font-size: 16px;
    }
    
    .highlight-content p {
        font-size: 13px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 20px;
        min-height: 200px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .feature-visual {
        height: 80px;
    }
    
    .chart-circle,
    .budget-ring {
        width: 60px;
        height: 60px;
    }
    
    .chart-circle::before,
    .budget-ring::before {
        width: 40px;
        height: 40px;
    }
    
    .chart-value,
    .budget-percentage {
        font-size: 14px;
    }
    
    .chart-label {
        font-size: 10px;
    }
    
    .score-arc {
        width: 60px;
        height: 60px;
    }
    
    .score-arc::before {
        width: 40px;
        height: 40px;
    }
    
    .score-value {
        font-size: 18px;
    }
    
    .sync-bars {
        width: 80px;
        height: 40px;
    }
    
    .target-audience {
        padding: 60px 0;
    }
    
    .audience-card {
        padding: 24px 20px;
    }
    
    .card-header {
        padding: 24px 20px 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .card-content {
        padding: 0 20px;
    }
    
    .benefit-item,
    .warning-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .benefit-icon,
    .warning-icon {
        font-size: 20px;
        margin-top: 0;
    }
    
    .card-footer {
        padding: 20px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .trust-indicators {
        gap: 24px;
        margin-top: 32px;
    }
    
    .trust-number {
        font-size: 24px;
    }
    
    .trust-label {
        font-size: 12px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-quote {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .testimonial-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .author-info h4 {
        font-size: 15px;
    }
    
    .author-info span {
        font-size: 13px;
    }
    
    .author-platform {
        font-size: 11px;
    }
    
    .testimonial-rating {
        align-self: flex-end;
    }
    
    .guarantee {
        padding: 40px 0;
    }
    
    .guarantee-text h3 {
        font-size: 1.3rem;
    }
    
    .guarantee-text p {
        font-size: 0.9rem;
    }
    
    .faq {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .final-cta {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.3rem;
    }
    
    .feature {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .cta-button-final {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 32px 0;
    }
    
    .footer-info p {
        font-size: 14px;
    }
    
    .footer-link {
        font-size: 14px;
    }
}

/* Small mobile phones */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .phone-mockup {
        max-width: 250px;
    }
    
    .floating-card.balance,
    .floating-tooltip {
        display: none;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .logo-item {
        font-size: 11px;
        min-width: auto;
    }
    
    .preview-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .thumbnail-item {
        width: auto;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .testimonial-author {
        align-items: center;
        text-align: center;
    }
    
    .testimonial-rating {
        align-self: center;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

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

.cta-button-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    margin-bottom: 16px;
}

.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.cta-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-top: 12px;
}

.hero-video {
    position: relative;
}

.video-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9ff, #e3f2fd);
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #e3f2fd, #f8f9ff);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-placeholder span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Video Demo Section */
.video-demo {
    padding: 80px 0;
    background: #f8f9ff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-embed {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-placeholder-large {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 40px;
    text-align: center;
}

.video-placeholder-large:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
}

.video-placeholder-large i {
    font-size: 5rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.video-placeholder-large h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.video-placeholder-large p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.play-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    color: #007bff;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.module-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
}

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

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.module-icon i {
    font-size: 1.5rem;
    color: white;
}

.module-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.module-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 24px;
}

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

.bonus-section {
    background: linear-gradient(135deg, #f8f9ff, #e3f2fd);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bonus-item i {
    color: #007bff;
    font-size: 1.2rem;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: #f8f9ff;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-card.perfect {
    border-left: 4px solid #28a745;
}

.audience-card.not-for {
    border-left: 4px solid #dc3545;
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.audience-card ul {
    list-style: none;
}

.audience-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 24px;
}

.perfect li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.not-for li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

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

.testimonials-header .section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-top: 16px;
    font-weight: 500;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 32px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    transform: scale(1.05);
}

.testimonial-card.featured .testimonial-content p {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-card.featured .author-info h4 {
    color: white;
}

.testimonial-card.featured .author-info span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card.featured .author-platform {
    color: rgba(255, 255, 255, 0.9) !important;
}

.testimonial-quote {
    font-size: 48px;
    color: #6366f1;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonial-card.featured .testimonial-quote {
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin: 0;
}

.testimonial-content strong {
    color: #6366f1;
    font-weight: 700;
}

.testimonial-card.featured .testimonial-content strong {
    color: #fbbf24;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    margin: 0 0 4px 0;
    color: #1e293b;
    font-weight: 700;
    font-size: 16px;
}

.author-info span {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.author-platform {
    font-size: 12px;
    color: #6366f1;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    font-size: 16px;
    line-height: 1;
}

.rating-text {
    font-size: 14px;
    font-weight: 700;
    color: #6366f1;
}

.testimonial-card.featured .rating-text {
    color: #fbbf24;
}

.testimonial-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.social-proof p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

.social-proof strong {
    color: #1e293b;
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
    justify-content: center;
}

.guarantee-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guarantee-text p {
    font-size: 1rem;
    opacity: 0.9;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9ff;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.faq-question:hover {
    background: #f8f9ff;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-question i {
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    color: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #007bff;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

.price-features {
    margin-bottom: 30px;
}

.feature {
    padding: 8px 0;
    text-align: left;
    color: #333;
}

.cta-button-final {
    width: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta-button-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
