/* ============================================================
   B2B Marketing.Global - Shared Stylesheet
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --teal: #2AAAA0;
    --gold: #F0B323;
    --magenta: #E91E7B;
    --yellow: #FFB020;
    --orange: #E86020;
    --hot-pink: #F01060;
    --purple: #8020D0;
    --blue: #4080F0;
    --navy: #0D0D2B;
    --charcoal: #1A1A3E;
    --light-grey: #F5F6FA;
    --white: #FFFFFF;
    --text-dark: #0D0D2B;
    --text-body: #333355;
    --text-muted: #555;
    --text-light: #666;
    --text-lighter: #777;
    --border-light: #eee;
    --gradient-cta: linear-gradient(135deg, var(--yellow), var(--orange), var(--hot-pink));
    --gradient-hero: linear-gradient(165deg, var(--navy) 0%, var(--charcoal) 50%, var(--navy) 100%);
    --gradient-cool: linear-gradient(135deg, var(--blue), var(--purple), var(--hot-pink));
    --gradient-nav-btn: linear-gradient(135deg, var(--hot-pink), var(--purple));
    --gradient-animated: linear-gradient(135deg, var(--yellow), var(--orange), var(--hot-pink), var(--purple), var(--blue));
    --shadow-sm: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --shadow-pink: 0 4px 24px rgba(240, 16, 96, 0.3);
    --shadow-purple: 0 4px 24px rgba(128, 32, 208, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    --nav-height: 72px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-cool {
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.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;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}
.btn-primary {
    background: var(--gradient-cta);
    color: #fff;
    box-shadow: var(--shadow-pink);
    position: relative;
    z-index: 1;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-cta);
    border-radius: 53px;
    z-index: -1;
    filter: blur(16px);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240, 16, 96, 0.45); }
.btn-primary:hover::before { opacity: 0.8; }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-ghost-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(13,13,43,0.3);
}
.btn-ghost-dark:hover { border-color: var(--text-dark); background: rgba(13,13,43,0.04); }

.btn-cta-gradient {
    background: var(--gradient-animated);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: #fff;
    box-shadow: var(--shadow-purple);
}
.btn-cta-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(128, 32, 208, 0.5); }

.btn-nav {
    padding: 10px 24px;
    font-size: 0.875rem;
    background: var(--gradient-nav-btn);
    color: #fff;
    border-radius: var(--radius-pill);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240, 16, 96, 0.4); }

/* ========== ANIMATIONS ========== */
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.8; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 43, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: -0.5px;
}
.nav-logo .b1 { color: var(--teal); }
.nav-logo .two { color: var(--gold); }
.nav-logo .b2 { color: var(--magenta); }
.nav-logo .rest { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.925rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    padding: 16px 0 0;
    position: relative;
    z-index: 2;
}
.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}
.breadcrumbs-list a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}
.breadcrumbs-list a:hover { color: #fff; }
.breadcrumbs-list .separator { color: rgba(255,255,255,0.3); }
.breadcrumbs-list .current { color: rgba(255,255,255,0.8); }

/* ========== HERO SECTIONS ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    overflow: hidden;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}
.hero-bg-orb.orb1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--hot-pink), transparent 70%);
    top: -100px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.hero-bg-orb.orb2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--blue), transparent 70%);
    bottom: -50px; left: -100px;
    animation: floatSlow 10s ease-in-out infinite;
}
.hero-bg-orb.orb3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--yellow), transparent 70%);
    top: 30%; left: 40%;
    animation: float 12s ease-in-out infinite;
}
.hero-bg-orb.orb4 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, var(--purple), transparent 70%);
    bottom: 20%; right: 10%;
    animation: floatSlow 9s ease-in-out infinite;
}
.hero .container,
.hero-inner .container { position: relative; z-index: 2; }
.hero-content { max-width: 800px; }
.hero h1,
.hero-inner h1 {
    font-size: 3.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.12;
}
.hero-inner h1 { font-size: 2.75rem; }
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--yellow), var(--hot-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub,
.hero-inner .hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 640px;
    line-height: 1.7;
}
.hero-inner .hero-sub { margin-bottom: 0; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== SECTION LAYOUTS ========== */
.section-white { padding: 100px 0; background: var(--white); }
.section-grey { padding: 100px 0; background: var(--light-grey); }
.section-dark {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--navy), var(--charcoal));
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(128,32,208,0.15), transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(64,128,240,0.1), transparent 60%);
    pointer-events: none;
}
.section-dark .container { position: relative; z-index: 2; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-header-light h2 { color: #fff; }
.section-header-light p { color: rgba(255,255,255,0.65); }

/* ========== PROBLEM SECTION (HOMEPAGE) ========== */
.problem { padding: 100px 0; background: #fff; }
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.problem-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.problem-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.75;
}
.problem-text .hl-pink { color: var(--hot-pink); font-weight: 600; }
.problem-text .hl-purple { color: var(--purple); font-weight: 600; }
.problem-text .bold-statement {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 24px;
    padding: 20px 24px;
    border-left: 4px solid var(--hot-pink);
    background: #FFF5F8;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.problem-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.problem-visual .blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}
.problem-visual .blob1 { width: 240px; height: 240px; background: radial-gradient(circle, var(--teal), transparent 70%); top: 20px; left: 30px; }
.problem-visual .blob2 { width: 200px; height: 200px; background: radial-gradient(circle, var(--hot-pink), transparent 70%); top: 80px; right: 30px; }
.problem-visual .blob3 { width: 180px; height: 180px; background: radial-gradient(circle, var(--yellow), transparent 70%); bottom: 20px; left: 80px; }
.problem-visual .blob4 { width: 160px; height: 160px; background: radial-gradient(circle, var(--purple), transparent 70%); bottom: 60px; right: 60px; }
.problem-visual .blob5 { width: 140px; height: 140px; background: radial-gradient(circle, var(--blue), transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.problem-visual .center-text {
    position: relative;
    z-index: 2;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
}
.problem-visual .center-text span { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-light); margin-top: 8px; }

/* ========== PILLAR CARDS ========== */
.pillars { padding: 100px 0; background: var(--light-grey); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    transition: height 0.3s ease;
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pillar-card:hover::before { height: 6px; }
.pillar-card.linkedin::before { background: linear-gradient(90deg, var(--teal), var(--blue)); }
.pillar-card.aisearch::before { background: linear-gradient(90deg, var(--orange), var(--hot-pink)); }
.pillar-card.growth::before { background: linear-gradient(90deg, var(--purple), var(--blue)); }
.pillar-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}
.pillar-card.linkedin .pillar-icon { background: linear-gradient(135deg, rgba(42,170,160,0.12), rgba(64,128,240,0.12)); }
.pillar-card.aisearch .pillar-icon { background: linear-gradient(135deg, rgba(232,96,32,0.12), rgba(240,16,96,0.12)); }
.pillar-card.growth .pillar-icon { background: linear-gradient(135deg, rgba(128,32,208,0.12), rgba(64,128,240,0.12)); }
.pillar-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; }
.pillar-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* ========== SERVICE CARDS ========== */
.services { padding: 100px 0; background: #fff; }
.services-group { margin-bottom: 48px; }
.services-group-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    display: inline-block;
}
.services-group-label.linkedin-label { color: var(--teal); border-bottom: 2px solid var(--teal); }
.services-group-label.ai-label { color: var(--orange); border-bottom: 2px solid var(--orange); }
.services-group-label.growth-label { color: var(--purple); border-bottom: 2px solid var(--purple); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.service-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
    display: block;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    transition: width 0.3s ease;
}
.service-card:nth-child(1)::before { background: var(--teal); }
.service-card:nth-child(2)::before { background: var(--yellow); }
.service-card:nth-child(3)::before { background: var(--hot-pink); }
.service-card:nth-child(4)::before { background: var(--purple); }
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.service-card .arrow {
    color: var(--purple);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    display: inline-block;
}
.service-card:hover .arrow { transform: translateX(6px); }

/* ========== DIFFERENTIATOR ========== */
.differentiator {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--navy), var(--charcoal));
    position: relative;
    overflow: hidden;
}
.differentiator::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(128,32,208,0.15), transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(64,128,240,0.1), transparent 60%);
    pointer-events: none;
}
.differentiator .container { position: relative; z-index: 2; }
.diff-header { text-align: center; margin-bottom: 48px; }
.diff-header h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.diff-body { max-width: 800px; margin: 0 auto; text-align: center; }
.diff-body p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.75;
}
.diff-statement {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.65rem;
    line-height: 1.35;
    margin: 40px 0;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.diff-bridge {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    margin-top: 40px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
}
.diff-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.diff-flow-item {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.diff-flow-item:nth-child(1) { background: rgba(42,170,160,0.2); color: var(--teal); }
.diff-flow-item:nth-child(2) { background: rgba(64,128,240,0.2); color: var(--blue); }
.diff-flow-item:nth-child(3) { background: rgba(128,32,208,0.2); color: #a855f7; }
.diff-flow-item:nth-child(4) { background: rgba(240,16,96,0.2); color: var(--hot-pink); }
.diff-flow-item:nth-child(5) { background: rgba(255,176,32,0.2); color: var(--yellow); }
.diff-flow-arrow { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

/* ========== STATS ========== */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 40%, #2a1650 100%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(240, 16, 96, 0.3));
}
.stat-item p { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500; }

/* ========== HOW IT WORKS / STEPS ========== */
.how-it-works { padding: 100px 0; background: #fff; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--hot-pink), var(--yellow));
    border-radius: 4px;
    z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.step-item:nth-child(1) .step-number { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.step-item:nth-child(2) .step-number { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.step-item:nth-child(3) .step-number { background: linear-gradient(135deg, var(--hot-pink), var(--purple)); }
.step-item:nth-child(4) .step-number { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.step-item h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.step-item p { font-size: 0.925rem; color: var(--text-muted); line-height: 1.65; padding: 0 8px; }

/* ========== OFFICE CARDS / GLOBAL REACH ========== */
.global-reach { padding: 100px 0; background: var(--light-grey); }
.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}
.office-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.office-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.office-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.office-card.ny::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.office-card.sa::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.office-flag { font-size: 2.5rem; margin-bottom: 16px; }
.office-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.office-card .timezone {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple);
    margin-bottom: 16px;
}
.office-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.office-card .office-detail {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.office-card .office-detail:last-child { margin-bottom: 0; }

.global-footer {
    text-align: center;
    margin-top: 48px;
    color: var(--text-lighter);
    font-size: 0.95rem;
}
.global-footer strong { color: var(--text-dark); }
.global-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}
.region-tag {
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid #ddd;
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(165deg, #1a0838, var(--navy));
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    pointer-events: none;
}
.cta-orb.o1 { width: 400px; height: 400px; background: var(--hot-pink); top: -100px; left: -100px; animation: pulse 6s ease infinite; }
.cta-orb.o2 { width: 350px; height: 350px; background: var(--blue); bottom: -80px; right: -80px; animation: pulse 8s ease infinite; }
.cta-orb.o3 { width: 250px; height: 250px; background: var(--yellow); top: 40%; left: 60%; animation: pulse 7s ease infinite; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-weight: 500;
}
.cta-trust span::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-right: 8px; vertical-align: middle; }

/* ========== FAQ ACCORDION ========== */
.faq { padding: 100px 0; background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}
.faq-item:nth-child(1) { border-left: 3px solid var(--teal); }
.faq-item:nth-child(2) { border-left: 3px solid var(--yellow); }
.faq-item:nth-child(3) { border-left: 3px solid var(--hot-pink); }
.faq-item:nth-child(4) { border-left: 3px solid var(--purple); }
.faq-item:nth-child(5) { border-left: 3px solid var(--blue); }
.faq-item:nth-child(6) { border-left: 3px solid var(--orange); }
.faq-item:nth-child(7) { border-left: 3px solid var(--teal); }
.faq-item:nth-child(8) { border-left: 3px solid var(--hot-pink); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 48px 24px 24px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--purple); }
.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hot-pink);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.75;
}
.faq-item.active .faq-answer { max-height: 400px; }

/* ========== FOOTER ========== */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
}
.footer-brand .footer-logo .b1 { color: var(--teal); }
.footer-brand .footer-logo .two { color: var(--gold); }
.footer-brand .footer-logo .b2 { color: var(--magenta); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.footer-grid .footer-col:nth-child(2) h4 { color: var(--teal); }
.footer-grid .footer-col:nth-child(3) h4 { color: var(--yellow); }
.footer-grid .footer-col:nth-child(4) h4 { color: var(--hot-pink); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.footer-social a.linkedin-social { background: rgba(42,170,160,0.15); color: var(--teal); }
.footer-social a.linkedin-social:hover { background: var(--teal); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.85rem; }
.footer-stripe {
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--magenta), var(--yellow), var(--orange), var(--hot-pink), var(--purple), var(--blue));
}

/* ========== CONTENT BLOCKS (About, Contact, etc.) ========== */
.content-block { padding: 80px 0; }
.content-block h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.content-block p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 800px;
}
.content-block p:last-child { margin-bottom: 0; }

/* Belief cards */
.beliefs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.belief-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    border-left: 4px solid transparent;
}
.belief-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.belief-card:nth-child(1) { border-left-color: var(--teal); }
.belief-card:nth-child(2) { border-left-color: var(--orange); }
.belief-card:nth-child(3) { border-left-color: var(--purple); }
.belief-card:nth-child(4) { border-left-color: var(--hot-pink); }
.belief-card:nth-child(5) { border-left-color: var(--blue); }
.belief-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.belief-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: none;
}

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 24px; }
.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--light-grey);
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
    overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .team-title { font-size: 0.85rem; color: var(--purple); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.team-card .team-linkedin {
    display: inline-block;
    margin-top: 12px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.team-card .team-linkedin:hover { color: var(--blue); }

.team-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
    margin-top: 48px;
    padding-bottom: 8px;
    display: inline-block;
    color: var(--purple);
    border-bottom: 2px solid var(--purple);
}
.team-section-title:first-of-type { margin-top: 0; }

/* Heritage section */
.heritage-block { max-width: 800px; margin: 0 auto; }
.heritage-block p { max-width: none; }

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(128,32,208,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-sidebar { }
.contact-info-card {
    background: var(--light-grey);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}
.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.contact-info-item .icon.teal { background: rgba(42,170,160,0.12); }
.contact-info-item .icon.orange { background: rgba(232,96,32,0.12); }
.contact-info-item .icon.purple { background: rgba(128,32,208,0.12); }
.contact-info-item .icon.pink { background: rgba(240,16,96,0.12); }
.contact-info-item strong { color: var(--text-dark); display: block; margin-bottom: 4px; }

.calendly-card {
    background: linear-gradient(165deg, var(--navy), var(--charcoal));
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    color: #fff;
}
.calendly-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.calendly-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-inner h1 { font-size: 2.25rem; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-visual { height: 300px; }
    .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .steps-grid::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .beliefs-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        background: var(--navy);
        padding: 24px;
        gap: 20px;
        border-top: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 16px 32px rgba(0,0,0,0.3);
    }
    .nav-mobile-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero-inner h1 { font-size: 1.85rem; }
    .hero-sub { font-size: 1rem; }
    .section-header h2 { font-size: 2rem; }
    .diff-statement { font-size: 1.3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item h3 { font-size: 2.5rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .global-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .diff-flow { gap: 8px; }
    .diff-flow-arrow { display: none; }
    .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .content-block h2 { font-size: 1.85rem; }
    .content-block { padding: 60px 0; }
    .section-white, .section-grey { padding: 60px 0; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.65rem; }
    .hero-inner h1 { font-size: 1.5rem; }
    .hero-btns { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    .breadcrumbs-list { font-size: 0.75rem; }
}
