/**
 * OniGrow Theme - Homepage Stylesheet
 *
 * All styles for the OniGrow.com homepage.
 * Loaded only on is_front_page().
 * Tokens defined in main.css :root.
 *
 * @package OniGrow
 * @since 1.0.0
 */


/* ========================================
   ONIGROW - CSS OTTIMIZZATO
   ======================================== */

/* ========================================
   LAYOUT
   ======================================== */

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

.container-fluid {
    padding: 0 20px;
    max-width: 100%;
}

.section {
    padding: 60px 0;
    max-width: 100%;
}

/* ========================================
   UTILITIES
   ======================================== */

.bg-white { background: #ffffff; }
.bg-light { background: var(--color-bg-alt); }
.bg-dark { background: var(--color-text); }
.bg-gradient-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); }

.text-white { color: #ffffff; }
.text-center { text-align: center; }

.mt-lg { margin-top: 60px; }
.w-full { width: 100%; }

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

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

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 13px;
    padding: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(26px, 6vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: clamp(15px, 3.5vw, 17px);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 auto;
}

.bg-dark .section-tag,
.text-white .section-tag {
    color: rgba(255,255,255,0.8);
}

.bg-dark .section-header h2,
.text-white h2 {
    color: #ffffff;
}

.bg-dark .section-subtitle,
.text-white .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.gradient-text {
    background: linear-gradient(135deg, #ff5a8a, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(225,48,108,0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(225,48,108,0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-whatsapp { background: #128c7e; }
.btn-email { background: #004f9f; }
.btn-lg { font-size: 18px; padding: 18px 40px; }

/* Hover styles consolidated in RESPONSIVE section */

/* ========================================
   BADGES
   ======================================== */

.badge {
    display: inline-block;
    padding: 6px 16px;
    margin: 10px 0;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-badge-lg {
    font-size: 14px;
    padding: 8px 20px;
}

/* ========================================
   CARDS
   ======================================== */

.card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 2px solid var(--color-border);
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.card-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-color: rgba(255,255,255,0.2);
}

.card-glass h3 { color: #ffffff; }
.card-glass p { color: rgba(255,255,255,0.9); }

/* Pain Points Section - Light bg with Dark Cards */
.pain-section-dark {
    background: var(--color-bg-alt);
    padding: 80px 20px;
}

.pain-headline {
    color: var(--color-text);
    font-size: 32px;
    line-height: 1.3;
}

.pain-highlight {
    color: var(--color-primary);
    display: block;
    font-size: 38px;
    margin-top: 8px;
}

.pain-grid-dark {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.pain-card-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-card-dark:hover {
    border-color: rgba(225, 48, 108, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 26, 46, 0.3);
}

.pain-icon-dark {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.3) 0%, rgba(225, 48, 108, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pain-icon-dark svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.pain-statement {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.pain-conclusion {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pain-conclusion strong {
    color: var(--color-text);
    font-weight: 700;
}

@media (max-width: 768px) {
    .pain-section-dark {
        padding: 60px 20px;
    }

    .pain-headline {
        font-size: 24px;
    }

    .pain-highlight {
        font-size: 28px;
    }

    .pain-grid-dark {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
    }

    .pain-card-dark {
        padding: 24px 20px;
    }

    .pain-icon-dark {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .pain-icon-dark svg {
        width: 24px;
        height: 24px;
    }

    .pain-statement {
        font-size: 16px;
    }

    .pain-conclusion {
        font-size: 16px;
    }
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-bottom: 12px;
}

/* ========================================
   LISTS
   ======================================== */

.list-check {
   margin: 10px 2px !important;
}

.list-check li {
    padding: 10px 0;
    font-size: 14px;
    display: table;
}

.list-check li::before {
    content: "✓";
    color: var(--color-success);
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 5px;
}

/* ========================================
   SLIDER SYSTEM
   ======================================== */

.slider {
    position: relative;
    overflow: visible;
}

.slider-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 12px 20px 32px;
    margin: 0 -20px;
    justify-content: center;
    flex-wrap: nowrap;
}

.slider-track::-webkit-scrollbar { display: none; }

.slider-track > * {
    flex: 1 1 auto;
    min-width: 280px;
    max-width: 450px;
    scroll-snap-align: center;
}

.slider.has-scroll .slider-track {
    justify-content: flex-start;
}

.slider.has-scroll .slider-track > * {
    flex: 0 0 auto;
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slider.has-scroll .slider-dots {
    display: flex;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.bg-white .slider-dots,
.bg-light .slider-dots {
    background: rgba(0,0,0,0.08);
}

.bg-white .slider-dot,
.bg-light .slider-dot {
    background: rgba(0,0,0,0.3);
}

.bg-white .slider-dot:hover,
.bg-light .slider-dot:hover {
    background: rgba(0,0,0,0.5);
}

.bg-white .slider-dot.active,
.bg-light .slider-dot.active {
    background: var(--color-primary);
    box-shadow: 0 0 12px rgba(225,48,108,0.4);
}

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

.hero {
    background: linear-gradient(180deg, var(--color-text) 0%, #16213e 100%);
    color: #ffffff;
    padding: 30px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 100%;
}

.hero h1 {
    font-size: clamp(32px, 12vw, 64px) !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--color-success);
    font-weight: 700;
}

/* Hero Problem - The opening question */
.hero-problem {
    font-size: clamp(16px, 4vw, 22px);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

/* Hero Social Proof Section */
.hero-social-proof {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-trustpilot {
    display: flex;
    justify-content: center;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 12px 24px;
    background: rgba(5,150,105,0.15);
    border: 1px solid rgba(5,150,105,0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.5s ease-in-out;
}

.trust-icon {
    font-size: 18px;
    line-height: 1;
    animation: gentle-pulse 3s ease-in-out infinite;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-stat-value {
    display: block;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* Hero Reassurance */
.hero-reassurance {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.hero-reassurance span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Cheap Followers Comparison */
.cheap-comparison-slider {
    max-width: 900px;
    margin: 0 auto 32px;
}

.cheap-comparison {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.cheap-column {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 420px;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: left;
}

/* cheap-comparison responsive - consolidated in RESPONSIVE section */

.cheap-bad {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fca5a5;
}

.cheap-good {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #86efac;
    position: relative;
}

.cheap-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cheap-price {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--color-text);
}

.cheap-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.cheap-badge {
    display: inline-block;
    background: var(--color-success);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-top: 8px;
    text-transform: uppercase;
}

.cheap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cheap-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
    line-height: 1.5;
}

.cheap-item:last-child {
    border-bottom: none;
}

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

.cheap-item.negative .cheap-icon {
    background: #fee2e2;
    color: #dc2626;
}

.cheap-item.positive .cheap-icon {
    background: #dcfce7;
    color: #16a34a;
}

.cheap-verdict {
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cheap-bad .cheap-verdict {
    color: #dc2626;
}

.cheap-good .cheap-verdict {
    color: #16a34a;
}

.cheap-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cheap-disclaimer {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    padding: 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

/* Guarantee Badges */
.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, rgba(225,48,108,0.05), rgba(225,48,108,0.1));
    padding: 40px 0;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: #ffffff;
    border-radius: var(--radius-lg);
}

.cta-box h2 {
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Results Note */
.results-note {
    text-align: center;
    max-width: 700px;
    margin: 32px auto 0;
    padding: 20px 24px;
    background: rgba(225, 48, 108, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
    border: 1px solid rgba(225, 48, 108, 0.2);
}

/* ========================================
   COMPARISON CARDS
   ======================================== */

.comparison-card {
    flex: 0 0 min(90%, 400px);
    background: #16213e;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 2px solid rgba(255,255,255,0.1);
}

.comparison-header {
    text-align: center;
    margin-bottom: 20px;
}

.comparison-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.comparison-subtitle {
    font-size: 14px;
    opacity: 0.7;
    color: #ffffff;
}

.comparison-screens {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.screen-container {
    position: relative;
}

.screen-label {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
}

.screen-label.before {
    color: #fff;
    background: #ef4444;
    border-color: #dc2626;
}

.screen-label.after {
    color: #fff;
    background: var(--color-success);
    border-color: #047857;
}

.screen-wrapper {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(255,255,255,0.1);
}

.screen-wrapper::-webkit-scrollbar { width: 4px; }
.screen-wrapper::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.screen-wrapper::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 2px; }
.screen-wrapper img { width: 100%; height: auto; }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
    background: rgba(0,0,0,0.9);
    border-radius: var(--radius-md);
    border: 3px solid var(--color-primary);
}

.metric { text-align: center; }

.metric-value {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--color-success);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 8px rgba(5,150,105,0.5);
}

.metric-label {
    font-size: 11px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #ffffff;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ========================================
   TEAM CARDS
   ======================================== */

.team-card {
    flex: 0 0 260px;
    background: #ffffff;
    border: 2px solid var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-base);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.team-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(225,48,108,0.3);
}

.team-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ========================================
   VIDEO CARDS
   ======================================== */

.video-card {
    flex: 0 0 280px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    cursor: pointer;
    height: fit-content;
    padding: 0;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.video-wrapper.playing .video-overlay {
    opacity: 0;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
    margin-left: 3px;
}

.video-info { padding: 20px; }
.video-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.video-role { font-size: 13px; color: var(--color-text-muted); margin-bottom: 12px; }
.video-result { color: var(--color-primary); font-size: 14px; font-weight: 600; }

/* ========================================
   URGENCY BANNER
   ======================================== */

.urgency-banner {
    max-width: 800px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: #92400e;
    box-shadow: 0 4px 12px rgba(245,158,11,0.2);
}

.urgency-banner svg {
    flex-shrink: 0;
    stroke: #f59e0b;
}

.urgency-banner strong {
    font-weight: 800;
    color: #78350f;
}

/* Credible Banner - Trust-focused variation */
.urgency-banner.credible-banner {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #34d399;
    color: #065f46;
    box-shadow: 0 4px 12px rgba(16,185,129,0.15);
}

.urgency-banner.credible-banner svg {
    stroke: #10b981;
}

.urgency-banner.credible-banner strong {
    color: #047857;
}

/* urgency-banner responsive - consolidated in RESPONSIVE section */

/* ========================================
   ONIGROW TOOLS
   ======================================== */

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.tool-card {
    background: #ffffff;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    transition: var(--transition-base);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.tool-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.tool-badge.basic-available {
    background: rgba(107,114,128,0.15);
    color: var(--color-text-muted);
    border: 1px solid rgba(107,114,128,0.3);
}

.tool-badge.elite-available {
    background: rgba(217,119,6,0.15);
    color: var(--color-warning);
    border: 1px solid rgba(217,119,6,0.3);
}

.tool-badge.platinum-available {
    background: rgba(5,150,105,0.15);
    color: var(--color-success);
    border: 1px solid rgba(5,150,105,0.3);
}

.tool-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text);
}

.tool-credits {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.tool-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tool-example {
    background: var(--color-bg-alt);
    padding: 16px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.tool-example strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-example em {
    font-style: italic;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
    display: block;
}

.tools-info {
    text-align: center;
    margin-top: 48px;
}

.tools-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: auto;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(225,48,108,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(225,48,108,0.2);
}

.tools-note svg {
    flex-shrink: 0;
    stroke: var(--color-primary);
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--color-bg-alt);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    font-weight: 600;
    font-size: 14px;
    padding-top: 24px;
}

.comparison-table thead tr:first-child th {
    padding-top: 40px;
}

.comparison-table .feature-column {
    width: 25%;
    text-align: left;
    padding-left: 20px;
}

.comparison-table .option-column {
    width: 25%;
}

.option-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.option-header.recommended {
    position: relative;
}

.option-icon {
    font-size: 24px;
    line-height: 1;
}

.option-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text);
}

.recommended-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.comparison-table .onigrow-column {
    background: rgba(225,48,108,0.03);
}

.comparison-table thead .onigrow-column {
    background: rgba(225,48,108,0.08);
}

.comparison-table .onigrow-column.highlight {
    background: rgba(225,48,108,0.05);
}

.comparison-table .feature-name {
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    padding-left: 20px;
    font-size: 14px;
}

.comparison-table .price-row td {
    padding: 20px 12px;
}

.price-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.comparison-table .onigrow-column .price-value {
    color: var(--color-primary);
}

.price-note {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
}

.value-positive {
    color: var(--color-success);
    font-weight: 600;
}

.value-negative {
    color: var(--color-error);
    font-weight: 500;
}

.value-neutral {
    color: var(--color-warning);
    font-weight: 500;
}

.check-icon {
    color: var(--color-success);
    font-weight: 700;
    margin-right: 4px;
}

.cross-icon {
    color: var(--color-error);
    font-weight: 700;
    margin-right: 4px;
}

.neutral-icon {
    color: var(--color-warning);
    font-weight: 700;
    margin-right: 4px;
}

.comparison-table .cta-row td {
    padding: 20px 12px;
    border-bottom: none;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-note {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(225,48,108,0.08), rgba(225,48,108,0.03));
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.comparison-note p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   APPROACH CARDS (New Comparison Section)
   ======================================== */

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 2px solid var(--color-border);
    transition: var(--transition-base);
    position: relative;
}

.approach-card:hover {
    border-color: var(--color-text-muted);
    transform: translateY(-4px);
}

.approach-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(225,48,108,0.05), #ffffff);
}

.approach-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.approach-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.approach-icon {
    font-size: 28px;
}

.approach-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 !important;
}

.approach-intro {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 12px;
}

.approach-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.approach-practice {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.approach-practice strong {
    display: block;
    font-size: 13px;
    color: var(--color-text);
    margin-bottom: 10px;
}

.approach-practice ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.approach-practice li {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.approach-practice li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-text-muted);
}

.approach-practice .positive-list li::before {
    content: "✓";
    color: var(--color-success);
    font-weight: 700;
}

.approach-card.featured .approach-practice {
    background: rgba(225,48,108,0.08);
}

.approach-card .btn {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .approach-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .approach-card.featured {
        order: -1;
    }
}

/* Comparison Table Responsive - consolidated in RESPONSIVE section */

/* ========================================
   ADVANTAGES TABLE
   ======================================== */

.advantages-section {
    background: var(--color-text);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.advantages-table {
    max-width: 1200px;
    margin: 0 auto;
    background: #16213e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid rgba(225,48,108,0.3);
}

.advantages-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(225,48,108,0.1);
}

.advantage-item {
    padding: 32px;
    background: #16213e;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-base);
}

.advantage-item:hover {
    background: rgba(225,48,108,0.05);
    transform: translateY(-2px);
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.advantage-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon.success {
    background: rgba(5,150,105,0.2);
    border: 2px solid rgba(5,150,105,0.4);
}

.advantage-icon.success svg {
    stroke: var(--color-success);
    width: 28px;
    height: 28px;
}

.advantage-icon.neutral {
    background: rgba(107,114,128,0.2);
    border: 2px solid rgba(107,114,128,0.4);
}

.advantage-icon.neutral svg {
    stroke: var(--color-text-muted);
    width: 28px;
    height: 28px;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.advantage-text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline-visual {
    max-width: 1150px;
    margin: 40px auto 0;
    position: relative;
}

.timeline-item-visual {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}

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

.timeline-item-visual:last-child .timeline-bar {
    display: none;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(225,48,108,0.3);
    flex-shrink: 0;
}

.timeline-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-text);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    z-index: 3;
}

.timeline-text {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-bg-alt);
    box-shadow: var(--shadow-sm);
}

.timeline-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.timeline-text p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

.timeline-bar {
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -32px;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), rgba(225,48,108,0.2));
    z-index: 1;
}

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

.faq-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
/* faq-grid responsive - consolidated in RESPONSIVE section */

.faq-item {
    background: #ffffff;
    border: 2px solid var(--color-bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    line-height: 1.5;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    user-select: none;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(225,48,108,0.03);
}

.faq-icon {
    font-size: 24px;
    color: var(--color-primary);
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: 12px;
}

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

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

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}
/* faq-item hover - consolidated in RESPONSIVE section */

/* FAQ TABS */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 8px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-tab {
    padding: 12px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.faq-tab:hover {
    background: rgba(225,48,108,0.05);
    color: var(--color-primary);
}

.faq-tab.active {
    background: #ffffff;
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq-item[data-category] {
    display: block;
}

.faq-item[data-category].hidden {
    display: none;
}
/* faq-tabs responsive - consolidated in RESPONSIVE section */

/* ========================================
   CALCULATOR PREVIEW
   ======================================== */

.calculator-preview-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--color-text) 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.calculator-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225,48,108,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.calculator-preview-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225,48,108,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.calculator-preview-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.calculator-preview-section .section-tag {
    background: rgba(225,48,108,0.2);
    color: #ff5a8a;
    border: 1px solid rgba(225,48,108,0.3);
}

.calculator-preview-subtitle {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.calculator-preview-form {
    margin-bottom: 30px;
}

.calculator-input-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

.input-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 12px 0 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.calculator-input {
    flex: 1;
    padding: 16px 12px;
    font-size: 17px;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition-base);
    text-align: left;
    margin: 0 10px 0 5px !important;
    min-width: 0;
}

.calculator-input::placeholder {
    color: var(--color-text-muted);
}

.calculator-input:focus {
    outline: none;
}

.calculator-submit {
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.calculator-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(225,48,108,0.4);
}

.calculator-features {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.calculator-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}

.calculator-feature svg {
    flex-shrink: 0;
    color: var(--color-success);
}

.calculator-disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
/* calculator-preview responsive - consolidated in RESPONSIVE section */

/* ========================================
   GUARANTEE
   ======================================== */

.guarantee-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}

.guarantee-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   TRIAL SECTION
   ======================================== */

.trial-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 24px;
    background: #16213e;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255,255,255,0.1);
}

.trial-box h2 {
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    margin-top: 12px;
    line-height: 1.2;
}

.trial-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trial-text strong {
    color: var(--color-primary);
}

.trial-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin: 24px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.benefit-item svg {
    flex-shrink: 0;
}

.trial-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 32px auto 0;
}

/* ========================================
   STICKY HEADER
   ======================================== */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.sticky-header.visible {
    transform: translateY(0);
}

.sticky-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    text-decoration: none;
}

.sticky-header-logo img {
    height: 32px;
    width: auto;
}

.sticky-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sticky-header-cta:hover {
    transform: translateY(-1px);
    color: white !important;
}

.sticky-header-cta:active {
    transform: translateY(0);
    color: white !important;
}

/* ========================================
   CUSTOM NEEDS
   ======================================== */

.custom-box {
    max-width: 900px;
    margin: 40px auto 0;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    box-shadow: var(--shadow-md);
}

.custom-intro {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--color-bg-alt);
}

.custom-intro h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.custom-intro p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.custom-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-bg-alt);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    display: block;
}

.service-item span {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.custom-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 32px;
    justify-content: center;
    border-top: 2px solid var(--color-bg-alt);
}

/* ========================================
   SOLUTION GRID
   ======================================== */

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.solution-card {
    background: #ffffff;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-base);
}

.solution-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.solution-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
/* solution-grid responsive - consolidated in RESPONSIVE section */

/* ========================================
   RESPONSIVE - ALL MEDIA QUERIES CONSOLIDATED
   ======================================== */

/* Hover-enabled devices */
@media (hover: hover) {
    .btn:hover {
        transform: translateY(-2px);
        color: white;
    }
    .faq-item:hover {
        background: rgba(225,48,108,0.03);
    }
}

/* Active states for touch feedback */
.btn:active {
    transform: scale(0.97);
    opacity: 0.9;
}

.btn-primary:active {
    box-shadow: 0 2px 8px rgba(225,48,108,0.3);
}

/* Mobile Touch Optimization */
@media (hover: none) {
    .btn { min-height: 44px; }
    .btn:active { transform: scale(0.95); }
    .faq-question { min-height: 56px; }
    .slider-track { scroll-padding: 20px; }
}

/* Mobile Small */
@media (max-width: 374px) {
    .btn { padding: 14px 24px; font-size: 15px; }
    .metrics-grid { gap: 0px; padding: 5px 3px; grid-template-columns: 1fr; }
    .metric { display: flex; align-items: center; justify-content: center; gap: 8px; }
    .metric-value { font-size: 18px; margin-bottom: 0; }
    .metric-label { font-size: 11px; letter-spacing: 0.3px; }
    .advantages-row { grid-template-columns: 1fr; }
    .screen-wrapper { height: 250px; }
    .hero { min-height: auto; padding: 20px 20px 30px; }
    .hero h1 { font-size: 28px !important; }
    .hero-problem { font-size: 14px; }
    /* Hero Stats - Mobile Small */
    .hero-stats { gap: 12px; flex-direction: column; align-items: center; }
    .hero-stat { padding: 12px 20px; min-width: 140px; }
    .hero-stat-value { font-size: 20px; }
    .hero-stat-label { font-size: 11px; }
}

/* Sticky Header Mobile */
@media (max-width: 480px) {
    .sticky-header-content { padding: 10px; }
    .sticky-header-logo span { display: none; }
    .sticky-header-cta { padding: 8px 10px; }
}

/* Mobile - max 639px */
@media (max-width: 639px) {
    /* Hero Stats - Mobile */
    .hero-stats { gap: 16px; }
    .hero-stat { padding: 14px 20px; }
    .hero-stat-value { font-size: 22px; }
    .hero-stat-label { font-size: 11px; }
    /* Metrics Grid - Mobile */
    .metrics-grid { gap: 0px; padding: 5px 3px }
    .metric-value { font-size: 18px; }
    .metric-label { font-size: 11px; letter-spacing: 0.3px; }
    /* Urgency Banner */
    .urgency-banner {
        font-size: 13px;
        padding: 14px 18px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    /* FAQ Tabs */
    .faq-tabs {
        flex-direction: column;
        gap: 6px;
    }
    .faq-tab {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
    }
    /* Calculator Preview Mobile */
    .calculator-preview-section { padding: 60px 20px; }
    .calculator-input-wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    .input-icon { display: none; }
    .calculator-input {
        background: rgba(255,255,255,0.15);
        border: 2px solid rgba(255,255,255,0.2);
        color: #ffffff;
        text-align: center;
        padding: 18px 20px;
        border-radius: var(--radius-md);
    }
    .calculator-input::placeholder { color: rgba(255,255,255,0.7); }
    .calculator-input:focus { background: rgba(255,255,255,0.25); border-color: #ffffff; }
    .calculator-submit {
        width: 100%;
        padding: 18px 24px;
    }
    .calculator-features { flex-direction: column; flex-wrap: wrap; gap: 12px; }
    .calculator-feature { white-space: normal; }
}

/* Mobile Large */
@media (min-width: 520px) and (max-width: 767px) {
    .comparison-screens { grid-template-columns: 1fr 1fr; }
    .screen-wrapper { height: 280px; }
}

/* Mobile - max 767px (Advantages) */
@media (max-width: 767px) {
    .advantages-row { grid-template-columns: 1fr; }
    .advantage-item { padding: 24px; }
    .advantage-icon { width: 48px; height: 48px; }
    .advantage-icon svg { width: 24px; height: 24px; }
    .advantage-title { font-size: 16px; }
    .advantage-text { font-size: 14px; }
    .timeline-visual { padding: 0 12px; }
    .timeline-item-visual { grid-template-columns: 50px 1fr; gap: 16px; }
    .timeline-icon { width: 50px; height: 50px; }
    .timeline-bar { left: 25px; top: 50px; }
    .timeline-text { padding: 16px 18px; }
    .timeline-text h3 { font-size: 18px; }
    .timeline-text p { font-size: 13px; }
}

/* Tablet - max 768px */
@media (max-width: 768px) {
    /* Cheap Comparison - Slider mode on mobile */
    .cheap-comparison {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .cheap-column {
        min-width: 85%;
        max-width: 85%;
    }
    /* Comparison Table */
    .comparison-table { min-width: 600px; }
    .comparison-table th,
    .comparison-table td { padding: 12px 8px; font-size: 13px; }
    .comparison-table .feature-name { font-size: 13px; padding-left: 12px; }
    .comparison-table .feature-column { padding-left: 12px; }
    .price-value { font-size: 16px; }
    .option-icon { font-size: 20px; }
    .option-name { font-size: 13px; }
    .recommended-badge { font-size: 9px; padding: 3px 8px; top: -24px; }
    .comparison-note { margin: 24px 0 0; padding: 16px; }
}

/* Tablet - min 640px */
@media (min-width: 640px) {
    .section { padding: 60px 32px; }
    .hero { padding: 40px 32px 50px; }
    .cta-group { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .btn { min-width: 180px; }
    /* Hero Stats - Tablet */
    .hero-stats { gap: 20px; }
    .hero-stat { padding: 16px 28px; }
    .hero-stat-value { font-size: 28px; }
    .video-card { min-width: 300px; }
    .comparison-card { min-width: 400px; }
    .comparison-screens { gap: 16px; grid-template-columns: 1fr 1fr; }
    .metrics-grid { gap: 16px; }
    .screen-wrapper { height: 320px; }
    .card { padding: 24px; }
    .custom-cta { flex-direction: row; }
    .trial-actions { flex-direction: row; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .custom-services { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
    .service-item { padding: 12px 0; }
    .sticky-header-content { padding: 12px 20px; }
    .sticky-header-logo img { height: 28px; }
    .sticky-header-cta { padding: 8px 20px; font-size: 12px; }
    /* FAQ Grid */
    .faq-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    /* Solution Grid */
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    /* Calculator Preview - desktop inline form */
    .calculator-input-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
    .input-icon { display: flex !important; }
    .calculator-input {
        padding: 16px 12px;
        min-height: 54px;
    }
    .calculator-submit { width: auto; padding: 16px 28px; min-height: 54px; }
    .calculator-features { flex-direction: row; flex-wrap: nowrap; gap: 32px; }
}

/* Tablet Large - min 768px */
@media (min-width: 768px) {
    .section { padding: 80px 40px; }
    .hero { padding: 50px 40px 60px; }
    .hero h1 { margin-bottom: 24px !important; }
    .hero-subtitle { margin-bottom: 32px; }
    .cta-group { margin-bottom: 32px; }
    .trust-indicator { margin-top: 32px; }
    /* Hero Stats - Desktop */
    .hero-stats { gap: 24px; }
    .hero-stat { padding: 18px 32px; }
    .hero-stat-value { font-size: 32px; }
    .hero-stat-label { font-size: 13px; }
    .comparison-card { min-width: 450px; }
    .screen-wrapper { height: 350px; }
    .card h3 { font-size: 18px; }
    .timeline-item-visual { grid-template-columns: 70px 1fr; gap: 28px; }
    .timeline-icon { width: 70px; height: 70px; }
    .timeline-bar { left: 35px; top: 70px; }
    .timeline-text h3 { font-size: 22px; }
    .timeline-text p { font-size: 15px; }
    .comparison-table th { font-size: 15px; }
    .comparison-table td { font-size: 15px; }
    .custom-box { padding: 48px 40px; }
    .custom-intro h3 { font-size: 28px; }
    .custom-intro p { font-size: 17px; }
    .service-item strong { font-size: 17px; }
    .service-item span { font-size: 15px; }
}

/* Desktop - min 1024px */
@media (min-width: 1024px) {
    .tools-grid { grid-template-columns: repeat(4, 1fr); }
    .custom-box { padding: 56px 48px; }
    .slider-track { margin: 0; padding: 12px 0 32px; justify-content: center; }
    /* FAQ Grid */
    .faq-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    /* Solution Grid */
    .solution-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop Large - min 1280px */
@media (min-width: 1280px) {
    .faq-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* Viewport Height Optimization */
@media (max-height: 700px) {
    .hero h1 { margin-bottom: 12px !important; }
    .hero-subtitle { margin-bottom: 20px; }
    .cta-group { margin-bottom: 20px; }
}

/* ========================================
   PRICING TABLE
   ======================================== */

/* Tab Selector - Hidden on desktop, shown on mobile */
.pricing-tabs {
    display: none;
    gap: 0;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid var(--color-border);
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.pricing-tabs::-webkit-scrollbar {
    display: none;
}

/* Scroll indicator arrow */
.pricing-tabs::after {
    content: '›';
    position: sticky;
    right: 0;
    top: 50%;
    padding: 8px 4px 8px 16px;
    background: linear-gradient(to right, transparent, #ffffff 50%);
    color: var(--color-text-muted);
    font-size: 20px;
    pointer-events: none;
}

.pricing-tab {
    flex: 0 0 auto;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: capitalize;
    letter-spacing: 0;
    white-space: nowrap;
}

.pricing-tab:hover {
    color: var(--color-text);
}

.pricing-tab.active {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
    font-weight: 700;
}

/* Featured Badge - Base */
.featured-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    z-index: 10;
}

/* Price Wrapper */
.pricing-price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

/* Price - Base */
.pricing-price {
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
}

/* Period Label */
.pricing-period {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* ----------------------------------------
   DESKTOP TABLE
   ---------------------------------------- */

.pricing-table-wrapper {
    max-width: 1550px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    min-width: 700px;
    padding-top: 15px;
}

/* Grid Row */
.pricing-row {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    border-bottom: 1px solid var(--color-border);
}

.pricing-row:first-child {
    border-top: 1px solid var(--color-border);
}

/* Base Cell Styles */
.pricing-cell,
.pricing-card.pricing-plan-cell {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
    border-right: 3px solid #f8f9fa;
}

/* Feature Column (left) */
.pricing-feature-cell {
    justify-content: flex-start;
    text-align: left;
    background: var(--color-bg-alt);
    border-right: 1px solid var(--color-border);
}

.pricing-feature-name {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

/* Info icon for feature links */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-bottom: 1px;
    color: var(--color-text-muted);
    opacity: 0.6;
    transition: all 0.2s ease;
    vertical-align: middle;
    text-decoration: none !important;
}

.info-icon:hover {
    color: var(--color-primary);
    opacity: 1;
    transform: scale(1.1);
}

.info-icon svg {
    display: block;
}

/* Featured Plan Column Highlight */
.pricing-plan-featured {
    background: rgba(225, 48, 108, 0.04);
}

.pricing-header-row .pricing-plan-featured {
    background: rgba(225, 48, 108, 0.06);
}

.pricing-plan-featured .pricing-cta {
    padding: 12px 24px;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

/* Pricing Reach Note */
.pricing-reach-note {
    text-align: center;
    max-width: 800px;
    margin: 24px auto 0;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    padding: 16px 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.pricing-nobrainer {
    text-align: center;
    max-width: 700px;
    margin: 32px auto 0;
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(225,48,108,0.04), rgba(225,48,108,0.08));
    border: 1px solid rgba(225,48,108,0.15);
    border-radius: var(--radius-lg);
}
.pricing-nobrainer-math {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.pricing-nobrainer-math .math-item {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
}
.pricing-nobrainer-math .math-item.highlight {
    color: var(--color-primary);
    font-size: 26px;
}
.pricing-nobrainer-math .math-sign {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 600;
}
.pricing-nobrainer-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}
.pricing-nobrainer-text strong {
    color: var(--color-primary);
}
@media (max-width: 639px) {
    .pricing-nobrainer-math .math-item {
        font-size: 18px;
    }
    .pricing-nobrainer-math .math-item.highlight {
        font-size: 22px;
    }
    .pricing-nobrainer {
        padding: 24px 16px;
    }
}

/* Value Cells */
.pricing-value-cell {
    padding: 14px 12px;
}

.pricing-value-cell strong {
    color: var(--color-primary);
    font-weight: 800;
}

/* Header Row */
.pricing-header-row .pricing-cell,
.pricing-header-row .pricing-plan-cell {
    padding: 24px 16px;
}

/* Plan Header Cell (with .pricing-card for promo manager) */
.pricing-plan-cell {
    position: relative;
    padding-top: 20px;
    padding-bottom: 24px;
}

/* Plan Header Content */
.pricing-plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.pricing-plan-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
    margin: 10px 0 10px !important;
    letter-spacing: 0.5px;
}

/* Price in Header */
.pricing-plan-header .pricing-price {
    font-size: 36px;
}

.pricing-plan-header .pricing-period {
    font-size: 16px;
}

/* Badge in table - positioned above plan name */
.pricing-plan-cell > .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* CTA Button in table */
.pricing-cta {
    margin-top: 12px;
    padding: 10px 20px;
    font-size: 13px;
}

/* Ideal For Row */
.pricing-ideal-cell {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 13px;
}

/* ========================================
   PRICING TABLE - RESPONSIVE
   ======================================== */

/* Tablet - smaller font sizes */
@media (max-width: 900px) and (min-width: 769px) {
    .pricing-cell,
    .pricing-plan-cell {
        padding: 12px 10px;
        font-size: 13px;
    }

    .pricing-plan-header .pricing-price {
        font-size: 28px;
    }

    .pricing-plan-header .pricing-period {
        font-size: 14px;
    }

    .pricing-plan-name {
        font-size: 16px;
    }

    .pricing-cta {
        padding: 8px 14px;
        font-size: 11px;
    }
}

/* Mobile - transform table into card view */
@media (max-width: 768px) {
    /* Show tabs */
    .pricing-tabs {
        display: flex;
    }

    /* Table wrapper */
    .pricing-table-wrapper {
        overflow: visible;
        margin: 0;
        margin-top: 10px;
        padding: 0 !important;
    }

    .pricing-table {
        min-width: unset;
        width: 100%;
        overflow: hidden;
    }

    /* Rows become vertical */
    .pricing-row {
        display: flex !important;
        flex-direction: column !important;
        border-bottom: none;
    }

    /* Header row - show only active plan */
    .pricing-header-row {
        background: #ffffff;
        border-bottom: 1px solid var(--color-border);
    }

    .pricing-header-row .pricing-feature-cell {
        display: none;
    }

    .pricing-header-row .pricing-plan-cell {
        display: none;
        padding: 24px 20px;
        border-right: none;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-header-row .pricing-plan-cell.active {
        display: flex;
    }

    .pricing-header-row .pricing-plan-header {
        width: 100%;
    }

    .pricing-header-row .pricing-plan-name {
        font-size: 22px;
    }

    .pricing-header-row .pricing-price-wrapper {
        justify-content: flex-start;
        margin-bottom: 16px;
    }

    .pricing-header-row .pricing-price {
        font-size: 25px;
        font-weight: 500;
        color: #374151;
    }

    .pricing-header-row .pricing-period {
        font-size: 16px;
        font-weight: 500;
    }

    .pricing-header-row .pricing-cta {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: var(--radius-full);
        margin-top: 0;
    }

    .pricing-header-row .pricing-plan-cell {
        position: relative;
    }

    /* Feature rows */
    .pricing-row:not(.pricing-header-row):not(.pricing-last-row) {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        background: #ffffff;
    }

    .pricing-row:not(.pricing-header-row) .pricing-feature-cell {
        flex: 1;
        padding: 0;
        background: transparent;
        border-right: none;
    }

    .pricing-row:not(.pricing-header-row) .pricing-feature-name {
        font-size: 15px;
        font-weight: 500;
        color: var(--color-text);
    }

    /* Hide non-active plan columns */
    .pricing-row:not(.pricing-header-row) .pricing-value-cell {
        display: none;
        padding: 0;
        font-size: 14px;
        color: var(--color-text-muted);
        text-align: right;
        flex-shrink: 0;
    }

    .pricing-row:not(.pricing-header-row) .pricing-value-cell.active {
        display: block;
        text-align: center;
    }

    /* Last row styling */
    .pricing-last-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        background: #ffffff;
    }

    .pricing-last-row .pricing-feature-cell {
        flex: 1;
        padding: 0;
        background: transparent;
        border-right: none;
        border-bottom-left-radius: 0;
    }

    .pricing-last-row .pricing-value-cell {
        display: none;
        padding: 0;
    }

    .pricing-last-row .pricing-value-cell.active {
        display: block;
    }

    .pricing-last-row > *:last-child {
        border-bottom-right-radius: 0;
    }

    /* Ideal row special styling */
    .pricing-ideal-cell {
        font-style: normal;
        color: var(--color-text-muted);
    }
}
