/**
 * Landing Page Styles
 * Main landing page for Russian and English versions
 *
 * @package InvestHub
 * @since 1.1.0
 */

/* ==========================================================================
   Base Reset & Variables
   ========================================================================== */

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

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a24;
    --bg-card: #16161f;
    --accent: #a855f7;
    --accent-glow: rgba(168, 85, 247, 0.3);
    --success: #22c55e;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255,255,255,0.1);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Override WordPress default heading colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
}


/* ==========================================================================
   Ambient Effects
   ========================================================================== */

/* Global ambient glow effects - Enhanced like AI Revolution */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.25), transparent),
        radial-gradient(ellipse 60% 40% at 80% 40%, rgba(6, 182, 212, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 20% 60%, rgba(16, 185, 129, 0.1), transparent),
        radial-gradient(ellipse 70% 50% at 10% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Floating Particles Animation */
.ih-particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ih-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(168, 85, 247, 0.5);
    border-radius: 50%;
    animation: ih-float-up 20s infinite linear;
}

.ih-particle:nth-child(2) { left: 10%; animation-delay: -2s; background: rgba(6, 182, 212, 0.4); }
.ih-particle:nth-child(3) { left: 20%; animation-delay: -4s; }
.ih-particle:nth-child(4) { left: 30%; animation-delay: -6s; background: rgba(236, 72, 153, 0.4); }
.ih-particle:nth-child(5) { left: 40%; animation-delay: -8s; }
.ih-particle:nth-child(6) { left: 50%; animation-delay: -10s; background: rgba(6, 182, 212, 0.4); }
.ih-particle:nth-child(7) { left: 60%; animation-delay: -12s; }
.ih-particle:nth-child(8) { left: 70%; animation-delay: -14s; background: rgba(16, 185, 129, 0.4); }
.ih-particle:nth-child(9) { left: 80%; animation-delay: -16s; }
.ih-particle:nth-child(10) { left: 90%; animation-delay: -18s; background: rgba(236, 72, 153, 0.4); }

@keyframes ih-float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 0.7;
        transform: translateY(90vh) scale(1);
    }
    95% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Animated floating orbs */
.ih-ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.ih-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(168, 85, 247, 0.15);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.ih-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.1);
    bottom: 20%;
    left: -5%;
    animation-delay: -7s;
}

.ih-orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.08);
    top: 50%;
    right: -15%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

/* NOTE: Header, Navigation, Mobile Menu, and Dropdown styles are now
   centralized in common.css - DO NOT add duplicate styles here */


/* ==========================================================================
   Hero Section
   ========================================================================== */

.ih-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 1;
}

.ih-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ih-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #a78bfa;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Pulse dot for badge */
.ih-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: ih-pulse 2s infinite;
}

@keyframes ih-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.ih-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ih-hero h1 span {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ih-hero-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

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

.ih-btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.ih-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

.ih-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.ih-btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--accent);
}

.ih-price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 32px;
    padding: 16px 24px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: fit-content;
}

.ih-price-tag .price {
    font-size: 40px;
    font-weight: 800;
    color: var(--success);
}

.ih-price-tag .period {
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 4px;
}

.ih-price-tag .note {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 16px;
}


/* ==========================================================================
   Hero Visual - Chat Mockup
   ========================================================================== */

.ih-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ih-chat-mockup {
    width: 380px;
    background: rgba(26, 26, 36, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 50px 100px rgba(0,0,0,0.5),
        0 0 60px rgba(139, 92, 246, 0.1);
}

.ih-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.ih-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ih-chat-name {
    font-weight: 600;
    font-size: 15px;
}

.ih-chat-status {
    font-size: 12px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ih-chat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

.ih-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ih-chat-msg {
    max-width: 90%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
    animation: msgFadeIn 0.5s ease-out;
}

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

.ih-chat-msg.bot {
    background: #252532;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.ih-chat-msg.user {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.ih-chat-msg-icon {
    font-size: 14px;
    margin-right: 6px;
}

.ih-chat-msg-ticker {
    font-weight: 700;
    color: #fff;
}

.ih-chat-msg-details {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    margin-top: 4px;
}

.ih-chat-msg-profit {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    margin-top: 8px;
}

.ih-chat-msg-time {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
    text-align: right;
}


/* ==========================================================================
   Stats Section
   ========================================================================== */

.ih-stats {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.ih-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ih-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 100%;
    overflow: hidden;
}

.ih-stat-item {
    text-align: center;
    padding: 32px;
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.ih-stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.15);
}

.ih-stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.ih-stat-label {
    font-size: 14px;
    color: #9ca3af;
}


/* ==========================================================================
   Loyalty Section
   ========================================================================== */

.ih-loyalty {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.ih-loyalty-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ih-loyalty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.ih-loyalty-icon {
    font-size: 18px;
}

.ih-loyalty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.ih-loyalty-card {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ih-loyalty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4, #10b981);
    opacity: 0;
    transition: opacity 0.3s;
}

.ih-loyalty-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 24px 48px rgba(139, 92, 246, 0.2);
}

.ih-loyalty-card:hover::before {
    opacity: 1;
}

.ih-loyalty-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--accent);
}

.ih-loyalty-card-icon svg {
    width: 100%;
    height: 100%;
}

.ih-loyalty-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary) !important;
}

.ih-loyalty-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Price Freeze Card */
.ih-loyalty-example {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 16px;
}

.ih-loyalty-example-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.ih-loyalty-example-row:last-child {
    border-bottom: none;
}

.ih-loyalty-year {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.ih-loyalty-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.ih-loyalty-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ih-tag-locked {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.ih-tag-current {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent);
}

/* Growth Timeline Card */
.ih-loyalty-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 24px;
}

.ih-loyalty-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(168, 85, 247, 0.2) 100%);
}

.ih-loyalty-timeline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    position: relative;
}

.ih-loyalty-timeline-dot {
    position: absolute;
    left: -24px;
    width: 14px;
    height: 14px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    transition: all 0.3s;
}

.ih-loyalty-timeline-item span {
    font-size: 15px;
    color: var(--text-secondary);
}

.ih-timeline-current .ih-loyalty-timeline-dot {
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.ih-timeline-current span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Token Rewards Card */
.ih-loyalty-tokens-calc {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 20px;
}

.ih-loyalty-calc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.ih-loyalty-calc-row:last-child {
    border-bottom: none;
}

.ih-calc-label {
    font-size: 14px;
    color: var(--text-muted);
}

.ih-calc-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
}

.ih-calc-highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    margin: 8px -20px -20px;
    padding: 16px 20px !important;
    border-radius: 0 0 16px 16px;
    border-bottom: none !important;
}

.ih-calc-highlight .ih-calc-value {
    font-size: 20px;
    background: linear-gradient(135deg, #22c55e 0%, #86efac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loyalty CTA */
.ih-loyalty-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ih-loyalty-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================================
   Why Section
   ========================================================================== */

.ih-why {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.ih-why-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.ih-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ih-section-header p {
    font-size: 18px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.ih-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ih-why-card {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.ih-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.15);
}

.ih-why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ih-why-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary) !important;
}

.ih-why-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ==========================================================================
   Features Section
   ========================================================================== */

.ih-features {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.ih-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.ih-feature-card {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.ih-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.ih-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ih-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary) !important;
}

.ih-feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.ih-testimonials {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.ih-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ih-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ih-testimonial-card {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s;
}

.ih-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.ih-testimonial-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 48px;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
}

.ih-testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ih-testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.ih-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ih-testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

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

.ih-testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary) !important;
}

.ih-testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}


/* ==========================================================================
   FAQ Section
   ========================================================================== */

.ih-faq {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

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

.ih-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ih-faq-item {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.ih-faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.ih-faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
    color: var(--text-primary) !important;
}

.ih-faq-question:hover {
    background: var(--bg-tertiary);
}

.ih-faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    font-size: 14px;
    transition: transform 0.3s;
}

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

.ih-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ih-faq-item.active .ih-faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
    overflow: visible;
}


/* ==========================================================================
   Final CTA Section
   ========================================================================== */

.ih-cta {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ih-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ih-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ih-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.ih-cta-price {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.ih-cta-price .old-price {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.ih-cta-price .new-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--success);
}

.ih-cta-price .period {
    font-size: 16px;
    color: var(--text-muted);
}

.ih-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ih-btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.ih-guarantee {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ih-guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.ih-guarantee-item svg {
    color: var(--success);
}


/* ==========================================================================
   Footer
   ========================================================================== */

.ih-footer {
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */

@media (max-width: 1024px) {
    .ih-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ih-hero h1 {
        font-size: 40px;
    }

    .ih-hero-text {
        margin: 0 auto 40px;
    }

    .ih-hero-cta {
        justify-content: center;
    }

    .ih-price-tag {
        margin: 32px auto 0;
    }

    .ih-hero-visual {
        margin-top: 60px;
    }

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

    .ih-why-grid {
        grid-template-columns: 1fr;
    }

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

    .ih-loyalty-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */

@media (max-width: 768px) {
    .ih-burger {
        display: flex;
    }

    .ih-nav {
        display: none;
    }

    .ih-lang-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: 12px;
    }

    .ih-header {
        padding: 16px 20px;
    }

    .ih-hero {
        padding: 100px 20px 60px;
    }

    .ih-hero h1 {
        font-size: 32px;
    }

    .ih-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ih-stat-item {
        padding: 24px 20px;
    }

    .ih-stat-number {
        font-size: 32px;
    }

    .ih-stats {
        padding: 60px 16px;
        overflow-x: hidden;
    }

    .ih-stats-container {
        max-width: 100%;
        overflow: hidden;
    }

    .ih-features, .ih-why, .ih-testimonials, .ih-faq, .ih-cta, .ih-loyalty {
        padding: 60px 16px;
        overflow-x: hidden;
    }

    .ih-loyalty-grid {
        gap: 16px;
        margin-bottom: 40px;
    }

    .ih-loyalty-card {
        padding: 24px;
    }

    .ih-loyalty-cta {
        padding: 24px;
    }

    .ih-loyalty-cta p {
        font-size: 16px;
    }

    .ih-section-header h2 {
        font-size: 28px;
    }

    .ih-cta h2 {
        font-size: 32px;
    }

    .ih-chat-mockup {
        width: 320px;
    }
}
