/* =================================================================
   LiketoMe Landing Page - FINAL OPTIMIZED VERSION
   ================================================================= */

:root {
    --primary: #3ea8ff;
    --accent: #2de370;
    --dark-bg: #050815;
    --text-light: #e5e7eb;
    --text-gray: #b0b0b0;
    --theme-dark: #111827;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--theme-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: var(--theme-dark);
    border-bottom: 1px solid #374151;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand img {
    height: 40px;
    display: block;
}

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

.btn-nav {
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-nav {
    background: var(--accent);
    color: #000;
}

.btn-primary-nav:hover {
    background: #25c867;
}

.btn-secondary-nav {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-secondary-nav:hover {
    background: var(--accent);
    color: #000;
}

/* ===== HERO ===== */
.hero {
    padding: 50px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--theme-dark);
}

.hero-inner {
    max-width: 1300px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
}

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

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.highlight {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pulse-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
    border: none;
    cursor: pointer;
}

.pulse-btn:hover {
    background: #26c261;
}

.hero-subnote {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 255, 153, 0.1);
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.volume-toggle-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* ===== TRUSTED BY ===== */
.trusted-by {
    padding: 40px 20px;
    text-align: center;
    background: var(--theme-dark);
}

.trusted-by-container {
    max-width: 900px;
    margin: 0 auto;
}

.trusted-by-title {
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.trusted-logos img {
    height: 45px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trusted-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ===== THE PROBLEM SECTION ===== */
.problem-section {
    padding: 80px 20px;
    background: #0a0e1c;
}

.problem-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    color: var(--primary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 168, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== MEDIKOM CASE (NEW SIMPLIFIED) ===== */
.case-featured {
    padding: 80px 20px;
    background: var(--theme-dark);
}

.case-featured h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    color: var(--primary);
}

.case-mobile-wrapper {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Main Impact Card */
.case-mobile {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid rgba(45, 227, 112, 0.3);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.case-mobile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 227, 112, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.before-after-mobile {
    position: relative; /* z-index fix */
    z-index: 1;
}

.comparison-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.comparison-header .divider {
    color: rgba(255, 255, 255, 0.2);
}

.comparison-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.before-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b7280; /* Dimmed gray */
    text-decoration: line-through; /* Optional: adds emphasis to the change */
    text-decoration-color: rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.arrow {
    font-size: 2rem;
    color: var(--text-light);
    opacity: 0.5;
}

.after-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent); /* Neon Green */
    text-shadow: 0 0 20px rgba(45, 227, 112, 0.4);
    line-height: 1;
}

.comparison-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.growth-badge {
    display: inline-block;
    background: rgba(45, 227, 112, 0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(45, 227, 112, 0.2);
    animation: pulseBadge 3s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(45, 227, 112, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(45, 227, 112, 0.4); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(45, 227, 112, 0.2); }
}

/* Compact Quote Styles */
.case-quote-compact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-photo-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.quote-text-wrapper blockquote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.quote-author {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .after-number {
        font-size: 3.2rem;
    }
    .before-number {
        font-size: 2rem;
    }
    .case-quote-compact {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== HOW IT WORKS ===== */
.how {
    background: var(--theme-dark);
    padding: 90px 20px;
}

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

.how .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.how .section-header p {
    color: var(--text-gray);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.step-card {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 24px;
    padding: 40px 25px 30px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.step-card-icon-wrapper {
    position: absolute;
    top: -28px;
    left: 25px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #4b5563;
}

.icon-chat { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.icon-smart { background: linear-gradient(135deg, #f472b6, #ec4899); }
.icon-ai { background: linear-gradient(135deg, #818cf8, #a78bfa); }

.step-card-icon {
    font-size: 2rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.stats-box {
    background: rgba(45, 227, 112, 0.1);
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.stats-box strong {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ===== MINI CASE STUDIES (FIXED) ===== */
.case-studies {
    padding: 80px 20px;
    background: #0a0e1c;
}

.case-studies .container {
    max-width: 1200px;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 50px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Ensures cards are equal height */
}

.case-study-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%; /* Stretches to fill grid cell */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 168, 255, 0.3);
}

.case-study-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.case-study-metrics {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0 30px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 15px; /* Prevents text overlap on small screens */
}

.case-study-metrics .metric-item {
    text-align: center;
    flex: 1; /* Distributes space equally */
    padding: 0;
    background: none;
    display: block; /* Overrides previous flex display for this specific context */
}

.case-study-metrics .metric-item .value {
    color: var(--text-light);
    font-size: clamp(1.8rem, 4vw, 2.1rem); /* Responsive font sizing */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 0 8px rgba(45, 227, 112, 0.6);
}

.case-study-metrics .metric-item .change {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-left: 8px; /* Adds space between rating and change */
    vertical-align: middle;
}

.case-study-metrics .metric-item .label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.testimonial {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: auto; /* Pushes testimonial to bottom */
    padding: 15px;
    border-left: 3px solid var(--primary);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 10px 10px 0;
}

.testimonial .author {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-gray);
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ===== CALCULATOR ===== */
#calculator {
    padding: 80px 20px;
    background: #0a0e1c;
}

.calculator-eyebrow {
    display: block;
    width: fit-content;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
}

.calculator-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.calculator-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.calculator-subheading {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.calculator-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.calc-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.calc-benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(62, 168, 255, 0.3);
}

.calc-benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.calc-benefit-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(62, 168, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
}

.calculator-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.calculator-form > .calculate-btn {
    grid-column: span 3;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.input-group input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: var(--primary);
}

.calculate-btn {
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.calculate-btn:hover {
    background: #3395e6;
}

.info-box.error-message {
    background-color: rgba(255, 82, 82, 0.1);
    border: 1px solid rgba(255, 82, 82, 0.4);
    color: #ff5252;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
}

.info-box.success {
    background-color: rgba(45, 227, 112, 0.1);
    border: 1px solid rgba(45, 227, 112, 0.4);
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

/* Calculator Results */
.results-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.main-goal-display {
    background: rgba(45, 227, 112, 0.1);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px auto 30px auto;
    max-width: 550px;
}

.main-goal-display .result-value {
    font-size: 3rem;
    color: var(--accent);
    line-height: 1.1;
}

.main-goal-display .result-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 5px;
}

.detailed-calculation {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(62, 168, 255, 0.2);
}

.calculation-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

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

.calc-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.calc-card.highlight-card {
    background: rgba(45, 227, 112, 0.1);
    border-color: var(--accent);
}

.calc-card.impact-card {
    background: linear-gradient(135deg, rgba(62, 168, 255, 0.1), rgba(45, 227, 112, 0.1));
    border-color: var(--primary);
}

.calc-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.calc-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.calc-card-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-line:last-child {
    border-bottom: none;
}

.stat-line.big-stat {
    flex-direction: column;
    gap: 8px;
    border-bottom: none;
    padding: 10px 0;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.stat-label-small {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
}

.stat-value.highlight {
    color: var(--accent);
}

.stat-value.success {
    color: #2de370;
}

.stat-value.danger {
    color: #ff6b6b;
}

.stat-value.impact {
    font-size: 2.5rem;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(45, 227, 112, 0.5);
}

.calculation-formula {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.calculation-formula h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.formula-explanation {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.formula-explanation p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.formula-explanation strong {
    color: var(--text-light);
}

/* ===== TRIAL BENEFITS SECTION ===== */
.trial-benefits {
    padding: 80px 20px;
    background: radial-gradient(circle at top, rgba(45, 227, 112, 0.1), transparent);
}

.trial-eyebrow {
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
    background: var(--accent);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.trial-benefits h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: #fff;
}

.trial-subheading {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.trial-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trial-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(45, 227, 112, 0.2);
}

.trial-check {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

.trial-cta-section {
    text-align: center;
    margin-top: 40px;
}

.trial-cta-btn {
    font-size: 1.1rem;
    padding: 18px 40px;
}

.trial-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== FEATURES GRID ===== */
.features-section {
    padding: 80px 20px;
    background: var(--theme-dark);
}

.features-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 168, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta {
    background: #050815;
    padding: 80px 20px;
}

.cta-section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 15px;
}

.cta-section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.cta-container-hybrid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.cta-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.telegram-box {
    border-color: rgba(62, 168, 255, 0.3);
    background: radial-gradient(circle at top left, rgba(62, 168, 255, 0.1), transparent);
}

.badge-fast {
    background: #3ea8ff;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.cta-desc {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 1rem;
}

.cta-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cta-benefits-list li {
    margin-bottom: 8px;
    color: #e5e7eb;
    font-size: 1rem;
}

.telegram-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.telegram-cta-button:hover {
    background: linear-gradient(135deg, #229ED9 0%, #0088cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
}

.cta-divider span {
    background: #222;
    color: #777;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.cta-divider::before {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.form-box {
    background: rgba(20, 20, 20, 0.6);
}

.form-box h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.form-desc {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.hybrid-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 1rem;
    outline: none;
}

.input-wrapper input:focus {
    border-color: #2de370;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #2de370;
    color: #2de370;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    background: #2de370;
    color: black;
}

.privacy-note {
    font-size: 0.75rem;
    color: #555;
    margin-top: 15px;
    text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 20px;
    background: #0a0e1c;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    color: var(--primary);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(62, 168, 255, 0.3);
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0a0e1c;
    padding: 40px 20px 80px 20px; /* Added bottom padding for sticky CTA */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.footer-column {
    color: #777;
    font-size: 0.9rem;
}

.footer-column a {
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme-dark);
    border-top: 1px solid #374151;
    padding: 12px 16px;
    display: none;
    z-index: 1200;
    text-align: center;
}

.sticky-cta a {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% { box-shadow: 0 0 10px rgba(45, 227, 112, 0.4); }
    50% { box-shadow: 0 0 20px rgba(45, 227, 112, 0.8); }
    100% { box-shadow: 0 0 10px rgba(45, 227, 112, 0.4); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.6s ease;
}

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

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    
    .featured-case-card {
        grid-template-columns: 1fr;
    }
    
    .cta-container-hybrid {
        flex-direction: column;
    }
    
    .cta-divider {
        width: 100%;
        height: 40px;
    }
    
    .cta-divider::before {
        width: 80%;
        height: 1px;
        top: 50%;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 14px 16px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--theme-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        gap: 25px;
    }
    
    .nav.open {
        opacity: 1;
        visibility: visible;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .calculator-form > .calculate-btn {
        grid-column: span 1;
    }
    
    .trial-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid,
    .features-grid,
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta {
        display: block;
    }
}
