/* ========================================
   seoeasy.co.il - Main Stylesheet
   ======================================== */

/* CSS Variables based on Brand Guidelines */
:root {
    /* Primary Colors */
    --primary-green: #2D8B4E;
    --light-green: #4CAF50;
    --success-green: #38A169;

    /* Secondary Colors */
    --dark-blue: #1A365D;
    --medium-blue: #2B6CB0;
    --light-blue: #4299E1;

    /* Accent Colors (NEW) */
    --accent-orange: #ED8936;
    --accent-orange-light: #FBD38D;
    --accent-purple: #805AD5;
    --accent-teal: #38B2AC;

    /* Neutrals */
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #718096;
    --dark-gray: #2D3748;

    /* Accent */
    --warning-orange: #DD6B20;
    --error-red: #E53E3E;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2D8B4E 0%, #4CAF50 100%);
    --gradient-hero: linear-gradient(135deg, #F5F7FA 0%, #E2E8F0 50%, #EDF2F7 100%);
    --gradient-orange: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
    --gradient-blue: linear-gradient(135deg, #4299E1 0%, #2B6CB0 100%);
    --gradient-mixed: linear-gradient(135deg, #2D8B4E 0%, #2B6CB0 50%, #805AD5 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-glow-green: 0 0 30px rgba(45, 139, 78, 0.3);
    --shadow-glow-orange: 0 0 30px rgba(237, 137, 54, 0.3);

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1100px;

    /* Typography */
    --font-primary: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
    direction: rtl;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-blue);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    color: var(--medium-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-green);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--light-green);
    color: var(--white);
    border-color: var(--light-green);
}

.btn-primary:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
}

.logo span {
    color: var(--dark-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-cta {
    display: flex;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    top: -200px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    bottom: -150px;
    right: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--medium-blue);
    top: 50%;
    right: 20%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-5deg); }
    75% { transform: translate(-20px, -10px) rotate(3deg); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(45, 139, 78, 0.15) 0%, rgba(237, 137, 54, 0.15) 100%);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(45, 139, 78, 0.2);
}

.hero-badge svg {
    fill: var(--accent-orange);
}

.hero h1 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 20px rgba(45, 139, 78, 0.3);
    }
    to {
        box-shadow: 0 4px 30px rgba(45, 139, 78, 0.5);
    }
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.hero-trust-item svg {
    fill: var(--success-green);
}

/* Hero Visual - Demo Browser */
.hero-visual {
    position: relative;
}

.hero-demo {
    position: relative;
}

.demo-browser {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
}

.demo-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #F8FAFC;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dot.red { background: #FF5F57; }
.demo-dot.yellow { background: #FFBD2E; }
.demo-dot.green { background: #28C840; }

.demo-url {
    flex: 1;
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.85rem;
    background: var(--white);
    padding: 6px 16px;
    border-radius: 6px;
    margin-right: 50px;
}

.demo-content {
    padding: 20px;
}

.demo-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: 30px;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.demo-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-result {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.demo-result-you {
    background: linear-gradient(135deg, rgba(45, 139, 78, 0.08) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: var(--primary-green);
    position: relative;
}

.demo-result-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.demo-result-title {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 4px;
}

.demo-result-you .demo-result-title {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.demo-result-url {
    color: var(--success-green);
    font-size: 0.85rem;
}

.demo-result-competitor {
    opacity: 0.5;
}

.demo-result-competitor .demo-result-title {
    font-size: 0.9rem;
}

/* Floating Stats */
.hero-stats-floating {
    position: absolute;
    top: 20px;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.6s ease-out;
}

.floating-stat:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-stat-icon.orange {
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.15) 0%, rgba(221, 107, 32, 0.1) 100%);
}

.floating-stat-icon.orange svg {
    fill: var(--accent-orange);
}

.floating-stat-icon.blue {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15) 0%, rgba(43, 108, 176, 0.1) 100%);
}

.floating-stat-icon.blue svg {
    fill: var(--medium-blue);
}

.floating-stat-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark-blue);
}

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

/* Legacy stat items (kept for compatibility) */
.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

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

/* ========================================
   STAKES SECTION (Problem)
   ======================================== */
.stakes {
    padding: var(--section-padding);
    background: var(--white);
}

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

.stakes h2 {
    color: var(--dark-blue);
}

.stakes-stat {
    display: inline-block;
    background: var(--light-gray);
    padding: 20px 40px;
    border-radius: 12px;
    margin-top: 30px;
}

.stakes-stat .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stakes-stat .text {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* ========================================
   USP SECTION
   ======================================== */
.usp {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.usp-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.usp-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.usp-card:nth-child(2) .usp-icon {
    background: var(--gradient-blue);
}

.usp-card:nth-child(3) .usp-icon {
    background: var(--gradient-orange);
}

.usp-card:hover .usp-icon {
    transform: scale(1.1);
}

.usp-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.usp-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.usp-card p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* ========================================
   PROCESS SECTION (The Plan)
   ======================================== */
.process {
    padding: var(--section-padding);
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--light-gray);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:nth-child(2) .step-number {
    background: var(--gradient-blue);
}

.step:nth-child(3) .step-number {
    background: var(--gradient-orange);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    padding: var(--section-padding);
    background: var(--dark-blue);
    color: var(--white);
}

.pricing h2 {
    color: var(--white);
    text-align: center;
}

.pricing-intro {
    text-align: center;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 50px;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.pricing-amount {
    margin-bottom: 30px;
}

.pricing-amount .price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
}

.pricing-amount .period {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.pricing-amount .setup {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    text-align: right;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--success-green);
    font-size: 1.2rem;
}

.pricing-compare {
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ========================================
   ABOUT SECTION (The Guide)
   ======================================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-quote {
    background: var(--light-gray);
    padding: 25px 30px;
    border-radius: 12px;
    border-right: 4px solid var(--primary-green);
    margin-top: 25px;
    font-style: italic;
    color: var(--dark-gray);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-method-text strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.contact-method-text span {
    color: var(--medium-gray);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-brand .logo span {
    color: var(--light-green);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-green);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero responsive */
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-stats-floating {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-trust {
        justify-content: center;
    }

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

    .usp-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps::before {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    body {
        font-size: 16px;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats-floating {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .demo-browser {
        transform: scale(0.9);
        transform-origin: top center;
    }

    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        opacity: 0.05;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-amount .price {
        font-size: 3rem;
    }

    .contact-form {
        padding: 25px;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-menu .btn {
    width: 100%;
    margin-top: 15px;
}

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

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   GUIDE / DEEP CONTENT SECTION
   ======================================== */
.guide-section {
    padding: var(--section-padding);
    background: var(--white);
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-content h2 {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.guide-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-mixed);
    margin: 20px auto 0;
    border-radius: 2px;
}

.guide-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guide-block {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.guide-block:last-of-type {
    border-bottom: none;
}

.guide-block h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-right: 20px;
}

.guide-block h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.guide-block:nth-child(even) h3::before {
    background: var(--gradient-orange);
}

.guide-block p {
    color: var(--dark-gray);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

/* Guide List */
.guide-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.guide-list-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.guide-list-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.guide-list-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-list-item:nth-child(2) .guide-list-icon { background: var(--gradient-blue); }
.guide-list-item:nth-child(3) .guide-list-icon { background: var(--gradient-orange); }
.guide-list-item:nth-child(4) .guide-list-icon { background: linear-gradient(135deg, var(--accent-purple) 0%, #6B46C1 100%); }

.guide-list-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.guide-list-content strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.guide-list-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* Pricing Comparison */
.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.pricing-comparison-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-comparison-item.highlight {
    background: linear-gradient(135deg, rgba(45, 139, 78, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 2px solid var(--primary-green);
}

.pricing-comparison-item h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.pricing-comparison-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.pricing-comparison-item.highlight .pricing-comparison-price {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-comparison-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 40px 0;
    padding-right: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-mixed);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-right: 40px;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    right: -43px;
    top: 0;
    background: var(--white);
    border: 3px solid var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-green);
    white-space: nowrap;
}

.timeline-item:nth-child(2) .timeline-marker { border-color: var(--medium-blue); color: var(--medium-blue); }
.timeline-item:nth-child(3) .timeline-marker { border-color: var(--accent-orange); color: var(--accent-orange); }
.timeline-item:nth-child(4) .timeline-marker { border-color: var(--accent-purple); color: var(--accent-purple); }

.timeline-content {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
}

.timeline-content strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Mistakes Grid */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.mistake-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mistake-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    margin: 0 auto;
}

.mistake-number {
    position: absolute;
    top: -12px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
}

.mistake-card:nth-child(1) .mistake-number { background: var(--gradient-primary); }
.mistake-card:nth-child(2) .mistake-number { background: var(--gradient-blue); }
.mistake-card:nth-child(3) .mistake-number { background: var(--gradient-orange); }
.mistake-card:nth-child(4) .mistake-number { background: linear-gradient(135deg, var(--accent-purple) 0%, #6B46C1 100%); }
.mistake-card:nth-child(5) .mistake-number { background: linear-gradient(135deg, var(--accent-teal) 0%, #2C7A7B 100%); }

.mistake-card h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    padding-top: 10px;
}

.mistake-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.checklist-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.checklist-item:nth-child(2) .checklist-icon { background: var(--gradient-blue); }
.checklist-item:nth-child(3) .checklist-icon { background: var(--gradient-orange); }
.checklist-item:nth-child(4) .checklist-icon { background: linear-gradient(135deg, var(--accent-purple) 0%, #6B46C1 100%); }
.checklist-item:nth-child(5) .checklist-icon { background: linear-gradient(135deg, var(--accent-teal) 0%, #2C7A7B 100%); }

.checklist-item strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.checklist-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-table {
    background: var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
    margin: 30px 0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    background: var(--dark-blue);
    color: var(--white);
    font-weight: 600;
}

.comparison-header .comparison-col {
    padding: 16px 20px;
    text-align: center;
}

.comparison-header .comparison-col:first-child {
    text-align: right;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: var(--white);
}

.comparison-col {
    padding: 14px 20px;
    text-align: center;
}

.comparison-col:first-child {
    text-align: right;
    color: var(--dark-blue);
}

.comparison-col:nth-child(2) {
    color: var(--primary-green);
    font-weight: 500;
}

.comparison-col:nth-child(3) {
    color: var(--accent-orange);
}

/* Guide CTA */
.guide-cta {
    background: var(--dark-blue);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.guide-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-right: 0;
}

.guide-cta h3::before {
    display: none;
}

.guide-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.guide-cta .btn-primary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.guide-cta .btn-primary:hover {
    background: var(--light-green);
    color: var(--white);
    border-color: var(--light-green);
}

/* Responsive for Guide Section */
@media (max-width: 768px) {
    .pricing-comparison {
        grid-template-columns: 1fr;
    }

    .mistakes-grid {
        grid-template-columns: 1fr;
    }

    .mistake-card:last-child {
        max-width: 100%;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-header,
    .comparison-row {
        min-width: 500px;
    }

    .timeline {
        padding-right: 20px;
    }

    .timeline-marker {
        position: relative;
        right: 0;
        margin-bottom: 10px;
        display: inline-block;
    }

    .timeline-item {
        padding-right: 20px;
    }

    .guide-cta {
        padding: 30px 20px;
    }
}
