/*
Theme Name: NoMarketer
Theme URI: https://nomarketer.com.au
Author: NoMarketer
Author URI: https://nomarketer.com.au
Description: NoMarketer - Never Hire A Marketing Agency Again. A high-conversion WordPress theme for the NoMarketer course platform.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nomarketer
Tags: business, marketing, course, landing-page
*/

/* =============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
============================================= */
:root {
    --primary: #00ADEF;
    --primary-dark: #0090C9;
    --primary-light: #E0F7FF;
    --accent: #E63329;
    --accent-dark: #C0271E;
    --accent-light: #FFF0EF;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --border: #E2E8F0;
    --light: #F1F5F9;
    --light-2: #F8FAFC;
    --white: #FFFFFF;
    --success: #10B981;

    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);

    --transition: 0.25s ease;
    --max-width: 1200px;
    --section-padding: 100px 0;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--dark-3);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent) !important; }
.text-primary { color: var(--primary) !important; }

.section { padding: var(--section-padding); }
.section-sm { padding: 60px 0; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-primary { background: var(--primary-light); color: var(--primary-dark); }
.badge-accent { background: var(--accent-light); color: var(--accent-dark); }
.badge-dark { background: rgba(255,255,255,0.15); color: var(--white); }
.badge-ai { background: linear-gradient(135deg, #7C3AED, #2563EB); color: var(--white); }

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,173,239,0.35);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,51,41,0.35);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-xl {
    padding: 22px 56px;
    font-size: 1.2rem;
    border-radius: var(--radius-lg);
}

/* =============================================
   NAVIGATION
============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
    padding: 0;
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-logo .logo-text span { color: var(--accent); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-menu .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SECTION
============================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F2744 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,173,239,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230,51,41,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-headline .highlight {
    color: var(--accent);
    position: relative;
}

.hero-headline .highlight-blue { color: var(--primary); }

.hero-subheadline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    max-width: fit-content;
}

.hero-social-proof .avatars {
    display: flex;
}

.hero-social-proof .avatars .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.hero-social-proof .avatars .avatar:first-child { margin-left: 0; }

.hero-social-proof .proof-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

.hero-social-proof .proof-text strong {
    color: var(--white);
    display: block;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-robot-wrap {
    position: relative;
}

.hero-robot-wrap img {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0,173,239,0.3));
    animation: float 4s ease-in-out infinite;
}

.hero-robot-wrap .floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

.hero-robot-wrap .floating-card .card-icon { font-size: 1.2rem; margin-bottom: 2px; }
.hero-robot-wrap .floating-card .card-val { color: var(--success); font-size: 1.1rem; }

.floating-card-1 { top: 10%; left: -15%; }
.floating-card-2 { bottom: 15%; right: -10%; }
.floating-card-3 { top: 45%; left: -20%; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* =============================================
   TRUST BAR
============================================= */
.trust-bar {
    background: var(--primary);
    padding: 0;
    overflow: hidden;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-stat {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: background var(--transition);
}

.trust-stat:last-child { border-right: none; }
.trust-stat:hover { background: rgba(255,255,255,0.1); }

.trust-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-stat .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =============================================
   SECTION HEADERS
============================================= */
.section-header {
    margin-bottom: 60px;
}

.section-header .pre-title {
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 620px;
    line-height: 1.7;
}

.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* =============================================
   PROBLEM SECTION (WHY NOMARKETER)
============================================= */
.section-problem { background: var(--light-2); }

.problem-intro {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.problem-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.problem-intro p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 72px;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.problem-card .card-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(230,51,41,0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

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

/* The Math Box */
.math-box {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 56px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 60px;
}

.math-content .math-badge {
    margin-bottom: 20px;
}

.math-content h3 {
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 16px;
}

.math-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.math-breakdown {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.math-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.92rem;
}

.math-row:last-child { border-bottom: none; }
.math-row .label { color: rgba(255,255,255,0.65); }
.math-row .value { font-weight: 700; color: var(--white); }
.math-row.highlight-row { background: rgba(230,51,41,0.15); }
.math-row.highlight-row .value { color: var(--accent); font-size: 1.1rem; }

/* =============================================
   SOLUTION SECTION
============================================= */
.section-solution { background: var(--white); }

.solution-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.solution-pillar {
    text-align: center;
    padding: 44px 32px;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    position: relative;
}

.solution-pillar:nth-child(2) {
    background: var(--dark);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
}

.solution-pillar:nth-child(1),
.solution-pillar:nth-child(3) {
    background: var(--light);
    border: 2px solid var(--border);
}

.solution-pillar:hover { transform: translateY(-6px) scale(1.01); }
.solution-pillar:nth-child(2):hover { transform: scale(1.06) translateY(-4px); }

.pillar-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.solution-pillar:nth-child(1) .pillar-icon { background: var(--primary-light); }
.solution-pillar:nth-child(2) .pillar-icon { background: rgba(255,255,255,0.12); }
.solution-pillar:nth-child(3) .pillar-icon { background: rgba(124,58,237,0.12); }

.solution-pillar h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.solution-pillar:nth-child(2) h3 { color: var(--white); }

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

.solution-pillar:nth-child(2) p { color: rgba(255,255,255,0.7); }

/* =============================================
   COURSES SECTION (WHAT YOU'LL LEARN)
============================================= */
.section-courses { background: var(--light); }

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-card-header {
    padding: 36px 32px 28px;
    position: relative;
}

.course-card:nth-child(1) .course-card-header { background: linear-gradient(135deg, #0F172A, #1E3A5F); }
.course-card:nth-child(2) .course-card-header { background: linear-gradient(135deg, #1B1B2B, #2D1B4E); }
.course-card:nth-child(3) .course-card-header { background: linear-gradient(135deg, #1A0A0A, #3D1515); }

.course-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.course-card-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.course-card-header .course-tagline {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.ai-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #7C3AED, #2563EB);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.course-card-body {
    padding: 28px 32px 32px;
}

.course-feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.course-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--dark-3);
    border-bottom: 1px solid var(--border);
}

.course-feature-list li:last-child { border-bottom: none; }

.course-feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =============================================
   TESTIMONIALS / RESULTS
============================================= */
.section-results { background: var(--dark); }

.section-results .section-header h2 { color: var(--white); }
.section-results .section-header p { color: rgba(255,255,255,0.6); }

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.result-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}

.result-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(0,173,239,0.3);
    transform: translateY(-4px);
}

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

.result-card blockquote {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.result-card .result-outcome {
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-card .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-card .client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.result-card .client-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.result-card .client-biz {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.results-disclaimer {
    margin-top: 48px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* =============================================
   ABOUT SNAPSHOT SECTION
============================================= */
.section-about-snap { background: var(--white); }

.about-snap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-snap-visual {
    position: relative;
}

.about-snap-visual .robot-img {
    max-width: 380px;
    margin: 0 auto;
    filter: drop-shadow(0 16px 40px rgba(0,173,239,0.2));
}

.about-snap-visual .agency-badge {
    position: absolute;
    bottom: -10px;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-left: 4px solid var(--primary);
}

.about-snap-visual .agency-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.about-snap-visual .agency-badge .badge-txt {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
}

.about-snap-content .pre-title { margin-bottom: 12px; }

.about-snap-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-snap-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-snap-content .agency-name {
    font-weight: 700;
    color: var(--primary);
}

.about-creds {
    display: flex;
    gap: 24px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-2);
}

.cred-item .cred-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* =============================================
   FINAL CTA SECTION
============================================= */
.section-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0,173,239,0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.section-cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-trust-signals {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.cta-trust-signals span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust-signals .dot { color: var(--success); font-size: 1.2rem; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
    background: #080E1A;
    padding: 60px 0 32px;
    color: rgba(255,255,255,0.6);
}

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

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-brand .footer-agency {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-brand .footer-agency a {
    color: var(--primary);
    font-weight: 600;
}

.footer-brand .footer-agency a:hover { color: var(--primary-dark); }

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

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* =============================================
   ABOUT PAGE
============================================= */
.about-hero {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    padding: 160px 0 100px;
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.about-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story { background: var(--white); }

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

.about-story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-story-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-story-content .big-quote {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 32px 0;
    line-height: 1.5;
    font-style: italic;
}

.about-cred-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-cred-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid var(--border);
    text-align: center;
}

.about-cred-box .cred-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.about-cred-box .cred-label {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 600;
}

.about-visual-col {
    position: sticky;
    top: 120px;
}

.about-robot-feature {
    text-align: center;
    margin-bottom: 36px;
}

.about-robot-feature img {
    max-width: 320px;
    margin: 0 auto;
    filter: drop-shadow(0 12px 32px rgba(0,173,239,0.2));
}

.about-agency-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: var(--white);
}

.about-agency-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.about-agency-card .agency-url {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.about-agency-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.client-logos-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.client-name-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.client-name-pills .pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* =============================================
   BOOK A CALL PAGE
============================================= */
.book-hero {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    padding: 140px 0 80px;
    text-align: center;
}

.book-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.book-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.book-section { background: var(--light-2); }

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.book-info h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.book-what-to-expect h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--dark-3);
}

.expect-list li:last-child { border-bottom: none; }

.expect-list li .expect-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.book-robot {
    text-align: center;
    margin-top: 40px;
}

.book-robot img {
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.85;
}

.book-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 600px;
    border: 1px solid var(--border);
}

.book-form-placeholder {
    padding: 60px 40px;
    text-align: center;
    color: var(--gray);
}

.book-form-placeholder .placeholder-icon { font-size: 3rem; margin-bottom: 16px; }
.book-form-placeholder h3 { color: var(--dark); margin-bottom: 8px; }
.book-form-placeholder p { font-size: 0.9rem; }
.book-form-placeholder code {
    background: var(--light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--accent);
}

/* =============================================
   MOBILE RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .hero-headline { font-size: 2.8rem; }
    .math-box { grid-template-columns: 1fr; gap: 36px; }
    .about-snap-grid { grid-template-columns: 1fr; }
    .about-snap-visual { display: none; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-visual-col { display: none; }
    .book-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 70px 0; }

    .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 8px; z-index: 999; }
    .nav-menu.open { display: flex; }
    .nav-menu a { font-size: 1.2rem; padding: 14px 24px; }
    .nav-toggle { display: flex; z-index: 1000; }

    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .trust-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }

    .problem-cards { grid-template-columns: 1fr; }
    .solution-pillars { grid-template-columns: 1fr; }
    .solution-pillar:nth-child(2) { transform: none; }
    .courses-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-cred-boxes { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-trust-signals { gap: 16px; }
    .math-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2.2rem; }
    .about-cred-boxes { grid-template-columns: 1fr; }
    .btn-xl, .btn-lg { width: 100%; text-align: center; justify-content: center; }
}
