/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0B0C0F;
    color: #D1D5DB;
    line-height: 1.6;
    font-size: 16px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #D1D5DB;
}

strong {
    color: #FFFFFF;
    font-weight: 600;
}

em {
    font-style: italic;
    color: #A1A5B0;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   FIXED CTA BUTTON
   ========================================== */

.fixed-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   BUTTONS
   ========================================== */

.cta-button,
.cta-button-large {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #22C55E;
    color: #0B0C0F;
    text-decoration: none;
    font-weight: 700;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.cta-button:hover,
.cta-button-large:hover {
    background-color: #16A34A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.cta-button:active,
.cta-button-large:active {
    transform: translateY(0);
}

.cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
}

.cta-button-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    margin-top: 2rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #0B0C0F 0%, #1a1b1f 100%);
    border-bottom: 1px solid #2C2F36;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="candlestick" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><line x1="20" y1="5" x2="20" y2="35" stroke="rgba(34,197,94,0.04)" stroke-width="1"/><rect x="15" y="12" width="10" height="15" fill="rgba(34,197,94,0.03)" stroke="rgba(34,197,94,0.05)" stroke-width="0.5"/><line x1="20" y1="10" x2="20" y2="8" stroke="rgba(34,197,94,0.04)" stroke-width="1"/><line x1="20" y1="30" x2="20" y2="32" stroke="rgba(34,197,94,0.04)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23candlestick)"/></svg>');
    background-size: 100% 100%, 150px 150px, 80px 80px;
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid #22C55E;
    color: #22C55E;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-badge .separator {
    margin: 0 0.75rem;
    opacity: 0.6;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #D1D5DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: #22C55E;
}

.hero-image {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.2);
    animation: scaleIn 0.8s ease-out;
}

.logo-hero {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.25);
    animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   PROBLEM & SOLUTION SECTION
   ========================================== */

.problem-solution {
    padding: 6rem 0;
    background-color: #0B0C0F;
    border-bottom: 1px solid #2C2F36;
}

.problem-solution h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.content-block {
    background-color: #1a1b1f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2C2F36;
    transition: all 0.3s ease;
}

.content-block:hover {
    border-color: #22C55E;
    background-color: rgba(34, 197, 94, 0.05);
}

.content-block h3 {
    color: #22C55E;
    margin-bottom: 1rem;
}

.proof-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid #22C55E;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.proof-section h3 {
    color: #22C55E;
    margin-bottom: 1rem;
}

.proof-images {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.proof-image-group {
    background-color: rgba(26, 27, 31, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.proof-image-group h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.proof-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.proof-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.proof-before,
.proof-after {
    flex: 1;
    min-width: 150px;
}

.proof-label {
    color: #A1A5B0;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.proof-image-small {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.proof-arrow {
    font-size: 2rem;
    color: #22C55E;
    font-weight: bold;
}

/* ==========================================
   INSIGHT SECTION
   ========================================== */

.insight-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.insight-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.insight-content h3 {
    color: #22C55E;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-highlight {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.insight-main {
    color: #22C55E;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding: 1.5rem;
    background-color: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22C55E;
    border-radius: 8px;
}

.insight-description {
    color: #D1D5DB;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits {
    padding: 6rem 0;
    background-color: #0B0C0F;
    border-bottom: 1px solid #2C2F36;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: #1a1b1f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2C2F36;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #22C55E;
    background-color: rgba(34, 197, 94, 0.05);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #A1A5B0;
    font-size: 0.95rem;
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0B0C0F 0%, #1a1b1f 100%);
    border-bottom: 1px solid #2C2F36;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-description {
    font-size: 1.1rem;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
}

.price-highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 2px solid #22C55E;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #22C55E;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.price-note {
    color: #A1A5B0;
    font-size: 0.95rem;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
    padding: 6rem 0;
    background-color: #0B0C0F;
    border-bottom: 1px solid #2C2F36;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #2C2F36;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #22C55E;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: #1a1b1f;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: rgba(34, 197, 94, 0.05);
    color: #22C55E;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #22C55E;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(34, 197, 94, 0.05);
}

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

.faq-answer p {
    padding: 1.5rem;
    color: #D1D5DB;
    margin: 0;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    padding: 3rem 0;
    background-color: #1a1b1f;
    border-top: 1px solid #2C2F36;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer p {
    color: #A1A5B0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.telegram-link {
    color: #22C55E;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.telegram-link:hover {
    color: #16A34A;
    text-decoration: underline;
}

/* ==========================================
   SOCIAL MEDIA SECTION
   ========================================== */

.social-media-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2C2F36;
}

.social-media-section h3 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.social-icon:hover {
    background-color: #22C55E;
    color: #0B0C0F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 4rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .fixed-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .fixed-cta .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    .pricing {
        padding: 4rem 0;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .faq {
        padding: 4rem 0;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .proof-images {
        gap: 1.5rem;
    }

    .proof-image-group {
        padding: 1rem;
    }

    .proof-comparison {
        gap: 1rem;
    }

    .proof-arrow {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .price-highlight {
        padding: 2rem 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .faq-answer p {
        padding: 1rem;
    }

    .problem-solution,
    .benefits,
    .pricing,
    .faq {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   DARK MODE (Already implemented as default)
   ========================================== */

/* Color Variables for Easy Customization */
:root {
    --bg-primary: #0B0C0F;
    --bg-secondary: #1a1b1f;
    --text-primary: #FFFFFF;
    --text-secondary: #D1D5DB;
    --text-tertiary: #A1A5B0;
    --border-color: #2C2F36;
    --accent-color: #22C55E;
    --accent-dark: #16A34A;
    --accent-light: rgba(34, 197, 94, 0.1);
}


/* ==========================================
   HERO INSIGHT (Integrated into Hero)
   ========================================== */

.hero-insight {
    margin: 2rem 0;
    padding: 2rem;
    background-color: rgba(34, 197, 94, 0.08);
    border-left: 4px solid #22C55E;
    border-radius: 8px;
    text-align: center;
}

.hero-insight h3 {
    color: #22C55E;
    font-size: 1.7rem; /* Increased size */
    margin-bottom: 1.2rem;
    font-weight: 700;
}

#inverted-logic-highlight {
    display: block;
    font-size: 2.2rem; /* Much larger font */
    color: #FACC15; /* Yellow color */
    margin: 1rem 0;
    text-align: center;
    font-weight: 900;
}

.insight-highlight {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.insight-main {
    color: #FFFFFF; /* Changed to white for contrast */
    font-size: 1.4rem; /* Increased size */
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-weight: 700;
}

.insight-description {
    color: #22C55E; /* Highlighted text */
    font-size: 1.3rem; /* Increased size for emphasis */
    line-height: 1.8;
    margin: 0;
    font-weight: 700;
}
