/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --bg-color: #050505;
    --text-color: #E0E0E0;
    --accent-color: #E85A4F;
    /* Brand Coral */
    --accent-secondary: #F9DC5C;
    /* Brand Yellow */
    --gray-dark: #1A1A1A;
    --gray-medium: #333333;
    --gray-light: #888888;

    --font-primary: 'Poppins', sans-serif;

    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

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

::selection {
    background: var(--accent-color);
    color: #fff;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

sup {
    color: var(--accent-color);
    font-size: 10px;
    font-weight: 800;
    margin-left: 2px;
}

/* ==========================================================================
   Effects
   ========================================================================== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

.highlight {
    color: var(--accent-color);
}

.kicker-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 200;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 60px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s var(--easing);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.arrow {
    transition: transform 0.3s var(--easing);
    color: var(--accent-color);
}

.btn-text:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

/* Hamburger Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
    position: relative;
    gap: 6px;
}

.menu-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.4s var(--easing);
    transform-origin: center;
}

/* Hamburger to X animation */
.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu.active {
    pointer-events: all;
}

/* Animated background panels */
.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.6s var(--easing);
}

.mobile-menu.active .mobile-menu-bg {
    transform: translateY(0);
}

/* Decorative gradient orb */
.mobile-menu-bg::before {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 90, 79, 0.15) 0%, transparent 70%);
    top: -20vw;
    right: -20vw;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s ease 0.3s, transform 0.8s var(--easing) 0.3s;
}

.mobile-menu.active .mobile-menu-bg::before {
    opacity: 1;
    transform: scale(1);
}

/* Decorative accent line */
.mobile-menu-bg::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 100px;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), transparent);
    transition: height 0.6s var(--easing) 0.4s;
}

.mobile-menu.active .mobile-menu-bg::after {
    height: calc(100% - 200px);
}

/* Content container */
.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 60px;
}

/* Navigation links */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--gray-medium);
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.5s ease, transform 0.5s var(--easing), border-color 0.3s ease;
}

.mobile-menu.active .mobile-menu-link {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delays */
.mobile-menu.active .mobile-menu-link:nth-child(1) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-link:nth-child(2) {
    transition-delay: 0.28s;
}

.mobile-menu.active .mobile-menu-link:nth-child(3) {
    transition-delay: 0.36s;
}

.mobile-menu.active .mobile-menu-link:nth-child(4) {
    transition-delay: 0.44s;
}

.mobile-menu-link-text {
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.3s ease, transform 0.3s var(--easing);
}

.mobile-menu-link-num {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

/* Link hover effects */
.mobile-menu-link:hover {
    border-color: var(--accent-color);
}

.mobile-menu-link:hover .mobile-menu-link-text {
    color: var(--accent-color);
    transform: translateX(12px);
}

.mobile-menu-link:hover .mobile-menu-link-num {
    color: var(--accent-color);
}

/* Footer area */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease, transform 0.2s var(--easing);
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.5s, transform 0.5s var(--easing) 0.5s;
}

/* CTA Button */
.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    background: var(--accent-color);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s var(--easing);
}

.mobile-menu-cta:hover {
    background: #d14a3f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 90, 79, 0.3);
}

.mobile-menu-cta-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.mobile-menu-cta-arrow {
    font-size: 18px;
    color: #fff;
    transition: transform 0.3s var(--easing);
}

.mobile-menu-cta:hover .mobile-menu-cta-arrow {
    transform: translateX(6px);
}

/* Bottom decoration */
.mobile-menu-decoration {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.mobile-menu-line {
    width: 40px;
    height: 1px;
    background: var(--gray-medium);
}

.mobile-menu-tagline {
    font-size: 12px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(52px, 6vw, 88px);
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: -2px;
    font-weight: 700;
}

.hero-title>span {
    display: block;
}

.accent-period {
    color: var(--accent-color);
}

.underline-accent {
    position: relative;
    display: inline-block;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    width: 100%;
    height: 0.08em;
    background: var(--accent-color);
}

/* Reveal text classes - now handled by GSAP */
.reveal-text {
    will-change: transform, opacity;
}

.hero-desc {
    font-size: 20px;
    max-width: 480px;
    color: var(--text-color);
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--accent-color);
    padding: 20px 36px;
    border-radius: 4px;
    transition: all 0.3s var(--easing);
}

.hero-cta-main,
.hero-cta-sub {
    display: inline;
}

.hero-cta-sub::before {
    content: ' — ';
}

.hero-cta:hover {
    background: #d14a3f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 90, 79, 0.3);
}

.cta-arrow {
    transition: transform 0.3s var(--easing);
    flex-shrink: 0;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 90, 79, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.visual-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    padding: 16px;
    transition: transform 0.4s var(--easing);
    opacity: 0.9;
}

.visual-card:hover {
    transform: translateY(-8px) rotate(0deg) !important;
}

/* Browser Header */
.browser-header {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-url-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 10px;
    color: var(--gray-light);
}

.browser-lock {
    font-size: 9px;
    opacity: 0.5;
}

/* SEO SERP Card */
.card-seo {
    width: 260px;
    top: 8%;
    right: 8%;
    transform: rotate(-3deg);
    z-index: 2;
    animation: floatSeo 6s ease-in-out infinite;
}

@keyframes floatSeo {

    0%,
    100% {
        transform: rotate(-3deg) translateY(0);
    }

    50% {
        transform: rotate(-3deg) translateY(-12px);
    }
}

.serp-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.serp-result {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.serp-result:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.serp-result-fade {
    opacity: 0.4;
}

.serp-result-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 1;
    background: rgba(232, 90, 79, 0.1);
    margin: 0 -16px;
    padding: 10px 16px;
    border-radius: 6px;
}

.serp-rank {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(232, 90, 79, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.serp-result-inner {
    flex: 1;
}

.serp-url {
    font-size: 11px;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.serp-url.highlight {
    color: var(--accent-color);
    font-weight: 500;
}

.serp-title-line {
    height: 10px;
    background: var(--gray-medium);
    border-radius: 3px;
    width: 85%;
    margin-bottom: 6px;
}

.serp-title-line.active {
    background: #8ab4f8;
    width: 90%;
}

.serp-desc-line {
    height: 6px;
    background: var(--gray-medium);
    border-radius: 3px;
    width: 100%;
    opacity: 0.6;
}

/* Google Ads Card */
.card-ads {
    width: 250px;
    bottom: 12%;
    left: 3%;
    transform: rotate(2deg);
    z-index: 3;
    animation: floatAds 5s ease-in-out infinite;
}

@keyframes floatAds {

    0%,
    100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-10px);
    }
}

.ads-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ads-result {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ads-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ad-badge {
    font-size: 9px;
    font-weight: 700;
    color: #1a1a1a;
    background: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ads-url {
    font-size: 11px;
    color: var(--gray-light);
}

.ads-title {
    font-size: 12px;
    color: #8ab4f8;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ads-desc-line {
    height: 6px;
    background: var(--gray-medium);
    border-radius: 3px;
    width: 100%;
    margin-bottom: 6px;
    opacity: 0.6;
}

.ads-desc-line.short {
    width: 70%;
}

.ads-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-secondary);
}

.metric-label {
    font-size: 10px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
}

.line {
    width: 1px;
    height: 50px;
    background: var(--gray-medium);
    position: relative;
    overflow: hidden;
}

.line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateY(-100%);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ==========================================================================
   Statement (Partner)
   ========================================================================== */
.statement {
    padding: 160px 0;
}

.statement-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.statement-image {
    position: relative;
    will-change: transform, opacity;
}

.statement-image img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(100%);
    transition: filter 0.6s var(--easing);
}

.statement-image:hover img {
    filter: grayscale(0%);
}

.statement-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.statement-content {
    max-width: 700px;
}

.statement-text {
    font-size: 28px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 32px;
    will-change: transform, opacity;
}

.statement-sub {
    font-size: 18px;
    color: var(--gray-light);
    border-left: 2px solid var(--accent-color);
    padding-left: 24px;
}

@media (max-width: 1024px) {
    .statement-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .statement-image {
        max-width: none;
        margin: 0 -40px;
        width: calc(100% + 80px);
    }

    .statement-image img {
        border-radius: 0;
    }

    .statement-content {
        text-align: left;
    }

    .statement-sub {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--accent-color);
        padding-top: 24px;
    }
}

/* ==========================================================================
   Expertise (How I Help)
   ========================================================================== */
.expertise {
    padding: 100px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
}

.section-num {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 700;
}

.section-title {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-light);
}

.expertise-list {
    display: flex;
    flex-direction: column;
}

.expertise-item {
    border-top: 1px solid var(--gray-medium);
    padding: 40px 0;
    transition: all 0.4s ease;
}

.expertise-item:last-child {
    border-bottom: 1px solid var(--gray-medium);
}

.expertise-item:hover {
    background: rgba(232, 90, 79, 0.05);
    padding-left: 20px;
}

.exp-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
    gap: 24px;
}

.exp-num {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
}

.exp-title {
    font-size: 36px;
    color: #fff;
    font-weight: 500;
    flex: 1;
}

.exp-content {
    max-width: 600px;
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ==========================================================================
   Journey
   ========================================================================== */
.journey {
    padding: 160px 0;
    background: var(--gray-dark);
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.journey-col {
    will-change: transform, opacity;
}

.journey-col p {
    margin-bottom: 24px;
}

.signature {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sig-name {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.sig-title {
    font-size: 14px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signature p {
    margin: 0
}

/* ==========================================================================
   Results Section - Editorial Magazine Style
   ========================================================================== */
.results-section {
    padding: 120px 0;
    background: var(--bg-color);
}

.results-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

.results-intro {
    position: sticky;
    top: 120px;
}

.results-intro .kicker-text {
    margin-bottom: 24px;
}

.results-tagline {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.results-tagline span {
    color: var(--accent-color);
}

.results-intro-text {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-top: 20px;
}

.results-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.results-card {
    background: var(--gray-dark);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: hidden;
}

.results-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.results-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.results-card:hover::before {
    height: 100%;
    top: 0;
}


.results-card-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
}

.results-story {
    padding: 48px;
    border-right: 1px solid var(--gray-medium);
}

.results-type-badge {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-secondary);
    border: 1px solid var(--accent-secondary);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
    font-weight: 600;
}

.results-story-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.results-story-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 16px;
}

.results-story-text:last-of-type {
    margin-bottom: 0;
}

.results-highlight {
    color: #fff;
    font-weight: 500;
}

.results-stats-sidebar {
    padding: 48px 32px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.results-stat-hero {
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--gray-medium);
}

.results-big-num {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    display: block;
}

.results-hero-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    margin-top: 8px;
}

.results-stats-supporting {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.results-stat {
    text-align: center;
}

.results-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.results-stat-label {
    font-size: 11px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-strip {
    padding: 16px 48px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    border-top: 1px solid var(--gray-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.results-strip::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .results-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .results-intro {
        position: relative;
        top: 0;
    }

    .results-card-inner {
        grid-template-columns: 1fr;
    }

    .results-story {
        border-right: none;
        border-bottom: 1px solid var(--gray-medium);
    }

    .results-stats-sidebar {
        flex-direction: row;
        justify-content: space-around;
        padding: 32px;
    }

    .results-stat-hero {
        border-bottom: none;
        border-right: 1px solid var(--gray-medium);
        padding-bottom: 0;
        padding-right: 32px;
        margin-bottom: 0;
        margin-right: 32px;
    }

    .results-stats-supporting {
        flex-direction: row;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .results-section {
        padding: 80px 0;
    }

    .results-tagline {
        font-size: 32px;
    }

    .results-story {
        padding: 32px;
    }

    .results-story-title {
        font-size: 20px;
    }

    .results-stats-sidebar {
        flex-direction: column;
        padding: 32px;
    }

    .results-stat-hero {
        border-right: none;
        border-bottom: 1px solid var(--gray-medium);
        padding-right: 0;
        padding-bottom: 24px;
        margin-right: 0;
        margin-bottom: 24px;
    }

    .results-stats-supporting {
        flex-direction: row;
        justify-content: center;
    }

    .results-big-num {
        font-size: 48px;
    }
}

/* ==========================================================================
   Testimonials (Typewriter Quote)
   ========================================================================== */
.testimonials-typewriter {
    padding: 160px 0;
    background: var(--bg-color);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-typewriter .section-header {
    margin-bottom: 80px;
}

.testimonials-typewriter .section-title {
    color: var(--accent-color);
}

.testimonials-quote-wrapper {
    margin-bottom: 60px;
    min-height: 180px;
    position: relative;
}

.testimonials-quote {
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.testimonials-quote::after {
    content: '|';
    color: var(--accent-color);
    animation: testimonials-blink 1s infinite;
    margin-left: 4px;
}

@keyframes testimonials-blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.testimonials-highlight {
    color: var(--accent-color);
    font-weight: 500;
}

.testimonials-client-section {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-medium);
}

.testimonials-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.testimonials-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.testimonials-client-info {
    flex: 1;
}

.testimonials-client-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.testimonials-client-company {
    font-size: 14px;
    color: var(--gray-light);
}

.testimonials-nav {
    display: flex;
    gap: 8px;
}

.testimonials-nav-btn {
    width: 48px;
    height: 48px;
    background: var(--gray-medium);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-nav-btn:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .testimonials-typewriter .section-header {
        margin-bottom: 24px;
    }

    .testimonials-quote {
        font-size: 24px;
    }

    .testimonials-quote-wrapper {
        min-height: 200px;
        margin-bottom: 40px;
    }

    .testimonials-client-section {
        flex-wrap: wrap;
    }

    .testimonials-client-info {
        flex: 1 1 calc(100% - 96px);
    }

    .testimonials-nav {
        width: 100%;
        justify-content: center;
        margin-top: 24px;
    }
}

/* ==========================================================================
   Investment (Pricing)
   ========================================================================== */
.investment {
    padding: 100px 0;
}

.investment-table {
    width: 100%;
}

.inv-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr 1fr;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-medium);
    transition: background 0.3s ease;
}

.header-row {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
    padding-bottom: 20px;
}

.header-row .col-plan,
.header-row .col-focus {
    font-size: 12px;
    font-weight: 600;
}

.inv-row:not(.header-row):hover {
    background: rgba(255, 255, 255, 0.03);
}

.col-plan h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
}

.plan-desc {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 400;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.tag {
    font-size: 12px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.col-focus {
    font-size: 15px;
    color: var(--gray-light);
    padding-right: 20px;
}

.col-price {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.period {
    font-size: 14px;
    color: var(--gray-light);
    font-weight: 400;
}

.btn-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.btn-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.pricing-footnotes {
    margin-top: 40px;
    font-size: 12px;
    color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 160px 0 40px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 120px;
}

.footer-cta {
    font-size: 6vw;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-cta span {
    color: var(--accent-color);
}

.footer-sub {
    font-size: 20px;
    color: var(--gray-light);
    max-width: 500px;
    margin-bottom: 60px;
}

.btn-circle {
    width: 160px;
    height: 160px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
    align-self: flex-end;
    margin-top: -100px;
}

.btn-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: scale(0);
    transition: transform 0.4s var(--easing);
    z-index: -1;
    border-radius: 50%;
}

.btn-circle:hover {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.btn-circle:hover::before {
    transform: scale(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.socials {
    display: flex;
    gap: 40px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        height: 350px;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .card-seo {
        width: 260px;
        top: 0;
        right: auto;
        left: 5%;
    }

    .card-ads {
        width: 250px;
        bottom: 0;
        left: auto;
        right: 5%;
    }

    .visual-glow {
        width: 300px;
        height: 300px;
    }

    .scroll-indicator {
        display: none;
    }

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

    .work-grid {
        display: flex;
        flex-direction: column;
    }

    .work-card {
        width: 100%;
    }

    .offset-card {
        margin-top: 0;
    }

    .inv-row {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }

    .header-row {
        display: none;
    }

    .col-action {
        margin-top: 16px;
    }

    .footer-main {
        align-items: center;
        text-align: center;
    }

    .btn-circle {
        align-self: center;
        margin-top: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-visual {
        height: 300px;
    }

    .visual-card {
        transform: rotate(0deg) !important;
        padding: 16px;
    }

    .card-seo {
        width: 220px;
        left: 5%;
        top: 5%;
    }

    .card-ads {
        width: 210px;
        right: 5%;
        bottom: 5%;
    }

    .serp-result-highlight {
        margin: 0 -16px;
        padding: 10px 16px;
    }

    .metric-value {
        font-size: 16px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        padding: 20px 24px;
    }

    .hero-cta-main {
        font-size: 15px;
        font-weight: 700;
    }

    .hero-cta-sub {
        font-size: 11px;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0.5px;
        opacity: 0.9;
    }

    .hero-cta-sub::before {
        content: '';
    }

    .cta-arrow {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-cta {
        position: relative;
    }
}

/* ==========================================================================
   Pricing Guarantee
   ========================================================================== */
.pricing-guarantee {
    margin-top: 40px;
    padding: 32px 0;
    border-left: 2px solid var(--accent-color);
    padding-left: 24px;
}

.guarantee-title {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-guarantee p {
    font-size: 16px;
    color: var(--gray-light);
    margin: 0;
    line-height: 1.6;
    max-width: 750px;
}

/* ==========================================================================
   Fit Section (Who This Is For)
   ========================================================================== */
.fit-section {
    padding: 100px 0;
    background: var(--gray-dark);
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.fit-col {
    padding: 40px;
    border-radius: 8px;
}

.fit-yes {
    background: rgba(232, 90, 79, 0.08);
    border: 1px solid rgba(232, 90, 79, 0.15);
}

.fit-no {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fit-col h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
}

.fit-yes h3 {
    color: var(--accent-color);
}

.fit-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-col li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
}

.fit-col li:last-child {
    margin-bottom: 0;
}

.fit-yes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.fit-no li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-color: var(--gray-light);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

@media (max-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fit-col {
        padding: 32px;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--gray-medium);
    padding: 32px 0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--gray-medium);
}

.faq-item:hover {
    background: rgba(232, 90, 79, 0.03);
    padding-left: 20px;
}

.faq-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 24px;
}

.faq-question {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    color: var(--gray-light);
    transition: transform 0.3s var(--easing), color 0.3s ease;
}

.faq-item:hover .faq-icon {
    color: var(--accent-color);
}

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

.faq-content {
    max-width: 700px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--easing), margin-top 0.4s var(--easing);
    margin-top: 0;
}

.faq-item.active .faq-content {
    max-height: 300px;
    margin-top: 16px;
}


/* ==========================================================================
   Mobile Optimization Overrides (Consolidated)
   ========================================================================== */
@media (max-width: 768px) {

    /* Global Section Padding Adjustments */
    .hero,
    .statement,
    .expertise,
    .results-section,
    .testimonials-typewriter,
    .journey,
    .investment,
    .fit-section,
    .faq-section,
    .footer {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero {
        padding-top: 100px;
        /* Keep nav clearance */
        padding-bottom: 40px;
    }

    /* Typography Adjustments */
    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .statement-text {
        font-size: 20px;
    }

    /* Hero Specifics */
    .hero-inner {
        gap: 40px;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    /* Expertise Section */
    .expertise-list {
        gap: 0;
        /* Reset gap as items have padding */
    }

    .expertise-item {
        padding: 30px 0;
    }

    .exp-header {
        gap: 16px;
        margin-bottom: 16px;
    }

    .exp-title {
        font-size: 24px;
    }

    /* Results Section */
    .results-intro {
        margin-bottom: 40px;
    }

    .results-tagline {
        font-size: 32px;
    }

    /* Testimonials */
    .testimonials-quote {
        font-size: 22px;
        line-height: 1.5;
        position: relative;
        /* Override absolute positioning for natural flow */
    }

    .testimonials-quote-wrapper {
        min-height: auto;
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    /* Journey */
    .journey-grid {
        gap: 40px;
    }

    /* Investment / Pricing */
    .investment-table {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .inv-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .inv-row.header-row {
        display: none;
    }

    .col-plan,
    .col-focus,
    .col-price,
    .col-action {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .col-plan h3 {
        font-size: 22px;
        color: var(--accent-color);
    }

    .col-price {
        font-size: 28px;
        margin: 10px 0;
    }

    .btn-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 4px;
        text-align: center;
        width: 100%;
        color: #fff;
        text-decoration: none;
    }

    .btn-link:hover {
        background: var(--accent-color);
        color: #fff;
    }

    /* Footer */
    .footer {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .footer-cta {
        font-size: 48px;
    }

    .btn-circle {
        width: 120px;
        height: 120px;
        margin-top: 0;
        align-self: center;
    }
}