/* DESIGN 12: Electric Blue Statement
   Design 1 base + extra bold type + electric blue + slight modern touches */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #050505;
    --bg-alt: #0c0c0c;
    --bg-card: #141414;
    --text: #ffffff;
    --text-muted: #777777;
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --font: 'Manrope', sans-serif;
    --radius: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

a {
    color: var(--accent);
    text-decoration: none;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1a1a1a;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 12px 24px;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border: 2px solid #333;
    color: var(--text);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 32px 80px;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-label {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.2rem;
    /* Reduced further to ensure one line */
    margin-bottom: 28px;
    line-height: 0.95;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 260px;
}

.hero-badge {
    position: absolute;
    top: 0;
    left: -20px;
    background: var(--accent);
    color: white;
    padding: 18px 22px;
    text-align: center;
}

.badge-score {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.about {
    padding: 100px 0;
    background: var(--bg-alt);
    border-top: 1px solid #1a1a1a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat {
    padding: 0 32px;
    border-right: 1px solid var(--accent);
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

.process {
    padding: 100px 0;
    border-top: 1px solid #1a1a1a;
}

.process h2 {}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 48px;
}

.timeline-item {
    text-align: left;
    padding: 28px 20px;
    border-left: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    border-left-color: var(--accent);
}

.timeline-item:first-child {
    border-left: none;
    padding-left: 0;
}

.timeline-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.timeline-item h4 {
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 700;
}

.timeline-item p {
    font-size: 0.85rem;
    margin: 0;
}

.pricing {
    padding: 100px 0;
    background: var(--bg-alt);
    border-top: 1px solid #1a1a1a;
}

.pricing h2 {
    text-align: center;
}

.pricing-intro {
    max-width: 400px;
    margin: 0 auto 48px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    padding: 44px 28px;
    border-left: 1px solid #1a1a1a;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, z-index 0s;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
    z-index: 10;
    background: var(--bg-card);
    /* Ensure opaque bg on hover */
}

.price-card:first-child {
    border-left: none;
}

.price-card.featured {
    background: var(--accent);
    color: white;
}

.price-card.featured .price-header h3,
.price-card.featured p,
.price-card.featured li {
    color: rgba(255, 255, 255, 0.7);
}

.price-card.featured li::before {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-header {
    margin-bottom: 24px;
}

.price-header h3 {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    margin: 0 0 28px;
}

.price-card li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.price-card li::before {
    content: '→ ';
    color: var(--accent);
}

.price-card .btn {
    width: 100%;
    text-align: center;
}

.price-card.featured .btn {
    background: white;
    color: var(--accent);
}

.pricing-note {
    text-align: center;
    max-width: 500px;
    margin: 48px auto 0;
    font-size: 0.85rem;
}

.faq {
    padding: 100px 0;
    border-top: 1px solid #1a1a1a;
}

.faq h2 {
    text-align: center;
}

.faq-list {
    max-width: 700px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Space between cards */
}

/* FAQ Fixes & Card Stack Design */
.faq-item {
    border: 1px solid #222;
    /* Full border */
    border-radius: 12px;
    /* Rounded card */
    background: var(--bg-card);
    /* Card Background */
    transition: all 0.2s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--accent);
    /* Blue border on hover */
    transform: translateX(4px);
    /* Subtle nudge */
    background: var(--bg-card);
    /* Keep background stable */
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font);
}

.faq-item:hover .faq-q {
    padding-left: 24px;
}

/* Ensure consistent text colors in answer */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    color: var(--text-muted);
    /* Force consistent grey */
    padding: 0 24px;
    /* Side padding matching header */
}

.faq-a ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.faq-a li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.faq-a li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.faq-a ul ul {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 24px;
}

.faq-a ul ul li {
    margin-bottom: 8px;
}

.faq-a ul ul li::before {
    content: "◦";
    /* Hollow bullet for sub-items */
}

.faq-a ul ul ul {
    padding-left: 24px;
}

.faq-a ul ul ul li::before {
    content: "▪";
    /* Square for sub-sub-items */
}

.faq-a strong {
    color: var(--text);
    font-weight: 700;
}

.faq-item.open .faq-a {
    max-height: 2000px;
    padding-bottom: 24px;
    /* Bottom padding when open */
}

/* Guide Subtitle Italic */
.guides-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    /* Added Italic */
}

.cta {
    padding: 140px 0;
    text-align: center;
    background: var(--bg-alt);
    border-top: 1px solid #1a1a1a;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 3rem;
}

.cta>.container>p {
    max-width: 450px;
    margin: 0 auto 40px;
}

.cta-contact {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 48px;
}

.cta-contact a {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer {
    padding: 32px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        border-left: none;
        border-top: 1px solid #1a1a1a;
    }

    .price-card:first-child {
        border-top: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-left: none;
        padding: 16px 0;
        border-top: 1px solid #222;
    }

    .stat:first-child {
        border-top: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        /* Hidden by default on mobile, shown when .active is added by JavaScript */
        display: none;
        /* These styles apply WHEN the menu opens (via .active class below) */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px 32px;
        gap: 0;
        border-bottom: 1px solid #1a1a1a;
    }

    /* THIS IS THE KEY: When hamburger is clicked, JavaScript adds .active class */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid #1a1a1a;
        font-size: 1rem;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    h1,
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: -20px;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        border-left: none;
        border-top: 1px solid #222;
        padding-left: 0;
    }

    .timeline-item:first-child {
        border-top: none;
    }

    .cta h2 {
        font-size: 2.25rem;
    }
}

/* Inner Page Support */
.page-hero {
    padding: 160px 32px 60px;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: 48px;
}

/* Guide List (Content Page) */
.guide-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1px;
    background: #222;
    border: 1px solid #222;
}

.guide-list li {
    background: var(--bg);
}

.guide-list a {
    display: block;
    padding: 24px;
    color: var(--text);
    font-weight: 700;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.guide-list a:hover {
    background: var(--bg-alt);
    color: var(--accent);
    padding-left: 32px;
}

/* Calendly Wrapper */
.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    width: 100%;
    border: 1px solid #1a1a1a;
}

/* =========================================
   HONEYCOMB GUIDES LAYOUT (New Design)
   ========================================= */

/* Hero Modifier for proper spacing */
.page-hero.guides-hero {
    padding-top: 150px;
    padding-bottom: 20px;
}

.page-hero.guides-hero h1 {
    margin-bottom: 12px;
}

.guides-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
}

.highlight-number {
    color: var(--accent);
    font-size: 1.4em;
    /* Larger relative to the subtitle */
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.page-hero.guides-hero p {
    margin-bottom: 0;
}

/* Grid Container */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 3-2-3-2 Staggered Pattern */
.guide-card:nth-child(1) {
    grid-column: 1 / 3;
}

.guide-card:nth-child(2) {
    grid-column: 3 / 5;
}

.guide-card:nth-child(3) {
    grid-column: 5 / 7;
}

.guide-card:nth-child(4) {
    grid-column: 2 / 4;
}

.guide-card:nth-child(5) {
    grid-column: 4 / 6;
}

.guide-card:nth-child(6) {
    grid-column: 1 / 3;
}

.guide-card:nth-child(7) {
    grid-column: 3 / 5;
}

.guide-card:nth-child(8) {
    grid-column: 5 / 7;
}

.guide-card:nth-child(9) {
    grid-column: 2 / 4;
}

.guide-card:nth-child(10) {
    grid-column: 4 / 6;
}

/* Guide Card Styling */
.guide-card {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Hover Effects */
.guide-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    z-index: 10;
    border-color: #3b82f6;
}

.guide-tag {
    display: none;
}

/* Gradient Titles */
.guide-title {
    font-size: 1.4rem;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #3b82f6;
    /* Fallback */
}

/* Interactive Title Gradient on Hover */
.guide-card:hover .guide-title {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.guide-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-card:hover .guide-link {
    color: #3b82f6;
}

.guide-bg-num {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 800;
    color: #ffffff;
    opacity: 0.03;
    pointer-events: none;
}

/* Responsive adjustments for the grid */
@media (max-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset spans */
    .guide-card:nth-child(n) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}