/* SBTC Consolidated CSS - Premium Editorial Design System */
/* Refined palette: charcoal base, forest green accent, warm supporting tones */

/* ─────────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS - PREMIUM BLACK & DARK GREEN PALETTE
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* ─── Surface Hierarchy - Black-First ─── */
    /* Deep charcoal: dominant background for premium feel */
    --bg-primary: #0b0b0d;
    
    /* Elevated charcoal: for sections and surfaces */
    --bg-secondary: #111114;
    
    /* Dark graphite: for cards and components */
    --bg-tertiary: #1a1a1f;
    
    /* Form inputs and interactive elements */
    --bg-elevated: #23232a;
    
    /* Hover states */
    --bg-hover: #2a2a32;

    /* ─── Accent System - Bright Green Theme ─── */
    /* Primary: Bright technical green - matching homepage */
    --accent-primary: #00ff66;
    --accent-primary-hover: #00cc55;
    --accent-primary-light: rgba(0, 255, 102, 0.12);
    --accent-primary-medium: rgba(0, 255, 102, 0.2);
    --accent-primary-dark: rgba(0, 255, 102, 0.35);
    
    /* Secondary: Muted sage - for supporting elements */
    --accent-secondary: #2d4a3a;
    --accent-secondary-light: rgba(45, 74, 58, 0.15);
    
    /* Tertiary: Warm graphite - for dividers and subtle depth */
    --accent-tertiary: #6b6b6b;
    --accent-tertiary-light: rgba(107, 107, 107, 0.15);

    /* ─── Text Colors - High Contrast on Black ─── */
    /* Primary: Warm off-white for main text */
    --text-primary: #f8f8f6;
    
    /* Secondary: Muted warm gray for readability */
    --text-secondary: #d7d7d0;
    
    /* Tertiary: More muted for metadata */
    --text-tertiary: #b1b1aa;
    
    /* Muted: For disabled/placeholder text */
    --text-muted: #6b6b66;

    /* ─── Border System - Subtle Graphite Lines ─── */
    --border-subtle: rgba(107, 107, 107, 0.15);
    --border-light: rgba(107, 107, 107, 0.25);
    --border-medium: rgba(107, 107, 107, 0.4);
    --border-accent: rgba(26, 61, 45, 0.4);

    /* ─── Spacing Scale - Technical Precision ─── */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */

    /* ─── Typography Scale - Commanding Hierarchy ─── */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */

    /* ─── Font Families - Authority and Clarity ─── */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --font-mono: 'DM Mono', monospace;

    /* ─── Border Radius - Controlled and Premium ─── */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* ─── Shadows - Subtle Technical Depth ─── */
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.34);
    --shadow-accent: 0 18px 44px rgba(0, 255, 102, 0.12);

    /* ─── Transitions - Smooth Technical Feel ─── */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* ─── Container - Structured Layout ─── */
    --container-max: 1200px;
    --container-padding: 2rem;
}

/* ─── Light Theme ─── */
body.light-theme {
    --bg-primary: #f7f6f4;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0eeeb;
    --bg-elevated: #e8e6e3;
    --bg-hover: #e5e3e0;
    
    --text-primary: #1a1f1c;
    --text-secondary: #4a5046;
    --text-tertiary: #6a7066;
    --text-muted: #9a968e;
    
    --border-subtle: rgba(26, 31, 28, 0.08);
    --border-light: rgba(26, 31, 28, 0.15);
    --border-medium: rgba(26, 31, 28, 0.25);
    
    --shadow-sm: 0 1px 2px rgba(26, 31, 28, 0.08);
    --shadow-md: 0 4px 12px rgba(26, 31, 28, 0.1);
    --shadow-lg: 0 8px 24px rgba(26, 31, 28, 0.12);
    --shadow-accent: 0 4px 16px rgba(45, 90, 61, 0.15);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(0, 255, 102, 0.5);
    outline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER & NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 31, 28, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

body.light-theme header {
    background: rgba(247, 246, 244, 0.95);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 52px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
    width: 100%;
}

/* Nav CTA Button */
.nav-cta {
    background: linear-gradient(180deg, var(--accent-primary) 0%, #16cc5f 100%);
    color: #081109 !important;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 600 !important;
    box-shadow: 0 12px 28px rgba(0, 255, 102, 0.14);
    transition: all var(--transition-fast);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: linear-gradient(180deg, #1aff71 0%, var(--accent-primary-hover) 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 255, 102, 0.18);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.is-open span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    min-height: 3.25rem;
    padding: 14px 22px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(180deg, var(--accent-primary) 0%, #16cc5f 100%);
    color: #081109;
    border: 1px solid transparent;
    box-shadow: 0 12px 28px rgba(0, 255, 102, 0.14);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #1aff71 0%, var(--accent-primary-hover) 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 255, 102, 0.18);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    background: var(--accent-primary-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: var(--text-base);
}

.media-frame,
.hero-visual,
.about-trust-card,
.service-overview-card,
.why-card,
.guarantee-card,
.cred-card,
.fit-card,
.wont-card,
.glance-card {
    border-radius: 22px;
    overflow: hidden;
}

.service-overview-card,
.why-card,
.guarantee-card,
.cred-card {
    padding: calc(var(--space-xl) + 0.25rem);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(45, 90, 61, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(154, 145, 133, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent-primary-light);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-subheadline {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.hero-body {
    font-size: var(--text-lg);
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.visual-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: var(--space-md);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.service-list-item:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
    transform: translateX(4px);
}

.service-list-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

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

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--accent-primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTIONS - ENHANCED LAYERING
   ───────────────────────────────────────────────────────────────────────────── */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Section Variants for Visual Rhythm ─── */
/* Primary section - on main background */
section:not(.founder-block):not(.client-expectations-section):not(.guarantee-section):not(.blog-section):not(.cta-section) {
    background: var(--bg-primary);
}

/* Secondary sections - slightly elevated */
.founder-block,
.client-expectations-section,
.guarantee-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* Blog section */
.blog-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOUNDER BLOCK
   ───────────────────────────────────────────────────────────────────────────── */
.founder-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.founder-photo-wrap {
    flex-shrink: 0;
}

.founder-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-subtle);
}

.founder-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.founder-content > p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.founder-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.founder-trust-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.founder-trust-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SERVICES OVERVIEW
   ───────────────────────────────────────────────────────────────────────────── */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-overview-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-overview-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-hover);
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-secondary);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-overview-card:hover::before {
    opacity: 1;
}

.service-overview-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.service-overview-card p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.card-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-primary);
    transition: all var(--transition-fast);
}

.card-link:hover {
    color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   WHY CHOOSE SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.why-section {
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.why-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.why-card:hover {
    border-color: var(--border-light);
    background: var(--bg-hover);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CLIENT EXPECTATIONS
   ───────────────────────────────────────────────────────────────────────────── */
.expectations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.expectation-item {
    display: flex;
    gap: var(--space-lg);
}

.expectation-num {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--accent-tertiary);
    opacity: 0.5;
    line-height: 1;
    flex-shrink: 0;
}

.expectation-item h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.expectation-item p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* Early Offer Block */
.early-offer-block {
    background: var(--accent-primary-light);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
}

.early-offer-inner h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.early-offer-inner p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PORTFOLIO / EXAMPLE ENGAGEMENTS
   ───────────────────────────────────────────────────────────────────────────── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.portfolio-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.portfolio-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
}

.portfolio-tag {
    background: var(--accent-secondary);
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-content {
    padding: var(--space-xl);
}

.portfolio-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.portfolio-stats {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.portfolio-stats .stat {
    background: var(--accent-secondary-light);
    color: var(--text-secondary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HOW I WORK / PROCESS
   ───────────────────────────────────────────────────────────────────────────── */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.guarantee-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.guarantee-card:hover {
    border-color: var(--border-light);
    background: var(--bg-hover);
}

.guarantee-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.guarantee-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HUB PROMO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hub-promo-section {
    background: var(--bg-primary);
    position: relative;
}

.hub-promo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 70% 50%, var(--accent-primary-light) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, var(--accent-tertiary-light) 0%, transparent 40%);
    pointer-events: none;
}

.hub-promo-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hub-promo-text h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.hub-promo-text > p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.hub-promo-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hub-promo-link {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--accent-primary);
    transition: color var(--transition-fast);
}

.hub-promo-link:hover {
    color: var(--text-primary);
}

.hub-promo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hub-promo-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.5;
}

.hub-promo-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-secondary);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    transition: background var(--transition-fast);
}

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

.faq-question h3 {
    font-size: var(--text-base);
    font-weight: 600;
    padding-right: var(--space-md);
    color: var(--text-primary);
}

.faq-toggle {
    font-size: var(--text-xl);
    color: var(--accent-primary);
    font-weight: 300;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.cta-section {
    background: var(--accent-primary);
    color: var(--text-primary);
    text-align: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.cta-content p {
    font-size: var(--text-lg);
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.cta-content .btn-primary {
    background: var(--text-primary);
    color: var(--accent-primary);
}

.cta-content .btn-primary:hover {
    background: var(--bg-tertiary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.badge {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BLOG SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.blog-card {
    display: block;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-hover);
}

.blog-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-image .blog-tag {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    padding: var(--space-md) var(--space-lg) var(--space-sm);
    line-height: 1.3;
    color: var(--text-primary);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    padding: 0 var(--space-lg) var(--space-lg);
    line-height: 1.6;
}

.blog-tag {
    background: var(--accent-secondary);
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

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

.footer-description {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent-tertiary);
    flex-shrink: 0;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

.footer-cta-block {
    margin-top: var(--space-lg);
}

.footer-cta-btn {
    display: inline-block;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.footer-cta-btn:hover {
    background: var(--accent-primary-hover);
}

.footer-cta-note {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-xs);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.footer-bottom-left p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.social-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-right: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: var(--accent-primary-light);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SCROLL PROGRESS & BACK TO TOP
   ───────────────────────────────────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent-primary);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s linear;
}

#back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
    background: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition-base);
    z-index: 500;
    box-shadow: var(--shadow-md);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   ACCESSIBILITY
   ───────────────────────────────────────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }
    
    .hero-body {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-overview-grid,
    .why-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hub-promo-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hub-promo-ctas {
        justify-content: center;
    }
    
    .hub-promo-list {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    nav {
        height: 74px;
    }

    .logo img {
        height: 46px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-tertiary);
        border-bottom: 1px solid var(--border-subtle);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-xs);
    }
    
    .nav-links.open,
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links a {
        display: block;
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .nav-links a:hover,
    .nav-links a.nav-active {
        background: var(--accent-primary-light);
    }
    
    .nav-cta {
        text-align: center;
        margin-top: var(--space-sm);
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }
    
    .hero h1 {
        font-size: var(--text-3xl);
    }
    
    .hero-subheadline {
        font-size: var(--text-lg);
    }
    
    .stats-bar {
        justify-content: space-around;
    }
    
    .founder-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-photo-wrap {
        order: -1;
    }
    
    .founder-photo {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .founder-trust-list {
        align-items: center;
    }
    
    .services-overview-grid,
    .why-grid,
    .portfolio-grid,
    .blog-grid,
    .guarantee-grid,
    .expectations-grid {
        grid-template-columns: 1fr;
    }
    
    .expectation-item {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .section-header h2 {
        font-size: var(--text-2xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .trust-badges {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0.85rem;
    }

    .hero h1 {
        font-size: var(--text-2xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: var(--space-sm);
    }
    
    .stat-value {
        margin-bottom: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ABOUT PAGE STYLES
   ───────────────────────────────────────────────────────────────────────────── */

.breadcrumb-nav {
    background: var(--bg-primary);
    padding: 0.85rem 0 0;
}
.breadcrumb-nav .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
}
.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-muted);
    font-size: var(--text-sm);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--text-muted);
    margin-right: 0.1rem;
}
.breadcrumb-link,
.breadcrumb-current {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.breadcrumb-link {
    color: var(--text-secondary);
}
.breadcrumb-link:hover {
    color: var(--text-primary);
}
.breadcrumb-current {
    color: var(--text-primary);
}

/* About Hero */
.about-hero {
    background: var(--bg-primary);
    padding: clamp(3.1rem, 5vw, 4.5rem) 0 clamp(2.1rem, 3.4vw, 3rem);
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(44, 244, 106, 0.12), transparent 26%),
        radial-gradient(circle at left 16%, rgba(0, 212, 255, 0.08), transparent 24%);
    pointer-events: none;
}
.about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: clamp(1.75rem, 3vw, 2.8rem);
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}
.about-hero-text {
    color: var(--text-primary);
}
.about-hero-text .section-label {
    color: var(--accent-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.about-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    max-width: 9.8ch;
}
.about-intro-lead {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-primary);
    max-width: 40rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.about-hero-support {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 42rem;
    line-height: 1.75;
    margin: 0 0 var(--space-xl);
}
.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}
.about-hero-text p {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}
.about-hero-text p + p {
    margin-bottom: var(--space-2xl);
}
.about-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    justify-self: end;
    width: min(100%, 340px);
    text-align: left;
}
.about-proof-list {
    list-style: none;
    display: grid;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
}
.about-proof-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: var(--text-base);
    color: var(--text-primary);
    line-height: 1.6;
}
.about-proof-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-primary-light);
}
.about-photo-real {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    object-position: center 18%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}
.about-hero-note {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-top: var(--space-lg);
    margin-bottom: 0;
}
.about-trust-card {
    width: 100%;
    max-width: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: 1.35rem 1.4rem;
    text-align: left;
    box-shadow: var(--shadow-lg);
}
.about-trust-eyebrow {
    color: var(--accent-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}
.about-trust-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
    line-height: 1.2;
}
.about-trust-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}
.about-trust-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.about-trust-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-size: 1.2rem;
    line-height: 1;
}
.about-mini-facts {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1rem;
}
.about-mini-facts div {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
}
.about-mini-facts span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.about-mini-facts strong,
.about-mini-facts strong a {
    color: var(--text-primary);
    line-height: 1.5;
}
.about-trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}
.about-trust-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Credentials Strip */
.credentials-strip {
    background: var(--bg-secondary);
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.credentials-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}
.cred-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-fast);
}
.cred-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-accent);
}
.cred-value {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
    line-height: 1;
}
.cred-label {
    font-size: var(--text-base);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Background Section */
.background-section {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: var(--bg-primary);
}
.background-section + .background-section {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.background-inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.02fr);
    gap: clamp(1.75rem, 3vw, 2.7rem);
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    align-items: flex-start;
}
.background-sticky {
    position: sticky;
    top: clamp(1rem, 2vw, 1.5rem);
}
.about-section-kicker {
    color: var(--accent-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.7rem;
}
.background-sticky .section-label {
    color: var(--accent-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.background-sticky h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.8vw, 2.25rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
}
.background-sticky p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}
.background-copy {
    color: var(--text-secondary);
    max-width: 40rem;
    display: grid;
    gap: 1rem;
}
.background-copy p {
    font-size: clamp(1rem, 1.45vw, 1.08rem);
    line-height: 1.78;
    margin-bottom: 0;
}
.background-copy p:last-child {
    margin-bottom: 0;
}
.about-process-list,
.about-fit-grid {
    display: grid;
    gap: 1rem;
    margin-top: 0.2rem;
}
.about-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-process-list article,
.about-fit-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.15rem 1.1rem;
}
.about-process-list h3,
.about-fit-card h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--text-primary);
}
.about-process-list p,
.about-fit-card p {
    margin: 0;
}
.about-fit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.about-fit-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.about-fit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--accent-primary);
    box-shadow: 0 0 0 5px rgba(0, 255, 102, 0.12);
}
.background-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}
.background-benefit {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}
.background-benefit h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}
.background-benefit p {
    margin-bottom: 0;
    font-size: var(--text-base);
}

/* Best Fit Section */
.fit-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}
.fit-section .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}
.fit-section .section-label {
    color: var(--accent-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.fit-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.fit-section .section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}
.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}
.fit-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: var(--transition-fast);
}
.fit-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-accent);
}
.fit-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.fit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}
.fit-note {
    max-width: 760px;
    margin: var(--space-2xl) auto 0;
    padding: 0 var(--space-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-base);
    line-height: 1.7;
}

/* How I Work */
.how-i-work {
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
}
.how-i-work .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}
.how-i-work .section-label {
    color: var(--accent-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.how-i-work .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.how-i-work .section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}
.process-step {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
}
.process-step:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-accent);
}
.process-num {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--accent-primary);
    background: var(--accent-primary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}
.process-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}
.process-step h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.process-step p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Won't Do Section */
.wont-do-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}
.wont-do-section .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}
.wont-do-section .section-label {
    color: var(--accent-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.wont-do-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.wont-do-section .section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.wont-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}
.wont-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: var(--transition-fast);
}
.wont-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-accent);
}
.wont-icon {
    font-size: var(--text-3xl);
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
    display: block;
}
.wont-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.wont-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services at a Glance */
.services-glance {
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
}
.services-glance .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}
.services-glance .section-label {
    color: var(--accent-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.services-glance .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.services-glance .section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}
.glance-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: var(--transition-fast);
    text-align: center;
}
.glance-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-accent);
}
.glance-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
    display: block;
}
.glance-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.glance-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}
.glance-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}
.glance-link:hover {
    color: var(--accent-primary-hover);
}

/* About CTA */
.about-cta {
    padding: clamp(2.7rem, 4.2vw, 4rem) 0 clamp(2.2rem, 3.5vw, 3rem);
    background: var(--bg-primary);
    text-align: center;
}
.about-closing-card {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(1.75rem, 3vw, 2.4rem);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    box-shadow: var(--shadow-lg);
}
.about-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}
.about-cta p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 44rem;
    margin: 0 auto 1.1rem;
    line-height: 1.78;
}
.about-cta p:last-of-type {
    margin-bottom: 0;
}
.about-cta-meta,
.about-cta-meta a {
    color: var(--text-muted);
    font-size: var(--text-base);
}
.about-cta-btns {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.5rem;
    }
    
    .background-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .breadcrumb-list {
        gap: 0.45rem;
    }
    
    .background-sticky {
        position: static;
    }

    .about-hero-visual {
        justify-self: start;
        width: 100%;
        max-width: none;
    }
    
    .credentials-inner,
    .fit-grid,
    .process-grid,
    .wont-do-grid,
    .glance-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-process-list,
    .about-fit-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-text h1 {
        font-size: var(--text-3xl);
        max-width: 10.5ch;
    }
    
    .how-i-work .section-title,
    .fit-section .section-title,
    .wont-do-section .section-title,
    .services-glance .section-title {
        font-size: var(--text-2xl);
    }

    .about-trust-card {
        text-align: left;
        width: 100%;
    }
}

/* ══════════════════════════════════════════════════
   SERVICE SELECTION POPUP
   ══════════════════════════════════════════════════ */

.service-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.service-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-popup-modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-subtle);
}

.service-popup-overlay.active .service-popup-modal {
    transform: translateY(0);
}

/* Close button */
.service-popup-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.service-popup-close:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--border-medium);
}

/* Progress bar (step 2 header) */
.popup-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}

.popup-back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.popup-back-btn:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

/* Content */
.service-popup-content {
    text-align: center;
}

.service-popup-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.service-popup-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Buttons */
.service-popup-buttons,
.website-type-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.service-popup-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.service-popup-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary-light);
    transform: translateX(3px);
}

.service-popup-btn .btn-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
}

.service-popup-btn .btn-text {
    font-weight: 500;
    color: var(--text-primary);
}

/* Two-column grid for website type step */
.website-type-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.website-type-buttons .service-popup-btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
}

.website-type-buttons .service-popup-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .service-popup-modal {
        padding: 1.75rem 1.25rem;
    }

    .website-type-buttons {
        grid-template-columns: 1fr;
    }
}
