/* ==========================================================================
   Ignitabull Marketing Site — style.css
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
    --gold: #8B6914;
    --gold-light: #a67c1a;
    --gold-dark: #6d520f;
    --orange: #ec5b13;
    --orange-hover: #d4510f;
    --black: #1a1a1a;
    --gray: #666;
    --gray-light: #999;
    --bg-white: #fff;
    --bg-alt: #f5f5f5;
    --bg-dark: #1a1a1a;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --nav-height: 72px;
    --container: 1200px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ---------- Typography ---------- */
.display {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* ---------- Section spacing ---------- */
.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline {
    border: 2px solid var(--black);
    color: var(--black);
    background: transparent;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--bg-white);
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
}

.btn-white {
    background: #fff;
    color: var(--black);
    border: 2px solid #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

.btn-gold {
    background: var(--bg-white);
    color: var(--gold);
    border: 2px solid var(--bg-white);
}

.btn-gold:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--gold);
    height: var(--nav-height);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.nav-signin {
    font-weight: 700 !important;
    color: #fff !important;
    opacity: 1 !important;
}

/* Hamburger — CSS only */
.hamburger-toggle {
    display: none;
}

.hamburger-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-label span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-toggle:checked + .hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle:checked + .hamburger-label span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle:checked + .hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Scroll anchor offset */
[id] {
    scroll-margin-top: calc(var(--nav-height) + 16px);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    padding: 80px 0 96px;
    background: var(--bg-white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.hero-headline {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 18px 36px;
    border: 2px solid var(--black);
    border-radius: var(--radius-pill);
    color: var(--black);
    transition: all var(--transition);
}

.hero-cta:hover {
    background: var(--black);
    color: #fff;
}

.hero-cta .arrow {
    font-size: 1.25rem;
    transition: transform var(--transition);
}

.hero-cta:hover .arrow {
    transform: translateX(4px);
}

/* Phase Cards */
.phase-grid-wrapper {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.phase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.phase-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.phase-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.phase-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.phase-title {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phase-title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.phase-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    background: var(--gold);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-value {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition);
}

.section-alt .service-card {
    background: var(--bg-white);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 105, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ==========================================================================
   WHY DIFFERENT
   ========================================================================== */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    margin-top: 48px;
}

.diff-item {
    display: flex;
    gap: 24px;
}

.diff-number {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    flex-shrink: 0;
    width: 64px;
}

.diff-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.diff-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.timeline {
    position: relative;
    margin-top: 64px;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-bottom: 56px;
}

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

.timeline-marker {
    position: absolute;
    left: -48px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    z-index: 1;
}

.timeline-duration {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: rgba(139, 105, 20, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.timeline-item h3 {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 600px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black);
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card.highlight {
    border-color: var(--gold);
    border-top: 4px solid var(--gold);
    transform: translateY(-16px);
    box-shadow: 0 16px 48px rgba(139, 105, 20, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 32px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: rgba(139, 105, 20, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B6914' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-email {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

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

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    background: var(--gold);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 32px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', 'Public Sans', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-sub {
        max-width: 100%;
    }

    .hero-content .hero-cta {
        margin: 0 auto;
    }

    .phase-grid-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .pricing-card.highlight {
        transform: none;
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .section {
        padding: 64px 0;
    }

    /* Mobile nav */
    .hamburger-label {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gold);
        flex-direction: column;
        justify-content: flex-start;
        padding: 32px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
    }

    .hamburger-toggle:checked ~ .nav-links {
        transform: translateX(0);
    }

    /* Hero */
    .hero {
        padding: 48px 0 64px;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

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

    .phase-grid-wrapper {
        max-width: 100%;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.highlight {
        transform: none;
        grid-column: auto;
        max-width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-value {
        font-size: 1.75rem;
    }
}
