/* ===================================
   TouchPoiint Network Website Styles
   Creative & Modern Design
   =================================== */

/* ===================================
   CSS Variables
   =================================== */
:root {
    /* Primary Colors */
    --primary-color: #1e4384;
    --primary-dark: #128a9a;
    --primary-light: #3bc0d4;
    
    /* Secondary Colors — brand gold (not orange) */
    --secondary-color: #c9a227;
    --secondary-dark: #a6831e;
    --secondary-light: #e0bc4a;
    
    /* Accent Colors */
    --accent-orange: #c9a227;
    --accent-purple: #9B59B6;
    --accent-green: #228b44;
    --accent-yellow: #F1C40F;
    
    /* Neutral Colors */
    --dark: #0f1a2e;
    --dark-light: #1a2942;
    --gray-dark: #3d4f66;
    --gray: #5c6b7e;
    --gray-light: #c5cdd8;
    --light: #f4f6f9;
    --white: #FFFFFF;
    --surface: #fafbfc;
    --border: #e2e8f0;

    /* Readable text roles (WCAG 2.2 AA on white / light surfaces) */
    --text-body: #243044;
    --text-muted: #4a5c72;
    --text-accent: #a84f08;
    --text-on-dark: #f4f7fb;
    --text-on-dark-muted: #c5d0de;
    --footer-text: #b8c4d4;
    --surface-on-brand: #c45f0a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e4384 0%, #2557a8 100%);
    --gradient-secondary: linear-gradient(135deg, #c9a227 0%, #e0bc4a 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    --gradient-empower: linear-gradient(135deg, #228b44 0%, #1e4384 100%);
    --gradient-pizza: linear-gradient(135deg, #228b44 0%, #2ecc71 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-display: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
    --font-primary: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 26, 46, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 26, 46, 0.08);
    --shadow-lg: 0 12px 32px rgba(15, 26, 46, 0.1);
    --shadow-xl: 0 24px 48px rgba(15, 26, 46, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    --radius-full: 50%;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

p {
    color: var(--text-body);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style-position: inside;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: var(--font-size-xs);
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.95;
}

.empower-overlay {
    background: var(--gradient-empower);
}

.pizza-overlay {
    background: var(--gradient-pizza);
}

.contact-overlay {
    background: var(--gradient-primary);
}

.legal-overlay {
    background: var(--gradient-dark);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: rgba(255, 255, 255, 0.3);
    padding: 0 var(--spacing-md);
    display: inline-block;
    border-radius: var(--radius-lg);
    margin: var(--spacing-xs) 0;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    animation: fadeInUp 1.2s ease;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    animation: fadeInUp 1.4s ease;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    line-height: 1;
    color: var(--white) !important;
}

.stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white) !important;
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.cta-button,
.cta-button-outline {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-button {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
    font-size: var(--font-size-sm);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--light);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.section-tag-orange {
    background: rgba(201, 162, 39, 0.15);
    color: var(--secondary-color);
}

.stat-unit {
    font-size: 0.5em;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0 0 var(--spacing-md) 0;
    color: var(--dark);
}

.about-text p {
    font-size: var(--font-size-lg);
    color: var(--gray-dark);
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: var(--spacing-md);
}

.highlight-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.highlight-card h4 {
    margin-top: 0;
}

.highlight-card p {
    margin-bottom: 0;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
}

.highlight-card h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.highlight-card p {
    font-size: var(--font-size-base);
    color: var(--gray);
    line-height: 1.6;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.benefit-card {
    position: relative;
    background: var(--light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.benefit-card p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ===================================
   Mediums Preview Section
   =================================== */
.mediums-preview {
    background: var(--light);
}

.mediums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.mediums-grid-single {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
}

.medium-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.medium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.medium-card-inner {
    padding: var(--spacing-lg);
    text-align: center;
}

.medium-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.medium-card.empower .medium-icon {
    background: linear-gradient(135deg, rgba(34, 139, 68, 0.1) 0%, rgba(22, 170, 193, 0.1) 100%);
    color: #228b44;
}

.medium-card.pizza .medium-icon {
    background: linear-gradient(135deg, rgba(34, 139, 68, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    color: #228b44;
}

.medium-card:hover .medium-icon {
    transform: scale(1.1) rotate(5deg);
}

.medium-card h3 {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.medium-tagline {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.medium-description {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.medium-features {
    list-style: none;
    text-align: left;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.medium-features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--gray-dark);
}

.medium-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.medium-card.empower .medium-features li::before {
    color: #228b44;
}

.medium-card.pizza .medium-features li::before {
    color: #228b44;
}

.medium-cta {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.medium-card.empower .medium-cta {
    background: var(--gradient-empower);
}

.medium-card.pizza .medium-cta {
    background: var(--gradient-pizza);
}

.medium-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Introduction Section (Medium Pages)
   =================================== */
.intro-section {
    padding: var(--spacing-xl) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.intro-text h2 {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.intro-text .lead {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.intro-text p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.intro-highlight-box {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-orange);
    margin-top: var(--spacing-md);
}

.intro-highlight-box h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.intro-highlight-box p {
    margin: 0;
}

.intro-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.visual-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.visual-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
}

.visual-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.visual-card p {
    font-size: var(--font-size-sm);
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    background: var(--light);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + var(--spacing-md));
    background: var(--gradient-primary);
    opacity: 0.3;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--font-size-xl);
    font-weight: 900;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.step-content p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Samples Section
   =================================== */
.samples-section {
    padding: var(--spacing-xl) 0;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.sample-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.sample-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sample-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sample-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    padding: var(--spacing-md);
}

.sample-placeholder.blood-donation {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.sample-placeholder.health {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
}

.sample-placeholder.safety {
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
}

.sample-placeholder.pizza-box-open {
    background: linear-gradient(135deg, #228b44 0%, #2ecc71 100%);
    font-size: var(--font-size-lg);
}

.sample-placeholder.promo {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
}

.sample-placeholder.brand {
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
}

.sample-placeholder.event {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
}

.sample-info {
    padding: var(--spacing-md);
}

.sample-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.sample-info p {
    font-size: var(--font-size-sm);
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Pizza Showcase */
.pizza-showcase {
    width: 100%;
}

.showcase-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.showcase-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.showcase-item.large .showcase-image {
    height: 100%;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

.showcase-caption {
    padding: var(--spacing-md);
}

.showcase-caption h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.showcase-caption h5 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--dark);
}

.showcase-caption p {
    font-size: var(--font-size-base);
    color: var(--gray);
    margin: 0;
}

/* ===================================
   Audience Section
   =================================== */
.audience-section {
    background: var(--light);
}

/* Reach Overview */
.reach-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); /* hard 50/50, prevent overflow */
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.reach-text-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.reach-text-content p {
    font-size: var(--font-size-lg);
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.reach-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Stacked variant for left column */
.reach-highlights-stack {
    grid-template-columns: 1fr;
}

.reach-highlight-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.highlight-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.highlight-label {
    font-size: var(--font-size-sm);
    color: var(--gray);
    font-weight: 600;
}

/* Map Container */
.reach-map-container {
    background: transparent; /* no white card */
    padding: 0; /* keep size */
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.google-map-wrapper {
    width: 100%;
    height: 0;              /* create a stable positioning box */
    padding-bottom: 100%;   /* restore original map size */
    position: relative;
    border-radius: 0; /* remove rounded card */
    overflow: hidden;
}

.google-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.google-map-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Map legend removed */
.map-legend-simple { display: none; }

/* Marker positions for provinces */
.free-state-marker-pos { top: 60%; left: 60%; }
.mpumalanga-marker-pos { top: 45%; left: 80%; }
.limpopo-marker-pos { top: 30%; left: 80%; }
.eastern-cape-marker-pos { top: 80%; left: 60%; }
.western-cape-marker-pos { top: 88%; left: 19%; }
.northern-cape-marker-pos { top: 60%; left: 30%; }
.north-west-marker-pos { top: 45%; left: 55%; }

.marker-overlay {
    position: absolute;
    z-index: 100;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.gauteng-marker-pos {
    top: 36%;
    left: 69%;
}

.kzn-marker-pos {
    top: 64%;
    left: 83%;
}

/* Map pins — TouchPoiint brand mark icon (pulse behind logo) */
.map-pin {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
}

/* Animated pulse ring — behind the logo mark */
.map-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.45);
    animation: pulse-ring 2s infinite;
    z-index: 0;
    pointer-events: none;
}

/* Logo mark on top of pulse */
.map-pin::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: url("images/map-icon-touchpoiint-48.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
    z-index: 1;
    pointer-events: none;
}

/* Optional color variants — all use brand mark */
.map-pin.orange::before { background: rgba(201, 162, 39, 0.5); }

.map-pin.orange,
.map-pin.green,
.map-pin.red {
    background: transparent;
}
.map-pin.green::before { background: rgba(201, 162, 39, 0.45); }
.map-pin.red::before { background: rgba(201, 162, 39, 0.45); }

/* Interactive SA map — pulsing province areas */
.sa-map-interactive {
    overflow: hidden;
}

.province-glow {
    position: absolute;
    width: 16%;
    height: 14%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.5) 0%, rgba(201, 162, 39, 0.18) 48%, transparent 72%);
    animation: province-flicker 2.8s ease-in-out infinite;
    animation-delay: var(--glow-delay, 0s);
    pointer-events: none;
    z-index: 1;
}

.province-glow-lg {
    width: 26%;
    height: 22%;
}

.province-glow-sm {
    width: 11%;
    height: 10%;
}

@keyframes province-flicker {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.88);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.06);
    }
}

.sa-map-interactive .map-pin {
    z-index: 100;
}

.sa-map-interactive .map-pin::before {
    animation-delay: var(--pin-delay, 0s);
    z-index: 0;
}

.sa-map-interactive .map-pin::after {
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .province-glow,
    .sa-map-interactive .map-pin::before {
        animation: none !important;
        opacity: 0.45;
    }
}

.marker-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.orange-pulse {
    background: var(--tp-gold, #c9a227);
}

.green-pulse {
    background: #FF5252;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.7;
    }
}

.marker-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #E53935;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 2;
}

.green-marker-custom .marker-pin {
    background: #FF5252;
}

.marker-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.4;
    display: none;
}

.marker-overlay:hover .marker-tooltip {
    display: block;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
}

.marker-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.orange-pulse {
    background: var(--tp-gold, #c9a227);
}

.green-pulse {
    background: #FF5252;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.3;
    }
}

.marker-dot {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.orange-marker {
    background: var(--tp-gold-deep, #a6831e);
}

.green-marker {
    background: #2E7D32;
}

.marker-label {
    position: absolute;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.marker-label h3 {
    font-size: 32px;
    font-weight: 900;
    color: #0D47A1;
    margin: 0;
    margin-bottom: 5px;
}

.marker-label p {
    font-size: 20px;
    font-weight: 700;
    color: #424242;
    margin: 0;
}

.map-legend-simple {
    /* Hidden per request: remove label and separator line */
    display: none;
}

.legend-item-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}

.legend-dot-simple {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.orange-dot {
    background: var(--tp-gold, #c9a227);
}

.green-dot {
    background: #4CAF50;
}

.province-text {
    font-size: 20px;
    fill: #78909C;
    text-anchor: middle;
    font-weight: 600;
    font-family: var(--font-primary);
}

.region-title {
    font-size: 48px;
    fill: #0D47A1;
    font-weight: 900;
    text-anchor: middle;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-primary);
}

.region-subtitle {
    font-size: 32px;
    fill: #212529;
    font-weight: 700;
    text-anchor: middle;
    font-family: var(--font-primary);
}

.map-legend-clean {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #DEE2E6;
}

.legend-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #212529;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.legend-color.orange {
    background: var(--tp-gold, #c9a227);
}

.legend-color.green {
    background: #4CAF50;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--light);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--gray-dark);
    font-weight: 600;
}

.legend-marker {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    border: 3px solid;
}

.legend-marker.gauteng {
    background: rgba(255, 183, 77, 0.3);
    border-color: #FFB74D;
}

.legend-marker.kzn {
    background: rgba(129, 199, 132, 0.3);
    border-color: #81C784;
}

/* Legend Circle */
.legend-circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Pricing Highlight */
.pricing-highlight {
    background: linear-gradient(135deg, #c9a227 0%, #e0bc4a 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.pricing-highlight.empower-pricing {
    background: linear-gradient(135deg, #1e4384 0%, #2557a8 100%);
}

.pricing-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-lg) 0;
}

.price-tag .currency {
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.price-tag .amount {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    line-height: 1;
}

.price-tag .period {
    font-size: var(--font-size-lg);
    font-weight: 400;
    opacity: 0.9;
}

.pricing-details {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.pricing-note {
    font-size: var(--font-size-base);
    opacity: 0.9;
    margin: 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    /* Align with global container and prevent touching screen edges */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.audience-stat {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.audience-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
}

.audience-stat .stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color) !important;
}

.audience-stat .stat-label {
    font-size: var(--font-size-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: var(--spacing-sm);
    color: var(--dark) !important;
}

.audience-stat p {
    font-size: var(--font-size-sm);
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Demographic Breakdown */
.demographic-breakdown {
    margin-top: var(--spacing-lg);
}

.demographic-breakdown h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.demo-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.demo-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.demo-card p {
    font-size: var(--font-size-sm);
    color: var(--gray);
    margin: 0;
}

/* ===================================
   Benefits Detailed Section
   =================================== */
.benefits-detailed {
    padding: var(--spacing-xl) 0;
}

.benefits-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.benefit-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefit-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.benefit-icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: var(--radius-full);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
}

.benefit-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.benefit-item p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Use Cases Section
   =================================== */
.use-cases {
    background: var(--light);
    padding-bottom: var(--spacing-xl);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.use-case-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.use-case-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.use-case-card p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Comparison Section
   =================================== */
.comparison-section {
    padding: var(--spacing-xl) 0;
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.comparison-header {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    padding: var(--spacing-md);
}

.comparison-row {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: var(--light);
}

.comp-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xs);
}

.comp-col:first-child {
    justify-content: flex-start;
}

.highlight-col {
    background: rgba(22, 170, 193, 0.1);
    font-weight: 600;
    color: var(--dark);
}

.comparison-header .highlight-col {
    color: var(--white);
    background: var(--primary-color);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-container {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: var(--spacing-md);
}

.form-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.form-header p {
    font-size: var(--font-size-base);
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-body);
    background: var(--white);
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 67, 132, 0.18);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--gray-dark);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-color);
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.submit-button:hover {
    background: var(--dark-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.form-note {
    font-size: var(--font-size-xs);
    color: var(--gray);
    text-align: center;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.info-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
}

.info-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.info-card p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    margin: 0;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-highlight {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.info-highlight h3,
.info-highlight h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.info-highlight ul {
    list-style: none;
    padding: 0;
}

.info-highlight li {
    padding: var(--spacing-xs) 0;
    color: var(--gray-dark);
    font-size: var(--font-size-sm);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.faq-item p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Legal Pages
   =================================== */
.legal-content {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-sidebar h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.legal-nav {
    list-style: none;
    padding: 0;
}

.legal-nav li {
    margin-bottom: var(--spacing-xs);
}

.legal-nav a {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--gray-dark);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.legal-nav a:hover {
    background: var(--light);
    color: var(--primary-color);
}

.legal-main {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-section {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--light);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.legal-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.legal-section p {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.legal-section ul,
.legal-section ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
}

.legal-section li {
    font-size: var(--font-size-base);
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

.contact-box {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.contact-box p {
    margin-bottom: var(--spacing-xs);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-section.cta-empower {
    background: var(--gradient-empower);
}

.cta-section.cta-pizza {
    background: var(--gradient-pizza);
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: var(--footer-text);
    font-size: var(--font-size-base);
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column p {
    color: var(--footer-text);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-cta {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
}

.footer-cta:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--dark-light);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-on-dark-muted);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .about-content,
    .intro-grid,
    .benefits-columns,
    .contact-wrapper,
    .reach-overview {
        grid-template-columns: 1fr;
    }
    
    .contact-info-sidebar {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }
    
    .contact-form-container,
    .contact-info-sidebar,
    .info-card {
        padding: var(--spacing-md);
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    
    .reach-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid,
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mediums-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: relative;
        top: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .reach-map-container {
        padding: var(--spacing-md);
    }

    .google-map-wrapper {
        height: 0;
        padding-bottom: 75%;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--spacing-md);
        transition: var(--transition-base);
        box-shadow: none;
        z-index: 999;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        min-height: 2.75rem;
        padding: 0.85rem var(--spacing-sm);
        border-radius: var(--radius-md);
        box-sizing: border-box;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-links a.active {
        background: transparent;
    }

    body.site-enterprise .nav-links a.active {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .nav-links.active {
        left: 0;
        visibility: visible;
        pointer-events: auto;
        box-shadow: var(--shadow-lg);
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        padding: 0.55rem;
        box-sizing: border-box;
        border-radius: 0.5rem;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .benefits-grid,
    .use-cases-grid,
    .samples-grid,
    .audience-grid,
    .demo-grid,
    .faq-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .intro-visual,
    .reach-highlights {
        grid-template-columns: 1fr;
    }
    
    .map-legend {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .pizza-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.large {
        grid-row: span 1;
    }
    
    .showcase-item.large .showcase-image {
        height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .comp-col {
        justify-content: flex-start;
        padding: var(--spacing-xs) 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .cta-button,
    .cta-button-outline,
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-cta-group,
    .cta-buttons {
        flex-direction: column;
    }
}

/* ===================================
   Animations & Utilities
   =================================== */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* ===================================
   TouchPoiint Network Sections
   =================================== */
.hero-touchpoint {
    min-height: auto;
}

.hero-touchpoint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-touchpoint-copy .hero-title .highlight {
    color: var(--secondary-color);
}

.hero-focus-box {
    background: rgba(30, 67, 132, 0.92);
    border-left: 4px solid var(--secondary-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    color: var(--white);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.hero-philosophy-box {
    background: var(--gradient-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
}

.hero-touchpoint-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.what-we-do-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
}

.what-we-do-card {
    text-align: center;
    padding: var(--spacing-md);
}

.what-we-do-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-sm);
    border-radius: var(--radius-full);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 3px solid var(--secondary-color);
}

.what-we-do-card h3 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--spacing-xs);
}

.what-we-do-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-dark);
    line-height: 1.6;
}

.underserved-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-xl) 0;
}

.underserved-highlight .section-tag {
    background: var(--secondary-color);
    color: var(--white);
}

.underserved-highlight h2 {
    color: var(--white);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
}

.underserved-highlight p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.touchpoint-cobrand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light);
    border-radius: var(--radius-lg);
}

.touchpoint-cobrand img {
    max-height: 60px;
    width: auto;
}

.touchpoint-cobrand-divider {
    width: 2px;
    height: 48px;
    background: var(--gray-light);
}

.the-difference {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.difference-table {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.difference-col {
    padding: var(--spacing-md);
}

.difference-col-traditional {
    background: var(--primary-color);
    color: var(--white);
}

.difference-col-touchpoint {
    background: var(--surface-on-brand);
    color: var(--white);
}

.difference-col-labels {
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--dark);
    padding: var(--spacing-sm);
    min-width: 120px;
}

.difference-row {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.difference-col-labels .difference-row {
    border-bottom-color: var(--gray-light);
    color: var(--gray-dark);
}

.difference-row:last-child {
    border-bottom: none;
}

.reach-overview-touchpoint .google-map-wrapper {
    padding-bottom: 120%;
}

.reach-overview-touchpoint {
    grid-template-columns: 0.9fr 1.1fr;
}

.highlight-number-orange {
    color: var(--text-accent);
}

.cta-bold {
    font-size: var(--font-size-lg);
    font-weight: 600;
    padding: 1.125rem 2.5rem;
    background: var(--gradient-secondary);
    border: none;
    box-shadow: var(--shadow-md);
}

.cta-bold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.75);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.contact-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--spacing-lg);
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.contact-modal-overlay.is-open .contact-modal {
    transform: translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-close:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.contact-modal h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.contact-modal .form-header p {
    margin-bottom: var(--spacing-md);
    color: var(--gray);
}

@media (prefers-reduced-motion: reduce) {
    .contact-modal-overlay,
    .contact-modal {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .what-we-do-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-touchpoint-grid {
        grid-template-columns: 1fr;
    }

    .difference-table {
        grid-template-columns: 1fr;
    }

    .difference-col-labels {
        display: none;
    }
}

@media (max-width: 768px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }

    .reach-overview-touchpoint {
        grid-template-columns: 1fr;
    }

    .reach-overview-touchpoint .google-map-wrapper {
        padding-bottom: 85%;
    }
}

/* ===================================
   Premium editorial layer (TouchPoiint redesign)
   Informed by ui-ux-pro-max §1–6
   =================================== */

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.section-title,
.hero-title,
.contact-modal h2 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10001;
    padding: 0.75rem 1rem;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

.scroll-indicator {
    display: none !important;
}

.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav-links a.active::after {
    background: var(--secondary-color);
    height: 2px;
    width: 100%;
    border-radius: 0;
}

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-accent);
    margin-bottom: var(--spacing-sm);
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 38rem;
}

/* Homepage editorial hero */
.hero.hero-editorial {
    min-height: auto;
    padding: calc(5.5rem + var(--spacing-md)) 0 var(--spacing-2xl);
    background: var(--surface);
    overflow: visible;
}

.hero.hero-editorial .hero-background {
    display: none;
}

.hero-editorial-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-editorial-copy {
    text-align: left;
    color: var(--dark);
    max-width: none;
    margin: 0;
}

.hero-editorial-copy .hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    animation: none;
}

.hero-editorial-copy .hero-title em {
    font-style: italic;
    color: var(--primary-color);
}

.hero-editorial-copy .hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    opacity: 1;
    margin-bottom: var(--spacing-lg);
    animation: none;
}

.hero-editorial-media {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero-editorial-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border);
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 7rem;
}

.proof-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.proof-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.proof-strip dt,
.proof-strip dd {
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
}

/* TouchPoiint / empower hero — photo-led, not gradient blob */
.hero.hero-touchpoint {
    min-height: auto;
    padding: calc(5.5rem + var(--spacing-md)) 0 var(--spacing-2xl);
    background: var(--dark);
}

.hero.hero-touchpoint .hero-overlay {
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.97) 0%, rgba(26, 41, 66, 0.92) 100%);
    opacity: 1;
}

.hero.hero-touchpoint .hero-content,
.hero-touchpoint-copy {
    text-align: left;
}

.hero-touchpoint-copy .hero-title,
.hero-touchpoint-copy .hero-subtitle {
    animation: none;
}

.hero-touchpoint-copy .title-line.highlight {
    background: none;
    padding: 0;
    color: var(--secondary-color);
    border-radius: 0;
}

.hero-touchpoint-visual img {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
}

.hero-focus-box,
.hero-philosophy-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: none;
}

/* Section rhythm */
.section-header.centered .section-tag,
.section-tag,
.section-tag-orange,
.hero-tag {
    background: transparent;
    color: var(--text-accent);
    padding: 0;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-tag::before,
.section-tag-orange::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--secondary-color);
    margin-right: 0.75rem;
    vertical-align: middle;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--dark);
}

.section-description {
    color: var(--text-muted);
}

.about-section {
    background: var(--white);
    padding: var(--spacing-2xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.about-text .section-title {
    margin-bottom: var(--spacing-sm);
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--spacing-md);
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.pillar-list li {
    padding-left: 1.25rem;
    border-left: 3px solid var(--secondary-color);
}

.pillar-list h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.pillar-list p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

.highlight-icon,
.benefit-icon,
.visual-icon,
.what-we-do-icon,
.stat-icon {
    display: none;
}

.highlight-card,
.visual-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border: none;
    text-align: left;
}

.highlight-card:hover,
.benefit-card:hover,
.medium-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

/* Platform feature */
.mediums-preview {
    background: var(--surface);
    padding: var(--spacing-2xl) 0;
}

.medium-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: 52rem;
    margin: 0 auto;
}

.medium-card.empower {
    border-top: 4px solid var(--secondary-color);
}

.medium-card-inner {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.medium-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-right: 0.65rem;
    vertical-align: middle;
}

.medium-cta,
.cta-button,
.btn-primary {
    background: var(--primary-color);
    background-image: none;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    box-shadow: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.medium-cta:hover,
.cta-button:hover,
.btn-primary:hover {
    background: var(--dark-light);
    color: var(--white);
    transform: translateY(-1px);
}

.cta-button-outline,
.btn-secondary {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-body);
    font-weight: 600;
}

.cta-section {
    background: var(--dark);
    color: var(--text-on-dark);
    padding: var(--spacing-2xl) 0;
}

.cta-section.cta-empower {
    background: linear-gradient(135deg, #1a3d6e 0%, #1e5a4a 100%);
    color: var(--text-on-dark);
}

.cta-section .cta-content p {
    color: var(--text-on-dark-muted);
    opacity: 1;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--light);
    color: var(--primary-color);
}

.cta-section .btn-secondary,
.hero-editorial .cta-button-outline,
.hero-touchpoint .cta-button-outline,
.hero-contact .cta-button-outline,
.hero-legal .cta-button-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cta-section .btn-secondary:hover,
.hero-editorial .cta-button-outline:hover,
.hero-touchpoint .cta-button-outline:hover,
.hero-contact .cta-button-outline:hover,
.hero-legal .cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: var(--white);
}

.hero-touchpoint .cta-button,
.hero-contact .cta-button,
.cta-bold {
    color: var(--white);
}

.hero-touchpoint-copy .hero-subtitle,
.hero-touchpoint-copy .hero-focus-box,
.hero-touchpoint-copy .hero-philosophy-box {
    color: var(--text-on-dark);
}

.hero-touchpoint-copy .hero-subtitle {
    color: var(--text-on-dark-muted);
}

.hero-touchpoint-copy .title-line.highlight {
    color: var(--secondary-light);
}

.hero-contact .hero-content,
.hero-legal .hero-content {
    color: var(--text-on-dark);
}

.hero-contact .hero-subtitle,
.hero-legal .hero-subtitle {
    color: var(--text-on-dark-muted);
}

.hero-contact .title-line.highlight,
.hero-legal .title-line.highlight {
    color: var(--secondary-light);
}

.hero-tag {
    color: var(--secondary-light);
}

.footer-sitemap-link {
    color: var(--text-on-dark-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-sitemap-link:hover {
    color: var(--white);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-weight: 600;
}

/* What we do — typographic cards */
.what-we-do-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: none;
    text-align: left;
}

.what-we-do-card h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
    border-top: 2px solid var(--secondary-color);
}

.what-we-do-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.intro-visual .visual-card {
    padding: var(--spacing-md);
    border-left: 3px solid var(--primary-color);
    margin-bottom: var(--spacing-sm);
    background: var(--surface);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Contact hero compact */
.hero.hero-contact {
    min-height: auto;
    padding: calc(5.5rem + var(--spacing-lg)) 0 var(--spacing-xl);
}

.hero.hero-contact .hero-content {
    text-align: left;
    max-width: 40rem;
    margin: 0;
}

.hero.hero-contact .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.hero.hero-contact .title-line.highlight {
    background: none;
    padding: 0;
    color: var(--secondary-color);
}

.contact-info-card .info-icon,
.info-card .info-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0;
}

.contact-info-card .info-icon::before {
    content: '';
    width: 1rem;
    height: 1rem;
    background: var(--secondary-color);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.contact-info-card:nth-child(1) .info-icon::before,
.info-card:nth-child(1) .info-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
}

.contact-info-card:nth-child(2) .info-icon::before,
.info-card:nth-child(2) .info-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
}

.contact-info-card:nth-child(3) .info-icon::before,
.info-card:nth-child(3) .info-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}

.contact-info-card:nth-child(4) .info-icon::before,
.info-card:nth-child(4) .info-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.use-case-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding-top: 0.5rem;
    border-top: 2px solid var(--secondary-color);
    margin-bottom: 0.5rem;
}

.audience-stat .stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .hero-editorial-grid,
    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-editorial-media {
        order: -1;
    }

    .proof-strip {
        gap: var(--spacing-md);
    }
}

@media (prefers-reduced-motion: reduce) {
    .shape,
    .benefit-card,
    .medium-card,
    .what-we-do-card {
        animation: none !important;
        transition: none !important;
    }
}

/* ===================================
   Spacing & layout audit (all pages)
   =================================== */

:root {
    --nav-height: 5.5rem;
    --section-pad-y: clamp(3rem, 5vw, 4.5rem);
}

section:not(.hero):not(.tp-hero):not(.tp-page-hero):not(.tp-page-band):not(.tp-journey-closing):not(.tp-journey-section):not(.tp-journey-visual):not(.tp-journey-bridge):not(.tp-journey-vision):not(.tp-reach-close):not(.ll-hero):not(.ll-services):not(.ll-partner):not(.legal-section):not(.tp-legal-hero):not(.tp-contact-hero):not(.tp-bn-section):not(.tp-bn-hero):not(.tp-bn-strip):not(.tp-bn-what):not(.tp-bn-triad):not(.tp-bn-mobile):not(.tp-bn-diff):not(.contact-section):not(.faq-section) {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

section.hero {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: var(--section-pad-y);
    min-height: auto !important;
}

.section-header {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.section-header.centered .section-tag::before,
.section-header.centered .section-tag-orange::before {
    display: none;
}

.section-header.centered .section-tag,
.section-header.centered .section-tag-orange {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-header.centered .section-title {
    margin-bottom: 0.75rem;
}

.section-header.centered .section-description {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0.5rem;
}

.hero-tag {
    margin-bottom: 1rem;
}

.hero-tag::before {
    display: none !important;
}

.hero-touchpoint-grid {
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-touchpoint-copy .hero-title {
    margin-bottom: 1rem;
}

.hero-touchpoint-copy .hero-subtitle {
    margin-bottom: 1.25rem;
}

.hero-focus-box {
    margin: 1rem 0;
    padding: 1rem 1.25rem;
}

.hero-philosophy-box {
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--white);
    font-weight: 500;
    margin: 0 0 1.25rem;
    padding: 1rem 1.25rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.underserved-highlight {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

.underserved-highlight .section-header {
    margin-bottom: 0;
}

.underserved-highlight .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.underserved-highlight .section-tag::before {
    display: none;
}

.underserved-highlight h2 {
    margin-bottom: 1rem;
}

.underserved-highlight p {
    margin-top: 0;
}

.intro-section {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

.touchpoint-cobrand {
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    gap: 1.5rem;
}

.intro-grid {
    gap: clamp(2rem, 4vw, 3rem);
}

.intro-text h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.intro-visual {
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.what-we-do-section,
.the-difference,
.use-cases,
.how-it-works,
.samples-section,
.reach-section,
.audience-section {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

.reach-overview-touchpoint {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.reach-text-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.reach-highlights-stack {
    margin-top: 1rem;
    gap: 0.75rem;
}

.reach-highlight-item {
    text-align: left;
    padding: 1rem 1.25rem;
}

.samples-grid {
    gap: 1.25rem;
}

.sample-info {
    padding: 1rem 1.25rem 1.25rem;
}

.sample-info h4 {
    margin-bottom: 0.35rem;
}

.cta-bold {
    background: var(--surface-on-brand);
    background-image: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: none;
    color: var(--dark);
}

.cta-bold:hover {
    background: var(--secondary-light);
    color: var(--dark);
    transform: translateY(-1px);
}

.what-we-do-grid {
    gap: 1rem;
}

.audience-grid {
    max-width: none;
    margin: 0 auto 2rem;
    padding: 0;
    gap: 1rem;
}

.audience-stat {
    padding: 1.25rem 1rem;
}

.audience-stat .stat-number {
    font-size: 1.5rem !important;
    margin-bottom: 0.35rem;
}

.audience-stat .stat-label {
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
}

.difference-row {
    padding: 0.85rem 1rem;
    line-height: 1.5;
}

.use-case-card {
    padding: 1.25rem;
    text-align: left;
}

.use-case-card h4 {
    margin-bottom: 0.5rem;
}

.process-step {
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.hero.hero-contact,
.hero.hero-legal {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 2.5rem;
}

.hero.hero-contact .hero-content,
.hero.hero-legal .hero-content {
    text-align: left;
    max-width: 40rem;
    margin: 0;
}

.hero.hero-legal .hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    animation: none;
}

.hero.hero-legal .hero-subtitle {
    animation: none;
    opacity: 0.9;
}

.hero.hero-legal .title-line.highlight {
    background: none;
    padding: 0;
    color: var(--secondary-color);
}

.contact-section {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

.contact-wrapper {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.contact-form-container {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.form-header {
    margin-bottom: 1.25rem;
}

.form-header h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.35rem;
}

.contact-info-sidebar {
    gap: 0.75rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    padding: 1rem 1.25rem;
}

.info-card .info-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.info-highlight {
    padding: 1.25rem;
}

.info-highlight ul {
    margin: 0;
    padding-left: 1.1rem;
}

.info-highlight li {
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.faq-section {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

.faq-item {
    padding: 1.25rem;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
}

.legal-content {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

.legal-wrapper {
    gap: 2rem;
}

.legal-main {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.cta-section .cta-content {
    padding: 0 0.5rem;
}

.cta-section .cta-content h2 {
    margin-bottom: 0.75rem;
}

.cta-section .cta-content p {
    margin-bottom: 1.5rem;
}

.cta-buttons {
    gap: 0.75rem;
}

.mediums-preview {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

.mediums-preview .section-header {
    margin-bottom: 2rem;
}

.medium-icon img {
    max-height: 56px;
    width: auto;
    margin-bottom: 1rem;
}

.medium-card h3 {
    margin-bottom: 0.35rem;
}

.medium-tagline {
    margin-bottom: 0.75rem;
}

.medium-description {
    margin-bottom: 1rem;
}

.medium-features {
    margin-bottom: 1.25rem;
}

.footer-content {
    gap: 2rem 1.5rem;
}

@media (max-width: 992px) {
    .nav-links a {
        font-size: 0.9375rem;
    }

    .hero-touchpoint-grid {
        grid-template-columns: 1fr;
    }

    .hero-touchpoint-visual {
        order: -1;
        max-width: 28rem;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad-y: 2.75rem;
    }

    .hero-editorial-copy .hero-title,
    .hero-touchpoint-copy .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .proof-strip {
        gap: 1rem 1.5rem;
    }

    .proof-item {
        min-width: calc(50% - 0.75rem);
    }

    .hero-actions .cta-button,
    .hero-actions .cta-button-outline,
    .hero-cta-group .cta-button,
    .hero-cta-group .cta-button-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .touchpoint-cobrand {
        flex-direction: column;
        gap: 1rem;
    }

    .touchpoint-cobrand-divider {
        width: 48px;
        height: 2px;
    }

    .difference-col {
        padding: 0.75rem;
    }

    .legal-sidebar {
        margin-bottom: 0.5rem;
    }
}

/* ===================================
   Color clarity & readability (WCAG 2.2 AA)
   =================================== */

a:not(.cta-button):not(.btn):not(.medium-cta):not(.footer-cta):focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.info-card a,
.legal-section a,
.contact-form-container a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.info-card a:hover,
.legal-section a:hover {
    color: var(--dark-light);
}

.medium-tagline {
    color: var(--text-accent);
    font-weight: 600;
}

.medium-description,
.intro-text p,
.about-text p,
.sample-info p,
.faq-item p,
.visual-card p,
.audience-stat p,
.reach-text-content p,
.step-content p,
.use-case-card p,
.form-header p,
.form-note,
.contact-modal .form-header p {
    color: var(--text-muted);
}

.difference-col-labels {
    color: var(--text-body);
    background: var(--surface);
}

.difference-col-labels .difference-row {
    color: var(--text-body);
}

.underserved-highlight p {
    color: rgba(255, 255, 255, 0.92);
}

.hero-focus-box {
    background: rgba(15, 26, 46, 0.55);
    border-left-color: var(--secondary-light);
    color: var(--text-on-dark);
}

.hero-focus-box strong {
    color: var(--white);
}

.hero-philosophy-box {
    color: var(--text-on-dark);
}

.cta-section h2,
.cta-section .cta-content h2 {
    color: var(--white);
}

.cta-content p {
    color: var(--text-on-dark-muted);
    opacity: 1;
}

.nav-links a:focus-visible {
    outline-offset: 4px;
}

/* ===================================
   Enterprise bespoke layer
   Restrained surfaces, editorial type,
   corporate navigation & trust patterns
   =================================== */

body.site-enterprise {
    --font-display: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
    --font-primary: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.35);
    --bg-page: #0c1528;
    --bg-elevated: #141f36;
    --bg-surface: #1c2a45;
    --enterprise-rule: 1px solid rgba(255, 255, 255, 0.1);
    --enterprise-accent: 3px solid var(--secondary-color);
    --text-body: #e4eaf2;
    --text-muted: #b8c5d6;
    --text-accent: #f5b366;
    --link-on-dark: #9ec9ff;
    --border: rgba(255, 255, 255, 0.12);
    letter-spacing: 0.01em;
    background-color: var(--bg-page);
    color: var(--text-body);
}

body.site-enterprise p {
    color: var(--text-body);
}

body.site-enterprise .container {
    max-width: 1180px;
}

/* Navigation — white bar, dark links, larger high-res logo */
body.site-enterprise .navbar,
body.site-enterprise.page-light .navbar {
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(11, 31, 58, 0.08), 0 8px 24px rgba(11, 31, 58, 0.04);
    border-bottom: 1px solid #e4eaf2;
}

body.site-enterprise .nav-wrapper {
    min-height: 5.25rem;
    padding: 0.7rem 0;
}

body.site-enterprise .logo-image {
    height: 72px;
    width: auto;
    max-width: min(300px, 62vw);
    object-fit: contain;
}

body.site-enterprise .footer-logo .logo-image {
    height: 46px;
    max-width: min(220px, 65vw);
}

body.site-enterprise .nav-links {
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.5rem);
    flex-wrap: wrap;
    justify-content: flex-end;
}

body.site-enterprise .nav-links a:not(.nav-cta) {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.375rem 0;
    border-radius: 0;
    color: var(--tp-navy, #0b1f3a);
    background: transparent;
}

body.site-enterprise .nav-links a:not(.nav-cta):hover,
body.site-enterprise .nav-links a:not(.nav-cta).active {
    color: var(--tp-orange, #c9a227);
    background: transparent;
}

body.site-enterprise .nav-links a:not(.nav-cta).active {
    box-shadow: inset 0 -2px 0 var(--tp-orange, #c9a227);
}

body.site-enterprise .nav-links a.active::after {
    display: none;
}

body.site-enterprise .hamburger span {
    background: var(--tp-navy, #0b1f3a);
}

body.site-enterprise .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    margin-left: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--tp-navy, #0b1f3a);
    border: 1px solid var(--tp-navy, #0b1f3a);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

body.site-enterprise .nav-cta:hover {
    background: var(--tp-orange, #c9a227);
    border-color: var(--tp-orange, #c9a227);
    color: #ffffff;
}

body.site-enterprise .nav-cta.active {
    box-shadow: none;
    background: var(--tp-orange, #c9a227);
    border-color: var(--tp-orange, #c9a227);
    color: #ffffff;
}

@media (max-width: 768px) {
    body.site-enterprise .nav-links .nav-cta {
        margin-left: 0;
        margin-top: 0.75rem;
        width: 100%;
        text-align: center;
    }
}

/* Credentials strip */
.credentials-bar {
    border-bottom: var(--enterprise-rule);
    background: var(--bg-elevated);
}

.credentials-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    padding: 0.875rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.credentials-divider {
    width: 1px;
    height: 0.875rem;
    background: var(--gray-light);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .credentials-divider {
        display: none;
    }

    .credentials-bar-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Editorial hero — dark with floating bubbles */
body.site-enterprise .hero.hero-editorial {
    min-height: auto;
    padding: calc(var(--nav-height, 4.25rem) + 2.5rem) 0 3.5rem;
    background: transparent;
    border-bottom: var(--enterprise-rule);
    overflow: hidden;
}

body.site-enterprise .hero.hero-editorial .hero-background {
    display: block;
}

body.site-enterprise .hero.hero-editorial .hero-overlay {
    opacity: 0.92;
    background: linear-gradient(135deg, #0c1528 0%, #1e4384 45%, #128a9a 100%);
}

body.site-enterprise .hero-editorial-grid {
    position: relative;
    z-index: 1;
}

body.site-enterprise .hero-editorial-copy {
    padding-left: 1.25rem;
    border-left: var(--enterprise-accent);
    color: var(--text-on-dark);
}

body.site-enterprise .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-light);
    margin-bottom: 1rem;
}

body.site-enterprise .hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
}

body.site-enterprise .hero-title em {
    font-style: italic;
    color: var(--secondary-light);
}

body.site-enterprise .hero-subtitle.lead-text {
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 36rem;
    margin-top: 1.25rem;
    color: var(--text-on-dark-muted);
}

body.site-enterprise .proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 2rem 0 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(15, 26, 46, 0.55);
    backdrop-filter: blur(8px);
}

body.site-enterprise .proof-item {
    padding: 1rem 1.25rem;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

body.site-enterprise .proof-item:last-child {
    border-right: none;
}

body.site-enterprise .proof-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-light);
    line-height: 1.2;
}

body.site-enterprise .proof-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}

body.site-enterprise .hero-editorial-media {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

body.site-enterprise .hero-editorial-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

body.site-enterprise .cta-button:not(.cta-button-outline) {
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: none;
    background: var(--secondary-color);
    color: var(--dark);
}

body.site-enterprise .cta-button:not(.cta-button-outline):hover {
    background: var(--secondary-light);
    color: var(--dark);
    transform: none;
    box-shadow: none;
}

body.site-enterprise .hero-editorial .cta-button-outline {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

body.site-enterprise .hero-editorial .cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

/* Floating bubbles — restored, tuned for dark heroes */
body.site-enterprise .floating-shapes {
    display: block;
}

body.site-enterprise .shape {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-enterprise .shape-1 {
    background: rgba(59, 192, 212, 0.12);
    border-color: rgba(59, 192, 212, 0.2);
}

body.site-enterprise .shape-2 {
    background: rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.18);
}

body.site-enterprise .shape-3 {
    background: rgba(255, 255, 255, 0.05);
}

body.site-enterprise .shape-4 {
    background: rgba(30, 67, 132, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Section system */
body.site-enterprise .section-tag,
body.site-enterprise .section-tag-orange,
body.site-enterprise .section-tag.section-tag-orange {
    display: inline-block;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary-light);
    background: transparent;
    border: none;
    border-radius: 0;
}

/* Left-aligned tags get a refined leading accent rule */
body.site-enterprise .section-tag::before,
body.site-enterprise .section-tag-orange::before {
    width: 1.75rem;
    height: 1px;
    background: var(--secondary-color);
    margin-right: 0.7rem;
    vertical-align: middle;
    opacity: 0.9;
}

/* Centered tags: clean tracked label, no box, no line */
body.site-enterprise .section-header.centered .section-tag,
body.site-enterprise .section-header.centered .section-tag-orange {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--secondary-light);
}

body.site-enterprise .section-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
}

body.site-enterprise .section-description,
body.site-enterprise .lead-text {
    color: var(--text-muted);
}

body.site-enterprise .about-section {
    background: var(--bg-elevated);
}

body.site-enterprise .mediums-preview,
body.site-enterprise .what-we-do-section,
body.site-enterprise .contact-section {
    background: var(--bg-page);
}

body.site-enterprise .about-section,
body.site-enterprise .mediums-preview,
body.site-enterprise .what-we-do-section,
body.site-enterprise .contact-section {
    border-top: var(--enterprise-rule);
}

body.site-enterprise .about-text h3 {
    color: var(--white);
}

body.site-enterprise .pillar-list li {
    border: var(--enterprise-rule);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    background: var(--bg-surface);
    box-shadow: none;
}

body.site-enterprise .pillar-list li:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: none;
    box-shadow: none;
}

body.site-enterprise .pillar-list h4 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
}

body.site-enterprise .pillar-list p {
    color: var(--text-muted);
}

/* Platform card — product sheet */
body.site-enterprise .medium-card.empower {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
    border-radius: var(--radius-md);
    box-shadow: none;
}

body.site-enterprise .medium-card.empower::before,
body.site-enterprise .medium-card.empower .medium-card-inner::before {
    display: none;
}

body.site-enterprise .medium-card-inner {
    padding: 2rem 2.25rem;
}

body.site-enterprise .medium-card-inner h3 {
    color: var(--white);
}

body.site-enterprise .medium-cta {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--secondary-light);
    background: transparent;
    background-image: none;
    border: none;
    border-bottom: 2px solid var(--secondary-color);
    border-radius: 0;
    padding: 0 0 2px;
    box-shadow: none;
}

body.site-enterprise .medium-cta:hover {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
    transform: none;
    box-shadow: none;
}

body.site-enterprise .mediums-preview .section-description {
    color: var(--text-muted);
}

body.site-enterprise .sample-card {
    background: var(--bg-surface);
}

body.site-enterprise .faq-item p,
body.site-enterprise .faq-item li {
    color: var(--text-muted);
}

/* CTA band — solid corporate */
body.site-enterprise .cta-section {
    background: var(--dark);
    border-top: 4px solid var(--secondary-color);
}

body.site-enterprise .cta-section::before {
    display: none;
}

body.site-enterprise .btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.site-enterprise .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--white);
}

body.site-enterprise .btn-primary:hover {
    background: var(--light);
    color: var(--dark);
}

body.site-enterprise .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: var(--white);
}

/* TouchPoiint page hero — gradient + bubbles */
body.site-enterprise .hero.hero-touchpoint {
    min-height: auto;
    padding: calc(var(--nav-height, 4.25rem) + 2rem) 0 3rem;
    background: transparent;
    overflow: hidden;
}

body.site-enterprise .hero-touchpoint .hero-background {
    display: block;
}

body.site-enterprise .hero-touchpoint .hero-overlay {
    display: block;
    opacity: 0.93;
    background: linear-gradient(135deg, #0c1528 0%, #1a5c4a 40%, #1e4384 100%);
}

body.site-enterprise .hero-touchpoint .hero-tag {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary-light);
    background: transparent;
    padding: 0;
    border: none;
}

body.site-enterprise .hero-touchpoint .hero-title .highlight {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}

body.site-enterprise .hero-touchpoint-visual {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
}

body.site-enterprise .hero-focus-box,
body.site-enterprise .hero-philosophy-box {
    background: rgba(15, 26, 46, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 3px solid var(--secondary-color);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--text-on-dark);
}

body.site-enterprise .hero-focus-box strong {
    color: var(--white);
}

body.site-enterprise .hero-philosophy-box {
    font-weight: 600;
}

body.site-enterprise .what-we-do-card {
    border: var(--enterprise-rule);
    border-radius: var(--radius-md);
    box-shadow: none;
    background: var(--bg-surface);
}

body.site-enterprise .what-we-do-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: none;
    box-shadow: none;
}

body.site-enterprise .what-we-do-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
}

body.site-enterprise .what-we-do-card p {
    color: var(--text-muted);
}

body.site-enterprise .underserved-highlight {
    background: var(--primary-color);
    border-radius: var(--radius-md);
    border: none;
}

body.site-enterprise .underserved-highlight::before {
    display: none;
}

body.site-enterprise .process-step .step-number {
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    box-shadow: none;
}

body.site-enterprise .difference-table {
    border: var(--enterprise-rule);
    border-radius: var(--radius-md);
    overflow: hidden;
}

body.site-enterprise .difference-col-touchpoint {
    background: var(--surface-on-brand);
}

body.site-enterprise .sample-card {
    border: var(--enterprise-rule);
    border-radius: var(--radius-md);
    box-shadow: none;
    background: var(--bg-surface);
}

body.site-enterprise .sample-card:hover {
    box-shadow: var(--shadow-sm);
    transform: none;
    border-color: rgba(201, 162, 39, 0.35);
}

/* Contact & legal */
body.site-enterprise .hero.hero-contact .hero-overlay {
    opacity: 0.93;
    background: linear-gradient(135deg, #0c1528 0%, #1e4384 55%, #128a9a 100%);
}

body.site-enterprise .contact-hero,
body.site-enterprise .legal-hero {
    background: var(--bg-elevated);
    border-bottom: var(--enterprise-rule);
}

body.site-enterprise .contact-form-container {
    border: var(--enterprise-rule);
    border-radius: var(--radius-md);
    box-shadow: none;
    background: var(--bg-surface);
}

body.site-enterprise .contact-form-container h2,
body.site-enterprise .form-header h2 {
    color: var(--white);
}

body.site-enterprise .info-card {
    border: var(--enterprise-rule);
    border-radius: var(--radius-md);
    box-shadow: none;
    background: var(--bg-surface);
}

body.site-enterprise .info-card h3 {
    color: var(--white);
}

body.site-enterprise .legal-section {
    border-bottom: var(--enterprise-rule);
    background: var(--bg-page);
}

body.site-enterprise .legal-section h2,
body.site-enterprise .legal-section h3 {
    color: var(--white);
}

body.site-enterprise input,
body.site-enterprise select,
body.site-enterprise textarea {
    background: var(--bg-elevated);
    border-color: var(--border);
    color: var(--text-body);
}

body.site-enterprise input::placeholder,
body.site-enterprise textarea::placeholder {
    color: var(--text-muted);
}

body.site-enterprise label {
    color: var(--text-muted);
}

body.site-enterprise .credentials-divider {
    background: rgba(255, 255, 255, 0.15);
}

body.site-enterprise .legal-content {
    background: var(--bg-page);
}

/* Contact boxes inside legal pages — dark surface to match enterprise theme */
body.site-enterprise .contact-box {
    background: var(--bg-elevated, #141f36);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}

body.site-enterprise .contact-box p,
body.site-enterprise .contact-box strong {
    color: var(--text-on-dark);
}

body.site-enterprise .contact-box a {
    color: var(--secondary-light);
}

body.site-enterprise .legal-sidebar {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
}

body.site-enterprise .legal-sidebar h3 {
    color: var(--white);
}

body.site-enterprise .legal-nav a {
    color: var(--text-muted);
}

body.site-enterprise .legal-nav a:hover {
    color: var(--secondary-light);
}

body.site-enterprise .difference-col-labels {
    background: var(--bg-surface);
    color: var(--text-body);
}

body.site-enterprise .faq-item,
body.site-enterprise .use-case-card,
body.site-enterprise .visual-card,
body.site-enterprise .audience-stat {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--secondary-color);
    text-align: left;
}

body.site-enterprise .audience-stat .stat-number {
    color: var(--white) !important;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.75rem) !important;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

body.site-enterprise .audience-stat .stat-number .stat-unit {
    color: var(--secondary-light);
    font-size: 0.55em;
    font-weight: 600;
    vertical-align: baseline;
}

body.site-enterprise .audience-stat .stat-label {
    color: var(--secondary-light) !important;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 1;
    margin-bottom: 0.65rem;
}

body.site-enterprise .audience-stat p {
    color: var(--text-body);
    font-size: 0.9375rem;
    line-height: 1.6;
}

body.site-enterprise .audience-grid {
    gap: 1rem;
}

body.site-enterprise .faq-item h3,
body.site-enterprise .use-case-card h3 {
    color: var(--white);
}

body.site-enterprise .contact-modal-content {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
    color: var(--text-body);
}

body.site-enterprise .cta-button-outline {
    border-radius: var(--radius-sm);
    border-width: 1px;
    font-weight: 600;
    color: var(--text-body);
    border-color: var(--border);
    background: transparent;
}

body.site-enterprise .hero-editorial .cta-button-outline,
body.site-enterprise .hero-touchpoint .cta-button-outline,
body.site-enterprise .hero-contact .cta-button-outline,
body.site-enterprise .hero-legal .cta-button-outline {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

body.site-enterprise .cta-button-outline:hover {
    border-color: var(--secondary-color);
    color: var(--white);
}

body.site-enterprise .hero-editorial .cta-button-outline:hover,
body.site-enterprise .hero-touchpoint .cta-button-outline:hover,
body.site-enterprise .hero-contact .cta-button-outline:hover,
body.site-enterprise .hero-legal .cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    body.site-enterprise .shape {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    body.site-enterprise .nav-links {
        background: #ffffff;
        border: 0;
        box-shadow: none;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0.15rem;
        padding-top: 0.75rem;
    }

    body.site-enterprise .nav-links.active {
        border: 1px solid #e4eaf2;
        box-shadow: 0 12px 28px rgba(11, 31, 58, 0.1);
    }

    body.site-enterprise .nav-links .nav-cta {
        margin: 0.75rem 0 0;
        width: 100%;
        justify-content: center;
    }
}

/* Footer — institutional */
body.site-enterprise .hero-touchpoint .container,
body.site-enterprise .hero-contact .container,
body.site-enterprise .hero-legal .container {
    position: relative;
    z-index: 1;
}

body.site-enterprise .footer {
    background: var(--dark);
    border-top: 3px solid var(--primary-color);
    padding: 1.75rem 0 1rem;
}

body.site-enterprise .footer-content {
    padding-top: 0.25rem;
    margin-bottom: 1rem;
    gap: 1.25rem 1.5rem;
}

body.site-enterprise .footer-column h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d7e0ec;
    margin-bottom: 0.55rem;
}

body.site-enterprise .footer-cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-sm);
}

body.site-enterprise .footer-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

body.site-enterprise .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    padding-bottom: 0;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    body.site-enterprise .hero-editorial-copy {
        padding-left: 0;
        border-left: none;
        border-top: var(--enterprise-accent);
        padding-top: 1.25rem;
    }

    body.site-enterprise .proof-strip {
        grid-template-columns: 1fr;
    }

    body.site-enterprise .proof-item {
        border-right: none;
        border-bottom: var(--enterprise-rule);
    }

    body.site-enterprise .proof-item:last-child {
        border-bottom: none;
    }
}

/* ===================================
   Dark theme readability (WCAG 2.2 AA)
   Overrides legacy light-surface text colors
   =================================== */

body.site-enterprise main :is(h2, h3, h4, h5, h6, .section-title) {
    color: var(--white);
}

body.site-enterprise main :is(p, li, label, .form-note, .checkbox-label span) {
    color: var(--text-muted);
}

body.site-enterprise main strong {
    color: var(--text-body);
}

body.site-enterprise .medium-features li,
body.site-enterprise .step-content p,
body.site-enterprise .what-we-do-card p,
body.site-enterprise .sample-info p,
body.site-enterprise .reach-text-content p,
body.site-enterprise .intro-text p,
body.site-enterprise .medium-description,
body.site-enterprise .section-description,
body.site-enterprise .about-text p,
body.site-enterprise .legal-section p,
body.site-enterprise .legal-section li,
body.site-enterprise .difference-col-labels .difference-row {
    color: var(--text-muted);
}

body.site-enterprise .what-we-do-card h3 {
    color: var(--secondary-light);
}

body.site-enterprise .step-content h3,
body.site-enterprise .sample-info h4,
body.site-enterprise .process-step h3,
body.site-enterprise .reach-text-content h3,
body.site-enterprise .intro-text h2 {
    color: var(--white);
}

body.site-enterprise .medium-tagline {
    color: var(--text-accent);
}

body.site-enterprise .info-card a,
body.site-enterprise .legal-section a,
body.site-enterprise .contact-form-container a,
body.site-enterprise .legal-main a {
    color: var(--link-on-dark);
}

body.site-enterprise .info-card a:hover,
body.site-enterprise .legal-section a:hover,
body.site-enterprise .contact-form-container a:hover,
body.site-enterprise .legal-main a:hover {
    color: var(--secondary-light);
}

body.site-enterprise .what-we-do-section,
body.site-enterprise .the-difference,
body.site-enterprise .how-it-works,
body.site-enterprise .samples-section,
body.site-enterprise .faq-section,
body.site-enterprise .use-cases,
body.site-enterprise .use-cases-section,
body.site-enterprise .audience-section,
body.site-enterprise .intro-section,
body.site-enterprise .reach-overview,
body.site-enterprise .reach-overview-touchpoint {
    background: var(--bg-page);
}

body.site-enterprise .what-we-do-section,
body.site-enterprise .samples-section,
body.site-enterprise .audience-section {
    background: var(--bg-elevated);
}

body.site-enterprise .how-it-works {
    background: var(--bg-elevated);
}

body.site-enterprise .touchpoint-cobrand {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
}

body.site-enterprise .touchpoint-cobrand-divider {
    background: rgba(255, 255, 255, 0.2);
}

body.site-enterprise .what-we-do-icon {
    background: var(--bg-elevated);
    border-color: var(--secondary-color);
}

body.site-enterprise .difference-col-labels {
    background: var(--bg-surface);
    color: var(--text-body);
}

body.site-enterprise .difference-col-labels .difference-row {
    color: var(--text-muted);
}

body.site-enterprise .step-content {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
    box-shadow: none;
}

body.site-enterprise .reach-highlight-item {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
    color: var(--text-muted);
}

body.site-enterprise .reach-highlight-item strong {
    color: var(--white);
}

/* Premium reach / map panel */
body.site-enterprise .reach-overview-touchpoint {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
    margin-top: 0.5rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(155deg, rgba(28, 42, 69, 0.65) 0%, rgba(12, 21, 40, 0.92) 55%, rgba(20, 31, 54, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

body.site-enterprise .reach-eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-light);
}

body.site-enterprise .reach-text-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 0.75rem;
}

body.site-enterprise .reach-text-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 34rem;
    margin-bottom: 1.25rem;
}

body.site-enterprise .reach-highlights-stack {
    margin-top: 0;
    gap: 0.75rem;
}

body.site-enterprise .reach-stat-card,
body.site-enterprise .reach-overview-touchpoint .reach-highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--secondary-color);
    border-radius: var(--radius-sm);
    box-shadow: none;
}

body.site-enterprise .reach-stat-value,
body.site-enterprise .reach-overview-touchpoint .highlight-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 0;
}

body.site-enterprise .reach-stat-value-accent,
body.site-enterprise .reach-overview-touchpoint .highlight-number-orange {
    color: var(--secondary-light);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

body.site-enterprise .reach-stat-label,
body.site-enterprise .reach-overview-touchpoint .highlight-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

body.site-enterprise .reach-map-frame {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 26, 46, 0.5) 0%, rgba(12, 21, 40, 0.85) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.site-enterprise .reach-overview-touchpoint .google-map-wrapper {
    padding-bottom: 100%;
}

body.site-enterprise .reach-overview-touchpoint .google-map-wrapper img {
    filter: none;
    opacity: 1;
}

body.site-enterprise .reach-overview-touchpoint .map-pin {
    width: 30px;
    height: 30px;
    background: transparent;
}

body.site-enterprise .reach-overview-touchpoint .map-pin::before {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.45);
    z-index: 0;
}

body.site-enterprise .reach-overview-touchpoint .map-pin::after {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    z-index: 1;
}

body.site-enterprise .reach-overview-touchpoint .province-glow {
    background: radial-gradient(circle, rgba(201, 162, 39, 0.6) 0%, rgba(201, 162, 39, 0.25) 48%, transparent 72%);
    z-index: 1;
}

body.site-enterprise .reach-map-caption {
    margin-top: 0.65rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    body.site-enterprise .reach-overview-touchpoint {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    body.site-enterprise .reach-map-container {
        order: -1;
    }
}

body.site-enterprise .contact-modal {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
}

body.site-enterprise .contact-modal h2 {
    color: var(--white);
}

body.site-enterprise .contact-modal-close {
    background: var(--bg-elevated);
    color: var(--text-body);
}

body.site-enterprise .contact-modal .form-header p {
    color: var(--text-muted);
}

body.site-enterprise .form-group label {
    color: var(--text-body);
    font-weight: 600;
}

body.site-enterprise .submit-button {
    background: var(--secondary-color);
    color: var(--dark);
}

body.site-enterprise .submit-button:hover {
    background: var(--secondary-light);
    color: var(--dark);
}

body.site-enterprise .footer-column p {
    color: #c5d2e3;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 0.35rem;
}

body.site-enterprise .footer-column a:not(.footer-cta) {
    color: #c5d2e3;
}

body.site-enterprise .footer-column a:not(.footer-cta):hover {
    color: var(--white);
}

body.site-enterprise .footer-column li {
    margin-bottom: 0.3rem;
}

body.site-enterprise .footer-logo {
    margin-bottom: 0.5rem;
}

body.site-enterprise .footer-bottom,
body.site-enterprise .footer-bottom p {
    color: #e8eef6 !important;
}

body.site-enterprise .footer-bottom a,
body.site-enterprise .footer-bottom .footer-sitemap-link {
    color: var(--tp-gold-light, #e0bc4a) !important;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

body.site-enterprise .footer-bottom a:hover {
    color: #ffffff !important;
}

body.site-enterprise .mediums-preview {
    background: var(--bg-elevated);
}

body.site-enterprise .medium-card :is(h3, h4) {
    color: var(--white);
}

body.site-enterprise .medium-card .medium-tagline {
    color: var(--text-accent);
}

body.site-enterprise .medium-card .medium-description,
body.site-enterprise .medium-card .medium-features li {
    color: var(--text-muted);
}

body.site-enterprise .faq-section {
    background: var(--bg-page);
}

body.site-enterprise .faq-item {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
    box-shadow: none;
}

body.site-enterprise .faq-item :is(h3, h4) {
    color: var(--white);
}

body.site-enterprise .faq-item p {
    color: var(--text-muted);
}

body.site-enterprise .sample-placeholder {
    background: var(--bg-surface);
    color: var(--text-muted);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

body.site-enterprise .sample-info h4 {
    color: var(--white);
}

body.site-enterprise .info-highlight {
    background: var(--bg-surface);
    border: var(--enterprise-rule);
}

body.site-enterprise .info-highlight h3,
body.site-enterprise .info-highlight h4 {
    color: var(--white);
}

body.site-enterprise .info-highlight li {
    color: var(--text-muted);
}

body.site-enterprise .use-case-card h4,
body.site-enterprise .visual-card h4,
body.site-enterprise .audience-stat h4 {
    color: var(--white);
}

body.site-enterprise .visual-card p,
body.site-enterprise .use-case-card p {
    color: var(--text-muted);
}

body.site-enterprise .difference-col-traditional,
body.site-enterprise .difference-col-touchpoint {
    color: var(--white);
}

body.site-enterprise .difference-col-traditional .difference-row,
body.site-enterprise .difference-col-touchpoint .difference-row {
    color: inherit;
}

body.site-enterprise .underserved-highlight p {
    color: var(--text-on-dark-muted);
}

body.site-enterprise .cta-band,
body.site-enterprise .cta-section .btn-secondary {
    color: var(--white);
}

/* Orange hero CTAs — WCAG 2.2 AA (≥4.5:1) */
body.site-enterprise .hero-editorial .cta-button:not(.cta-button-outline),
body.site-enterprise .hero-touchpoint .cta-button.cta-bold,
body.site-enterprise .hero-empower .cta-button.cta-bold {
    background: var(--secondary-color);
    color: var(--dark);
}

body.site-enterprise .hero-editorial .cta-button:not(.cta-button-outline):hover,
body.site-enterprise .hero-touchpoint .cta-button.cta-bold:hover,
body.site-enterprise .hero-empower .cta-button.cta-bold:hover {
    background: var(--secondary-light);
    color: var(--dark);
}

@media (max-width: 768px) {
    body.site-enterprise .nav-links {
        background: #ffffff;
    }

    body.site-enterprise .nav-links a:not(.nav-cta) {
        color: var(--tp-navy, #0b1f3a);
    }

    body.site-enterprise .nav-links a:not(.nav-cta).active {
        color: var(--tp-orange, #c9a227);
        background: rgba(201, 162, 39, 0.08);
        box-shadow: none;
    }

    body.site-enterprise .logo-image {
        height: 68px;
        max-width: min(270px, 62vw);
    }

    body.site-enterprise .nav-wrapper {
        min-height: 5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .cta-section,
    .footer,
    .scroll-indicator,
}

/* ============================================================
   404 / Error Page (site-enterprise)
   ============================================================ */
.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-section-alt, #0d1418) 100%);
}

.error-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-color, #c9a227);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.error-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-on-dark, #ffffff);
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.error-message {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-on-dark-muted, #a8b0b8);
    margin: 0 0 2.5rem 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.error-help {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted, #a8b0b8);
    margin: 0;
}

.error-help a {
    color: var(--secondary-light, #e0bc4a);
    text-decoration: underline;
    font-weight: 500;
}

.error-help a:hover,
.error-help a:focus-visible {
    color: var(--secondary-color, #c9a227);
}

@media (max-width: 600px) {
    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-actions .cta-button {
        width: 100%;
    }
}

/* ============================================================
   Premium spacing & rhythm polish (appended — wins by order)
   Tightens header rhythm, constrains measure, cleans platform icon
   ============================================================ */

/* Tighter, more deliberate section-header rhythm */
body.site-enterprise .section-header.centered .section-tag,
body.site-enterprise .section-header.centered .section-tag-orange {
    margin-bottom: 0.9rem;
}

body.site-enterprise .section-title {
    margin-bottom: 0.6rem;
}

/* Elegant measure + leading for descriptions */
body.site-enterprise .section-description {
    max-width: 58ch;
    line-height: 1.65;
}

body.site-enterprise .section-header.centered .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* TouchPoiint platform card: present the logo cleanly (no faint blob) */
body.site-enterprise .medium-card.empower .medium-icon {
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 1.25rem;
}

body.site-enterprise .medium-icon img {
    max-height: 64px;
    margin-bottom: 0;
}

/* Enterprise restraint: no playful logo rotation on hover */
body.site-enterprise .medium-card:hover .medium-icon {
    transform: none;
}

/* Platform card CTA: kill the leaked green/blue gradient box and
   present a clean premium underlined text link with an arrow.
   (.medium-card.empower .medium-cta had higher specificity than the
   enterprise override, so its gradient background was bleeding through.) */
body.site-enterprise .medium-card.empower .medium-cta,
body.site-enterprise .medium-card.pizza .medium-cta {
    background: transparent;
    background-image: none;
    color: var(--secondary-light);
    border: none;
    border-bottom: 2px solid var(--secondary-color);
    border-radius: 0;
    padding: 0 0 2px;
    box-shadow: none;
}

body.site-enterprise .medium-card.empower .medium-cta:hover,
body.site-enterprise .medium-card.pizza .medium-cta:hover {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
    transform: none;
    box-shadow: none;
}

body.site-enterprise .medium-cta::after {
    content: "\00a0\2192";
    display: inline-block;
    transition: transform 0.2s ease;
}

body.site-enterprise .medium-cta:hover::after {
    transform: translateX(3px);
}

/* Home platform card: section header owns the title — tagline leads the card */
body.site-enterprise .medium-tagline-lead {
    margin: 0 0 1rem;
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
}

/* ============================================================
   Honeypot field — hidden from real users, visible to bots
   ============================================================ */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ============================================================
   Legal pages — premium dark reading (no white document card)
   ============================================================ */
body.site-enterprise .legal-content {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

body.site-enterprise .legal-wrapper {
    gap: 0;
    align-items: stretch;
    background: var(--bg-surface);
    border: var(--enterprise-rule);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 2rem);
    overflow: hidden;
}

body.site-enterprise .legal-sidebar {
    background: transparent;
    border: none;
    border-right: var(--enterprise-rule);
    box-shadow: none;
    padding: 0 1.25rem 0 0;
    margin: 0;
    border-radius: 0;
}

body.site-enterprise .legal-main {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1.5rem;
    border-radius: 0;
}

body.site-enterprise .legal-nav a {
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.65rem;
}

body.site-enterprise .legal-nav a:hover,
body.site-enterprise .legal-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: var(--secondary-light);
}

body.site-enterprise .legal-section {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
}

body.site-enterprise .legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

body.site-enterprise .legal-section h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

body.site-enterprise .legal-section h3 {
    color: var(--secondary-light);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

body.site-enterprise .legal-section p,
body.site-enterprise .legal-section li {
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 65ch;
}

body.site-enterprise .legal-section ul,
body.site-enterprise .legal-section ol {
    padding-left: 1.25rem;
}

@media (max-width: 768px) {
    body.site-enterprise .legal-wrapper {
        padding: 1rem;
    }

    body.site-enterprise .legal-sidebar {
        position: static;
        margin-bottom: 1rem;
        padding: 0 0 1rem;
        border-right: none;
        border-bottom: var(--enterprise-rule);
    }

    body.site-enterprise .legal-main {
        padding: 1rem 0 0;
    }
}

/* === TouchPoiint brochure home + shared footer === */
:root {
    --tp-navy: #0b1f3a;
    --tp-navy-2: #16355f;
    --tp-green: #177a32;
    --tp-green-bright: #1f8f3a;
    --tp-gold: #c9a227;
    --tp-gold-light: #e0bc4a;
    --tp-gold-deep: #a6831e;
    /* Gold dark enough for body/heading text on cream/white (≥4.5:1) */
    --tp-gold-ink: #7a6210;
    --tp-orange: var(--tp-gold);
    --tp-cream: #f7f5f0;
    --tp-ink: #14233a;
    --tp-ink-soft: #3a4d66;
}

/* Light isolation — beats site-enterprise dark-theme cascade */
body.site-enterprise.page-light {
    --bg-page: #ffffff;
    --bg-elevated: #ffffff;
    --bg-surface: #ffffff;
    --text-body: var(--tp-ink);
    --text-muted: var(--tp-ink-soft);
    --border: #d7deea;
    --enterprise-rule: 1px solid #d7deea;
    background-color: #ffffff;
    color: var(--tp-ink);
}

body.site-enterprise.page-light main :is(h1, h2, h3, h4, h5, h6, .section-title),
body.site-enterprise.page-light main :is(p, li, label, .form-note, .checkbox-label span),
body.site-enterprise.page-light main strong {
    color: inherit;
}

body.site-enterprise.page-light main {
    background: var(--tp-cream, #f7f5f0);
    scroll-padding-top: 5.5rem;
    padding-bottom: 0;
}

html:has(body.page-light) {
    scroll-padding-top: 5.5rem;
}

body.site-enterprise.page-light :is(
    .tp-hero,
    .tp-focus-band,
    .tp-what,
    .tp-mobile,
    .tp-diff,
    .tp-footer-cta,
    footer.footer
) {
    scroll-margin-top: 5.5rem;
}

.tp-accent-green { color: var(--tp-green) !important; }
.tp-accent-navy { color: var(--tp-navy) !important; }
.tp-accent-orange { color: var(--tp-orange) !important; }

.tp-hero {
    background: #ffffff;
    padding-bottom: 0;
}


/* Shared hero / partner primitives (about + other pages) */
.tp-hero-media {
    margin: 0;
    position: relative;
    width: 100%;
    min-height: min(58vh, 520px);
    max-height: min(72vh, 680px);
    overflow: hidden;
    background: #1a2438;
}

.tp-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(12, 21, 40, 0.12) 0%, transparent 28%),
        linear-gradient(180deg, transparent 45%, rgba(255, 255, 255, 0.55) 78%, #ffffff 100%);
    z-index: 1;
}

.tp-hero-media picture,
.tp-hero-media img {
    width: 100%;
    height: 100%;
    min-height: min(58vh, 520px);
    max-height: min(72vh, 680px);
    object-fit: cover;
    object-position: center 32%;
    display: block;
}

.tp-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1.5rem, 4vw, 2.5rem) 1.25rem 1.5rem;
    background: transparent;
    text-align: center;
}

.tp-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.55rem, 3.6vw, 2.55rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--tp-navy);
    letter-spacing: -0.02em;
    max-width: 22ch;
    margin: 0 auto;
}

.tp-hero-body {
    padding-top: clamp(1.25rem, 2.5vw, 2rem);
    padding-bottom: 1.5rem;
    text-align: center;
    background: #ffffff;
}

.tp-hero-lead {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    line-height: 1.55;
    color: var(--tp-ink) !important;
    max-width: 42rem;
    margin: 0 auto 1.35rem;
}

.tp-hero-lead strong { color: var(--tp-navy) !important; }

.tp-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    margin: 0 auto 2rem;
    max-width: 22rem;
    padding: 0.85rem 1rem 1rem;
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 0.85rem;
}

.tp-partner-logo {
    width: min(240px, 70vw);
    height: auto;
    display: block;
    background: transparent;
}

.tp-partner-link {
    display: inline-block;
    line-height: 0;
}

.tp-partner-tag {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tp-navy-2) !important;
}

.tp-partner-tag a {
    color: var(--tp-green, #1f8f3a) !important;
    text-decoration: underline;
}

.tp-hero-props {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 52rem;
    display: grid;
    gap: 1.25rem;
    text-align: left;
}

.tp-hero-props li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.tp-hero-props p {
    margin: 0;
    color: var(--tp-ink) !important;
    font-size: 1.05rem;
    line-height: 1.55;
}

.tp-hero-props strong { color: inherit; }

.tp-icon-circle {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.tp-icon-circle svg { width: 1.55rem; height: 1.55rem; }
.tp-icon-green { background: var(--tp-green); }
.tp-icon-navy, .tp-icon-blue { background: var(--tp-navy-2); }

.tp-pillars {
    background: var(--tp-navy);
    color: #fff;
    margin-top: 2rem;
    padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

.tp-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.tp-pillar { text-align: center; color: #fff; }
.tp-pillar .tp-icon-circle { margin: 0 auto 0.75rem; }

.tp-pillar h2 {
    font-size: 1.05rem;
    margin: 0 0 0.35rem;
    color: #ffffff !important;
}

.tp-pillar p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.4;
}

.tp-network-bar {
    margin: 0;
    text-align: center;
    background: #101820;
    color: #fff !important;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    padding: 0.9rem 1rem;
}

.tp-network-bar strong { color: var(--tp-gold) !important; }

.tp-channel-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.75rem;
    background: #14652a;
    color: #fff;
    padding: 1rem 1.25rem;
}

.tp-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

a.tp-channel:hover { text-decoration: underline; color: #fff !important; }

.tp-channel-icon {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.tp-channel-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
}

.tp-focus-band {
    background: var(--tp-cream);
    padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.tp-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tp-focus-card {
    padding: 1.25rem 1.4rem;
    border-radius: 0.75rem;
    font-size: 1.02rem;
    line-height: 1.45;
}

.tp-focus-card p { margin: 0; }
.tp-focus-card-navy {
    background: var(--tp-navy);
    color: #ffffff !important;
}
.tp-focus-card-navy p { color: #ffffff !important; }
.tp-focus-card-navy strong,
.tp-focus-card-navy em {
    color: var(--tp-gold) !important;
    font-style: normal;
    font-weight: 700;
}

.tp-focus-card-orange {
    background: var(--tp-orange);
    color: var(--tp-navy) !important;
}
.tp-focus-card-orange p { color: var(--tp-navy) !important; }
.tp-focus-card-orange strong,
.tp-focus-card-orange em {
    color: #081526 !important;
    font-style: normal;
    font-weight: 800;
}

.tp-focus-lead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--tp-ink) !important;
    max-width: 48rem;
    margin: 0 auto;
}

.tp-focus-lead strong { color: var(--tp-navy) !important; }

.tp-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.02em;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--tp-navy) !important;
    font-size: clamp(1.05rem, 2.3vw, 1.45rem);
    margin: 0 0 1.75rem;
}

.tp-section-title span {
    flex: 1;
    max-width: 6rem;
    height: 2px;
    background: var(--tp-orange);
}

.tp-what {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: #ffffff;
}

.tp-what-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.tp-what-grid article {
    text-align: center;
    padding: 0.5rem 0.35rem;
    border-right: 1px solid #d7deea;
}

.tp-what-grid article:last-child { border-right: 0; }

.tp-what-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: var(--tp-navy);
    color: var(--tp-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.tp-what-icon svg { width: 1.6rem; height: 1.6rem; }

.tp-what-grid h3 {
    margin: 0 0 0.4rem;
    color: var(--tp-navy) !important;
    text-transform: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.tp-what-grid p {
    margin: 0;
    color: var(--tp-navy) !important;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tp-mobile { background: #ffffff; padding-bottom: clamp(2rem, 4vw, 3.5rem); }

.tp-mobile-banner {
    background: var(--tp-navy);
    text-align: center;
    padding: 1rem 1.25rem;
    margin-bottom: 1.75rem;
}

.tp-mobile-banner h2 {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--tp-orange) !important;
}

.tp-mobile-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) 1.4fr;
    gap: 1.5rem;
    align-items: start;
}

.tp-phone-card {
    background: linear-gradient(160deg, var(--tp-navy) 0%, var(--tp-navy-2) 100%);
    color: #fff;
    border-radius: 1.5rem;
    padding: 1.25rem 1.1rem;
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.25);
}

.tp-phone-row {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 0.85rem 0.4rem;
}

.tp-phone-row:last-child { border-bottom: 0; }

.tp-phone-row strong {
    display: block;
    color: var(--tp-green-bright) !important;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.tp-phone-row span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.92) !important;
    line-height: 1.35;
}

.tp-mobile-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.tp-mobile-steps li {
    background: var(--tp-cream);
    border-radius: 0.75rem;
    padding: 0.95rem 1.1rem;
    border-left: 4px solid var(--tp-navy);
}

.tp-mobile-steps h3 {
    margin: 0 0 0.25rem;
    color: var(--tp-navy) !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tp-mobile-steps p {
    margin: 0;
    color: var(--tp-ink) !important;
    font-size: 0.95rem;
}

.tp-diff {
    background: var(--tp-cream);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.tp-diff-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.tp-diff-legend-trad,
.tp-diff-legend-tp {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    padding: 0.7rem;
    border-radius: 0.5rem;
}

.tp-diff-legend-trad { background: var(--tp-navy); color: #fff; }
.tp-diff-legend-tp { background: var(--tp-orange); color: #111; }

.tp-diff-pairs {
    display: grid;
    gap: 0.85rem;
}

.tp-diff-pair {
    background: transparent;
}

.tp-diff-cat {
    margin: 0 0 0.45rem;
    background: var(--tp-navy);
    color: #ffffff !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.55rem 0.75rem;
    border-radius: 0.45rem;
}

.tp-diff-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.tp-diff-trad,
.tp-diff-tp {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid #e2e8f0;
}

.tp-diff-trad strong,
.tp-diff-tp strong {
    display: block;
    color: var(--tp-navy) !important;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.tp-diff-trad span,
.tp-diff-tp span {
    display: block;
    color: var(--tp-ink-soft) !important;
    font-size: 0.88rem;
    line-height: 1.35;
}

.tp-diff-tp {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: inset 3px 0 0 var(--tp-orange);
}

.tp-footer-cta { background: var(--tp-navy); color: #fff; }

.tp-footer-cta-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 0;
    align-items: stretch;
}

.tp-footer-cta-copy {
    padding: clamp(1rem, 2.2vw, 1.35rem) 0;
    padding-right: 1.25rem;
}

.tp-footer-cta-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    color: #ffffff !important;
}

.tp-footer-cta-title span { color: var(--tp-orange) !important; }

.tp-footer-cta-copy p:last-child {
    margin: 0;
    color: rgba(255,255,255,0.92) !important;
    max-width: 38rem;
    line-height: 1.45;
}

.tp-footer-cta-pin {
    background: var(--tp-orange);
    color: #111 !important;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
    padding: 1rem 0.9rem;
    font-weight: 600;
}

.tp-footer-cta-pin:hover { filter: brightness(1.05); color: #111 !important; }

.tp-footer-cta-pin strong {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 1rem;
    font-weight: 600;
    color: #111 !important;
}

.tp-footer-cta-pin span:last-child {
    font-size: 0.95rem;
    color: #111 !important;
}

.tp-pin {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    color: #111;
}

.tp-pin svg { width: 100%; height: 100%; display: block; }

.tp-footer-trust {
    margin: 0;
    text-align: center;
    background: #ffffff;
    color: var(--tp-navy) !important;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: clamp(0.8rem, 1.6vw, 0.95rem);
    padding: 0.55rem 1rem;
}

body.site-enterprise .footer-partner,
body.site-enterprise.page-light .footer-partner {
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-partner-label {
    margin: 0 0 0.3rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c5d2e3;
}

.footer-lifeline-logo {
    width: min(168px, 70%);
    height: auto;
    display: block;
    background: #ffffff;
    border: 0;
    border-radius: 0.5rem;
    padding: 0.4rem 0.55rem;
    box-shadow: none;
}

body.site-enterprise .footer-logo .logo-image,
body.site-enterprise.page-light .footer-logo .logo-image {
    height: 40px;
    max-width: 200px;
}

@media (max-width: 960px) {
    .tp-pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tp-what-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tp-what-grid article {
        border-right: 0;
        border-bottom: 1px solid #d7deea;
        padding-bottom: 1rem;
    }
    .tp-mobile-grid { grid-template-columns: 1fr; }
    .tp-focus-grid { grid-template-columns: 1fr; }
    .tp-footer-cta-grid { grid-template-columns: 1fr; }
    .tp-diff-cols { grid-template-columns: 1fr; }
    .tp-hero-title { max-width: 28ch; }
}

@media (max-width: 640px) {
    .tp-pillars-grid { grid-template-columns: 1fr; }
    .tp-what-grid { grid-template-columns: 1fr; gap: 0.35rem; }
    .tp-what-grid article { padding: 0.65rem 0.25rem 0.85rem; }
    .tp-hero-title { max-width: none; }
    .tp-channel-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .tp-channel { justify-content: center; }
    body.site-enterprise.page-light main {
        padding-bottom: 0;
    }
    .tp-diff-legend { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .tp-footer-cta-pin:hover { filter: none; }
}


/* Light-theme surfaces for shared enterprise sections on page-light */
body.site-enterprise.page-light .hero.hero-touchpoint,
body.site-enterprise.page-light .hero.hero-empower {
    background: #ffffff;
}
body.site-enterprise.page-light .what-we-do-section,
body.site-enterprise.page-light .intro-section,
body.site-enterprise.page-light .how-it-works,
body.site-enterprise.page-light .samples-section,
body.site-enterprise.page-light .audience-section,
body.site-enterprise.page-light .the-difference,
body.site-enterprise.page-light .use-cases,
body.site-enterprise.page-light .cta-section,
body.site-enterprise.page-light .legal-main,
body.site-enterprise.page-light .error-section,
body.site-enterprise.page-light .about-section,
body.site-enterprise.page-light .mediums-preview {
    background: #ffffff;
}

body.site-enterprise.page-light .underserved-highlight {
    background: var(--tp-cream, #f7f5f0);
}

body.site-enterprise.page-light .section-title,
body.site-enterprise.page-light .section-description,
body.site-enterprise.page-light .lead,
body.site-enterprise.page-light .intro-text p,
body.site-enterprise.page-light .step-content p,
body.site-enterprise.page-light .sample-info p,
body.site-enterprise.page-light .sample-info h4,
body.site-enterprise.page-light .reach-text-content p,
body.site-enterprise.page-light .reach-text-content h3,
body.site-enterprise.page-light .use-case-card p,
body.site-enterprise.page-light .use-case-card h3,
body.site-enterprise.page-light .difference-row,
body.site-enterprise.page-light .legal-section p,
body.site-enterprise.page-light .legal-section li,
body.site-enterprise.page-light .legal-section h2,
body.site-enterprise.page-light .contact-form label {
    color: var(--tp-ink, #14233a) !important;
}

body.site-enterprise.page-light .section-tag,
body.site-enterprise.page-light .reach-eyebrow {
    color: var(--tp-orange, #c9a227) !important;
}

body.site-enterprise.page-light .audience-stat {
    background: var(--tp-navy, #0b1f3a);
    border-left: 4px solid var(--tp-orange, #c9a227);
    color: #fff;
    border-radius: 0.5rem;
    padding: 1.1rem 1.15rem;
}

body.site-enterprise.page-light .audience-stat .stat-number {
    color: #ffffff !important;
    font-family: var(--font-display);
}

body.site-enterprise.page-light .audience-stat .stat-label {
    color: var(--tp-orange, #c9a227) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
}

body.site-enterprise.page-light .audience-stat p {
    color: #c5d2e3 !important;
}

body.site-enterprise.page-light .reach-stat-card {
    background: #ffffff;
    border: 1px solid #d7deea;
    color: var(--tp-ink, #14233a);
}

body.site-enterprise.page-light .reach-stat-value,
body.site-enterprise.page-light .highlight-number {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.site-enterprise.page-light .highlight-number-orange,
body.site-enterprise.page-light .reach-stat-value-accent {
    color: var(--tp-orange, #c9a227) !important;
}

body.site-enterprise.page-light .highlight-label,
body.site-enterprise.page-light .reach-stat-label,
body.site-enterprise.page-light .reach-map-caption {
    color: var(--tp-ink-soft, #3a4d66) !important;
}

body.site-enterprise.page-light .sample-card {
    background: #ffffff;
    border: 1px solid #d7deea;
}

body.site-enterprise.page-light .sample-placeholder {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(145deg, #eef2f7 0%, #dfe7f2 100%);
    color: var(--tp-navy, #0b1f3a);
    text-align: center;
    padding: 1.5rem;
}
body.site-enterprise.page-light .sample-placeholder-label {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}
body.site-enterprise.page-light .sample-placeholder-sub {
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0.75;
}

body.site-enterprise.page-light .cta-section.cta-empower,
body.site-enterprise.page-light .cta-section {
    background: var(--tp-navy, #0b1f3a);
}

body.site-enterprise.page-light .cta-section .cta-content h2,
body.site-enterprise.page-light .cta-section .cta-content p {
    color: #ffffff !important;
}

body.site-enterprise.page-light .hero-title,
body.site-enterprise.page-light .hero-subtitle,
body.site-enterprise.page-light .hero-tag {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.site-enterprise.page-light .hero.hero-touchpoint .hero-overlay,
body.site-enterprise.page-light .hero.hero-empower .hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.92));
}

.nav-links a { white-space: nowrap; }

/* ========== LifeLine page (home look / light theme) ========== */
.ll-hero {
    background: #ffffff;
    padding-bottom: 0;
}

.ll-hero-banner {
    background: var(--tp-green, #1f8f3a);
    color: #fff;
    text-align: center;
    padding: 0.85rem 1rem;
}

.ll-hero-banner-en {
    margin: 0;
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff !important;
}

.ll-hero-banner-zu {
    margin: 0.2rem 0 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92) !important;
}

.ll-hero-inner {
    text-align: center;
    padding: clamp(2rem, 5vw, 3.5rem) 1rem clamp(1.5rem, 3vw, 2.25rem);
}

.ll-hero-logo {
    display: block;
    width: min(100%, 280px);
    height: auto;
    margin: 0 auto 1.25rem;
}

.ll-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--tp-navy, #0b1f3a) !important;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.ll-hero-lead {
    max-width: 40rem;
    margin: 0 auto 0.75rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--tp-ink, #14233a) !important;
}

.ll-hero-lead strong {
    color: var(--tp-navy, #0b1f3a) !important;
}

.ll-hero-tagline {
    margin: 0;
    font-weight: 600;
    color: var(--tp-orange, #c9a227) !important;
    font-size: 1.05rem;
}

.ll-centre-bar {
    background: var(--tp-navy, #0b1f3a);
    color: #fff;
    padding: 1.1rem 0;
}

.ll-centre-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ll-centre-title {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
}

.ll-centre-zu {
    margin: 0.25rem 0 0;
    color: #c5d2e3 !important;
    font-size: 0.95rem;
}

.ll-centre-icon {
    width: 3rem;
    height: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.ll-centre-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.ll-services {
    background: var(--tp-cream, #f7f5f0);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.ll-section-header {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2rem;
}

.ll-section-tag {
    display: inline-block;
    color: var(--tp-orange, #c9a227) !important;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-bottom: 0.5rem;
}

.ll-section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--tp-navy, #0b1f3a) !important;
    margin: 0 0 0.75rem;
}

.ll-section-desc {
    margin: 0;
    color: var(--tp-ink-soft, #3a4d66) !important;
    line-height: 1.6;
    font-size: 1.02rem;
}

.ll-section-desc strong {
    color: var(--tp-navy, #0b1f3a) !important;
}

.ll-service {
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
    background: #ffffff;
    border: 1px solid #d7deea;
    border-left: 4px solid var(--tp-orange, #c9a227);
    border-radius: 0.75rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1.25rem;
}

.ll-service-aids { border-left-color: #e10600; }
.ll-service-gbv { border-left-color: #6b2d95; }
.ll-service-trauma { border-left-color: #e10600; }

.ll-service-visual {
    text-align: center;
}

.ll-service-visual img {
    width: min(100%, 180px);
    height: auto;
    margin: 0 auto;
    display: block;
}

.ll-service-gbv .ll-service-visual img {
    width: min(100%, 200px);
}

.ll-service-visual-label {
    margin: 0.75rem 0 0.25rem;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tp-navy, #0b1f3a) !important;
}

.ll-service-visual-label-red {
    color: #c40000 !important;
}

.ll-service-visual-num {
    display: inline-block;
    font-weight: 800;
    font-size: 1.15rem;
    color: #c40000 !important;
    text-decoration: none;
}

.ll-service-visual-num:hover {
    text-decoration: underline;
}

.ll-service-body h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    color: var(--tp-navy, #0b1f3a) !important;
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

.ll-service-aids .ll-service-body h3 { color: #b00000 !important; }
.ll-service-gbv .ll-service-body h3 { color: #4c1d75 !important; }

.ll-service-zu {
    margin: 0 0 0.75rem;
    font-style: italic;
    color: var(--tp-ink-soft, #3a4d66) !important;
    font-size: 0.98rem;
}

.ll-service-copy {
    margin: 0 0 1rem;
    color: var(--tp-ink, #14233a) !important;
    line-height: 1.6;
    font-size: 1rem;
}

.ll-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.ll-contact-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    background: var(--tp-cream, #f7f5f0);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.ll-contact-kind {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tp-gold-ink, #7a6210) !important;
}

.ll-contact-list a {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--tp-navy, #0b1f3a) !important;
    text-decoration: none;
}

.ll-contact-list a:hover {
    color: var(--tp-green, #1f8f3a) !important;
    text-decoration: underline;
}

.ll-badge-free {
    display: inline-block;
    margin-left: 0.35rem;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    color: #c40000 !important;
    letter-spacing: 0.03em;
}

.ll-rate-note {
    display: block;
    margin-top: 0.15rem;
    font-style: normal;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--tp-ink-soft, #3a4d66) !important;
}

.ll-partner {
    background: #ffffff;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    text-align: center;
}

.ll-partner .ll-section-title,
.ll-partner .ll-section-desc {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.ll-partner .ll-section-desc {
    margin-bottom: 1.5rem;
}

.ll-partner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ll-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: center;
    margin: 0;
    font-weight: 700;
    color: var(--tp-navy, #0b1f3a) !important;
}

.ll-hashtags span {
    color: var(--tp-gold-ink, #7a6210) !important;
}

@media (max-width: 720px) {
    .ll-service {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ll-service-body h3,
    .ll-service-zu,
    .ll-service-copy {
        text-align: center;
    }

    .ll-contact-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ll-centre-bar-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== Where We Are + Installations (home visual language) ========== */
body.site-enterprise.page-light :is(
    .tp-page-hero,
    .tp-hero
) {
    padding: 0;
}

body.site-enterprise.page-light :is(
    .tp-reach-section,
        .tp-journey-section,
    .tp-journey-visual
) {
    padding: clamp(2.5rem, 6vw, 4.25rem) 0;
}

body.site-enterprise.page-light .tp-journey-bridge {
    padding: clamp(2rem, 5vw, 3.5rem) 0 0;
}

body.site-enterprise.page-light .tp-journey-vision {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

body.site-enterprise.page-light section.tp-page-band {
    padding: clamp(2rem, 4vw, 2.75rem) 0;
}

body.site-enterprise.page-light section.tp-journey-closing {
    padding: clamp(3rem, 6vw, 4.75rem) 0 clamp(3.25rem, 6vw, 5rem);
}

.tp-page-hero {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.tp-page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 85% 10%, rgba(201, 162, 39, 0.16), transparent 55%),
        radial-gradient(ellipse 55% 50% at 0% 90%, rgba(31, 143, 58, 0.1), transparent 50%),
        linear-gradient(180deg, #f7f5f0 0%, #ffffff 55%, #ffffff 100%);
    pointer-events: none;
}

.tp-page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: center;
    padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.tp-page-hero-grid-map {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.tp-page-hero-map .tp-page-hero-copy {
    display: flex;
    flex-direction: column;
    max-width: 34rem;
}

.tp-page-hero-map .tp-page-eyebrow {
    margin-bottom: 0.45rem;
}

.tp-page-hero-map .tp-page-title {
    margin-bottom: 1rem;
}

.tp-page-hero-map .tp-page-lead {
    margin-bottom: 0.85rem;
    max-width: none;
}

.tp-page-lead-tight {
    margin-top: 0;
    margin-bottom: 1.35rem;
}

.tp-page-hero-map .tp-page-actions {
    margin-bottom: 0;
    gap: 0.65rem;
}

.tp-page-hero-map .tp-page-actions .cta-button.cta-bold {
    font-size: 1rem;
    padding: 0.8rem 1.35rem;
}

.tp-page-hero-map .tp-page-actions .cta-button-outline {
    padding: 0.8rem 1.35rem;
}

.tp-province-block {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f2;
}

.tp-province-label {
    margin: 0 0 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--tp-ink-soft, #3a4d66) !important;
}

.tp-province-list-hero {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.tp-province-list-hero li {
    margin: 0;
    text-align: center;
    padding: 0.5rem 0.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.25;
}

.tp-reach-map-hero {
    width: 100%;
}

.tp-reach-map-hero .tp-reach-map-frame {
    padding: 0.65rem;
    border-radius: 0.85rem;
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    border: 1px solid #cfd8e6;
    box-shadow:
        0 24px 48px rgba(11, 31, 58, 0.12),
        0 0 0 6px rgba(201, 162, 39, 0.08);
}

.tp-reach-map-hero .tp-reach-caption {
    margin-top: 0.65rem;
    font-size: 0.85rem;
}

.tp-page-hero-grid-simple {
    grid-template-columns: 1fr;
    max-width: 48rem;
}

.tp-about-focus { margin-bottom: 2rem; }

/* ========== About — Journey narrative ========== */
.tp-about-hero .tp-hero-media img {
    object-position: center 40%;
}

.tp-about-hero-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tp-orange, #c9a227) !important;
}

.tp-about-hero .tp-hero-title {
    max-width: none;
}

.tp-journey-section {
    background: #ffffff;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.tp-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.tp-journey-header {
    position: sticky;
    top: 6rem;
}

.tp-journey-header-center {
    text-align: center;
    position: static;
    max-width: 46rem;
    margin: 0 auto 2rem;
}

.tp-journey-copy p {
    margin: 0 0 1.1rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--tp-ink, #14233a) !important;
}

.tp-journey-quote {
    display: block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin: 1.5rem 0;
    margin-inline: 0;
    padding: 0.95rem 1.25rem;
    border: 0;
    border-left: 0;
    background: var(--tp-navy, #0b1f3a);
    border-radius: 0.65rem;
    color: #fff;
}

.tp-journey-quote p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.45;
    color: #fff !important;
}

.tp-journey-quote strong {
    color: var(--tp-gold, #c9a227) !important;
    font-weight: 700;
}

.tp-journey-insight {
    background:
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(31, 143, 58, 0.08), transparent 55%),
        var(--tp-navy, #0b1f3a);
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.tp-journey-insight-card {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.tp-journey-insight-card h2 {
    margin: 0 0 1.25rem;
    font-family: var(--font-primary);
    font-size: clamp(1.45rem, 3.2vw, 2.1rem);
    font-weight: 600;
    line-height: 1.3;
    color: #fff !important;
}

.tp-journey-insight-card p {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #d8e2ef !important;
}

.tp-journey-insight-truth {
    margin: 1.5rem 0 !important;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.6vw, 1.55rem) !important;
    color: #fff !important;
}

.tp-journey-insight-truth strong {
    color: var(--tp-orange, #c9a227) !important;
}

.tp-journey-visual {
    background: var(--tp-cream, #f7f5f0);
    padding: clamp(2.5rem, 6vw, 4.25rem) 0;
}

.tp-journey-visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: center;
}

.tp-journey-figure {
    margin: 0;
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(11, 31, 58, 0.14),
        0 0 0 4px rgba(201, 162, 39, 0.1);
}

.tp-journey-figure img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.tp-journey-subtitle {
    margin: 0 0 1rem;
    font-family: var(--font-primary);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--tp-navy, #0b1f3a) !important;
}

.tp-journey-visual-copy p {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.62;
    color: var(--tp-ink, #14233a) !important;
}

.tp-journey-bridge {
    background: #ffffff;
    padding: clamp(2rem, 5vw, 3.5rem) 0 0;
}

.tp-journey-vision {
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(201, 162, 39, 0.1), transparent 55%),
        #ffffff;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.tp-journey-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.25rem;
    align-items: stretch;
}

.tp-journey-value-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f2;
    border-top: 3px solid var(--tp-gold, #c9a227);
    border-radius: 0.85rem;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.06);
}

.tp-journey-value-card h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--tp-navy, #0b1f3a) !important;
}

.tp-journey-value-card p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--tp-ink-soft, #3a4d66) !important;
}

.tp-journey-value-card-accent {
    border-top-color: var(--tp-gold, #c9a227);
    background: var(--tp-navy, #0b1f3a);
}

.tp-journey-value-card-accent h3 {
    color: #ffffff !important;
}

.tp-journey-value-card-accent p {
    color: #d8e2ef !important;
}

.tp-journey-closing {
    background: var(--tp-cream, #f7f5f0);
    padding: clamp(3rem, 6vw, 4.75rem) 0 clamp(3.25rem, 6vw, 5rem);
    border-top: 1px solid rgba(201, 162, 39, 0.35);
}

.tp-journey-closing-inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.tp-journey-closing-quote {
    margin: 0 0 1.75rem;
    font-family: var(--font-primary);
    font-size: clamp(1.55rem, 3.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--tp-navy, #0b1f3a) !important;
}

.tp-journey-closing-quote span {
    display: block;
    margin-top: 0.65rem;
    color: var(--tp-gold-ink, #7a6210) !important;
}

.tp-journey-closing-inner p {
    margin: 0 0 1.15rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--tp-ink, #14233a) !important;
}

.tp-journey-closing-actions {
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 0;
    gap: 0.75rem;
}

.tp-partner-inline {
    margin: 0;
    max-width: none;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.tp-partner-inline .tp-partner-logo {
    width: min(180px, 55vw);
}

@media (max-width: 900px) {
    .tp-journey-grid,
    .tp-journey-visual-grid,
    .tp-journey-value-grid {
        grid-template-columns: 1fr;
    }

    .tp-journey-header {
        position: static;
    }
}

/* ========== TouchPoiint modern theme — Installations feel site-wide ========== */
.tp-accent-gold,
.tp-accent-orange {
    color: var(--tp-gold-ink) !important;
}

body.site-enterprise.page-light .tp-accent-gold,
body.site-enterprise.page-light .tp-accent-orange {
    color: var(--tp-gold-ink) !important;
}

body.site-enterprise.page-light {
    background: var(--tp-cream);
}

body.site-enterprise.page-light main {
    background: var(--tp-cream);
}

body.site-enterprise.page-light .tp-surface-cream {
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        var(--tp-cream);
}

body.site-enterprise.page-light :is(
    .tp-focus-band,
    .tp-diff,
        .tp-journey-section,
    .tp-journey-visual,
    .tp-journey-closing,
    .tp-mobile,
    .tp-reach-section
) {
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        var(--tp-cream);
}

body.site-enterprise.page-light :is(
    .tp-hero-body,
    .tp-what,
    .tp-page-hero,
    .tp-journey-bridge,
    .tp-journey-vision,
    .ll-hero,
    .ll-helplines
) {
    background: #ffffff;
}

body.site-enterprise.page-light .tp-hero-body {
    border-top: 1px solid rgba(201, 162, 39, 0.12);
}

body.site-enterprise.page-light .tp-page-hero-bg {
    background:
        radial-gradient(ellipse 70% 55% at 85% 10%, rgba(201, 162, 39, 0.14), transparent 55%),
        radial-gradient(ellipse 55% 50% at 0% 90%, rgba(31, 143, 58, 0.1), transparent 50%),
        linear-gradient(180deg, #f7f5f0 0%, #ffffff 55%, #ffffff 100%);
}

body.site-enterprise.page-light .tp-partner {
    border-color: #e2e8f2;
    border-radius: 0.85rem;
    box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
}

body.site-enterprise.page-light .tp-what-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
}

body.site-enterprise.page-light .tp-what-grid article {
    background: #ffffff;
    border: 1px solid #d7deea;
    border-radius: 0.85rem;
    padding: 1.25rem 0.85rem 1.15rem;
    border-right: 1px solid #d7deea;
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

body.site-enterprise.page-light .tp-what-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(11, 31, 58, 0.1);
}

body.site-enterprise.page-light .tp-what-icon {
    color: var(--tp-gold-ink);
}

body.site-enterprise.page-light .tp-what-grid h3 {
    color: var(--tp-navy) !important;
}

body.site-enterprise.page-light .tp-focus-card-orange {
    background: linear-gradient(145deg, var(--tp-gold-light) 0%, var(--tp-gold) 100%);
}

body.site-enterprise.page-light .tp-section-title span {
    background: var(--tp-gold);
}

body.site-enterprise.page-light .tp-page-eyebrow,
body.site-enterprise.page-light .section-tag,
body.site-enterprise.page-light .reach-eyebrow {
    color: var(--tp-gold-ink) !important;
}

body.site-enterprise.page-light .tp-mobile-banner h2 {
    color: var(--tp-gold) !important;
}

body.site-enterprise.page-light .tp-mobile-steps li {
    border-left-color: var(--tp-gold);
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.05);
}

body.site-enterprise.page-light .tp-phone-card {
    box-shadow:
        0 18px 40px rgba(11, 31, 58, 0.22),
        0 0 0 3px rgba(201, 162, 39, 0.12);
}

body.site-enterprise.page-light .tp-reach-map-hero .tp-reach-map-frame {
    box-shadow:
        0 24px 48px rgba(11, 31, 58, 0.12),
        0 0 0 6px rgba(201, 162, 39, 0.1);
}

body.site-enterprise.page-light .tp-province-list li {
    box-shadow: 0 4px 12px rgba(11, 31, 58, 0.04);
}

body.site-enterprise.page-light .tp-province-list li:hover {
    border-color: rgba(201, 162, 39, 0.45);
}

body.site-enterprise.page-light .cta-button.cta-bold,
body.site-enterprise.page-light .cta-button:not(.cta-button-outline),
body.site-enterprise.page-light .submit-button.cta-bold {
    background: linear-gradient(145deg, var(--tp-gold-light) 0%, var(--tp-gold) 100%);
    border-color: var(--tp-gold);
    color: var(--tp-navy) !important;
}

body.site-enterprise.page-light .cta-button.cta-bold:hover,
body.site-enterprise.page-light .cta-button:not(.cta-button-outline):hover,
body.site-enterprise.page-light .submit-button.cta-bold:hover {
    background: linear-gradient(145deg, #ebd06a 0%, var(--tp-gold-light) 100%);
    color: var(--tp-navy) !important;
}

body.site-enterprise.page-light .nav-links a:not(.nav-cta):hover,
body.site-enterprise.page-light .nav-links a:not(.nav-cta).active {
    color: var(--tp-gold);
}

body.site-enterprise.page-light .nav-links a:not(.nav-cta).active {
    box-shadow: inset 0 -2px 0 var(--tp-gold);
}

body.site-enterprise.page-light .nav-cta:hover,
body.site-enterprise.page-light .nav-cta.active {
    background: var(--tp-gold);
    border-color: var(--tp-gold);
    color: var(--tp-navy) !important;
}

body.site-enterprise.page-light .tp-footer-cta-pin {
    background: var(--tp-gold);
}

body.site-enterprise.page-light .tp-footer-cta-title span {
    color: var(--tp-gold-light) !important;
}

body.site-enterprise.page-light .tp-page-statstrip,
body.site-enterprise.page-light .tp-reach-close,
body.site-enterprise.page-light .tp-page-band,
body.site-enterprise.page-light .tp-footer-cta,
body.site-enterprise.page-light .tp-pillars,
body.site-enterprise.page-light .tp-journey-insight {
    border-top-color: var(--tp-gold);
}

body.site-enterprise.page-light .tp-page-stat-accent,
body.site-enterprise.page-light .tp-page-statstrip .tp-page-stat-accent,
body.site-enterprise.page-light .highlight-number-orange,
body.site-enterprise.page-light .reach-stat-value-accent {
    color: var(--tp-gold-light) !important;
}

body.site-enterprise.page-light .tp-install-tone-a {
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.35), transparent 45%),
        linear-gradient(145deg, #0b1f3a 0%, #16355f 70%, #1f8f3a 160%);
}

body.site-enterprise.page-light .tp-install-tone-b {
    background:
        radial-gradient(circle at 80% 30%, rgba(31, 143, 58, 0.35), transparent 45%),
        linear-gradient(155deg, #122a4a 0%, #0b1f3a 55%, var(--tp-gold) 150%);
}

body.site-enterprise.page-light .ll-services {
    background:
        radial-gradient(ellipse 55% 45% at 0% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        var(--tp-cream);
}

body.site-enterprise.page-light .ll-service {
    border-radius: 0.85rem;
    box-shadow: 0 14px 32px rgba(11, 31, 58, 0.08);
}

body.site-enterprise.page-light .faq-section {
    background: var(--tp-cream, #f7f5f0);
}

body.site-enterprise.page-light .hero.hero-contact {
    background: var(--tp-cream, #f7f5f0);
}

body.site-enterprise.page-light .hero.hero-contact .hero-overlay {
    opacity: 1;
    background:
        radial-gradient(ellipse 70% 55% at 85% 10%, rgba(201, 162, 39, 0.14), transparent 55%),
        linear-gradient(180deg, #f7f5f0 0%, #ffffff 70%);
}

body.site-enterprise.page-light .hero.hero-contact .hero-title,
body.site-enterprise.page-light .hero.hero-contact .hero-subtitle,
body.site-enterprise.page-light .hero.hero-contact .hero-tag,
body.site-enterprise.page-light .hero.hero-contact .title-line {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.site-enterprise.page-light .hero.hero-contact .title-line.highlight {
    color: var(--tp-gold, #c9a227) !important;
}

body.site-enterprise.page-light .contact-section {
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

body.site-enterprise.page-light .cta-section {
    background: var(--tp-navy, #0b1f3a);
}

body.site-enterprise.page-light .cta-section .cta-content h2,
body.site-enterprise.page-light .cta-section .cta-content p {
    color: #ffffff !important;
}

body.site-enterprise.page-light .contact-form-container,
body.site-enterprise.page-light .info-card {
    background: #ffffff;
    border: 1px solid #d7deea;
    border-radius: 0.85rem;
    box-shadow: 0 14px 32px rgba(11, 31, 58, 0.08);
}

/* Contact form — readable light fields (was dark-on-dark) */
body.site-enterprise.page-light .contact-form-container h2,
body.site-enterprise.page-light .form-header h2,
body.site-enterprise.page-light .info-card h3 {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.site-enterprise.page-light .form-header p,
body.site-enterprise.page-light .info-card p,
body.site-enterprise.page-light .form-note,
body.site-enterprise.page-light .checkbox-label,
body.site-enterprise.page-light .checkbox-label span {
    color: var(--tp-ink-soft, #3a4d66) !important;
}

body.site-enterprise.page-light .form-group label {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.site-enterprise.page-light .form-group input,
body.site-enterprise.page-light .form-group select,
body.site-enterprise.page-light .form-group textarea,
body.site-enterprise.page-light input:not([type="checkbox"]):not([type="radio"]),
body.site-enterprise.page-light select,
body.site-enterprise.page-light textarea {
    background: #ffffff !important;
    color: var(--tp-navy, #0b1f3a) !important;
    border: 1px solid #c5d0de !important;
    border-radius: 0.55rem;
    caret-color: var(--tp-navy, #0b1f3a);
}

body.site-enterprise.page-light .form-group input::placeholder,
body.site-enterprise.page-light .form-group textarea::placeholder,
body.site-enterprise.page-light input::placeholder,
body.site-enterprise.page-light textarea::placeholder {
    color: #6b7c92 !important;
    opacity: 1;
}

body.site-enterprise.page-light .form-group input:focus,
body.site-enterprise.page-light .form-group select:focus,
body.site-enterprise.page-light .form-group textarea:focus,
body.site-enterprise.page-light input:focus,
body.site-enterprise.page-light select:focus,
body.site-enterprise.page-light textarea:focus {
    border-color: var(--tp-gold, #c9a227) !important;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22) !important;
    outline: none;
}

body.site-enterprise.page-light .info-highlight {
    background: var(--tp-navy, #0b1f3a);
    border: none;
    border-radius: 0.85rem;
    border-top: 3px solid var(--tp-gold, #c9a227);
}

body.site-enterprise.page-light .info-highlight h3,
body.site-enterprise.page-light .info-highlight h4 {
    color: #ffffff !important;
    font-weight: 600;
}

body.site-enterprise.page-light .info-highlight li {
    color: #d8e2ef !important;
}

body.site-enterprise.page-light .info-card a {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.site-enterprise.page-light .info-card a:hover {
    color: var(--tp-gold-deep, #a6831e) !important;
}

body.site-enterprise.page-light .submit-button {
    background: linear-gradient(145deg, var(--tp-gold-light, #e0bc4a) 0%, var(--tp-gold, #c9a227) 100%);
    color: var(--tp-navy, #0b1f3a) !important;
    border: none;
    font-weight: 600;
}

body.site-enterprise.page-light .submit-button:hover {
    background: linear-gradient(145deg, #ebd06a 0%, var(--tp-gold-light, #e0bc4a) 100%);
    color: var(--tp-navy, #0b1f3a) !important;
}

body.site-enterprise.page-light .faq-item {
    background: #ffffff;
    border: 1px solid #d7deea;
    border-radius: 0.85rem;
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.06);
}

body.site-enterprise.page-light .faq-item h4 {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.site-enterprise.page-light .faq-item p {
    color: var(--tp-ink-soft, #3a4d66) !important;
}

body.site-enterprise.page-light .footer {
    border-top-color: var(--tp-gold);
}

body.site-enterprise.page-light body.site-enterprise.page-light .tp-accent-green {
    color: #14652a !important;
}

body.site-enterprise.page-light .tp-partner-tag a {
    color: #14652a !important;
}

@media (max-width: 960px) {
    body.site-enterprise.page-light .tp-what-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    body.site-enterprise.page-light .tp-what-grid {
        grid-template-columns: 1fr;
    }
}


/* Heading-level a11y aliases (semantic h2/h3 keep visual style) */
.footer-column h2 {
    color: var(--white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}
body.site-enterprise .footer-column h2 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
}
.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--tp-navy, #0b1f3a);
}
body.site-enterprise.page-light .faq-item h3 {
    color: var(--tp-navy) !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ===== TouchPoiint Network brochure page ===== */
/* Shared brand shell — brochure + LifeLine + Where We Are + Contact + Legal */
body.page-brochure-network,
body.page-lifeline,
body.page-where,
body.page-contact,
body.page-legal,
body.page-about {
    background: var(--tp-cream, #f7f5f0);
}

body.page-brochure-network.site-enterprise.page-light main,
body.page-brochure-network main#main,
body.page-lifeline.site-enterprise.page-light main,
body.page-lifeline main#main,
body.page-where.site-enterprise.page-light main,
body.page-where main#main,
body.page-contact.site-enterprise.page-light main,
body.page-contact main#main,
body.page-legal.site-enterprise.page-light main,
body.page-legal main#main,
body.page-about.site-enterprise.page-light main,
body.page-about main#main {
    display: block;
    margin: 0;
    /* Clear fixed enterprise navbar so hero title is not clipped */
    padding: calc(var(--nav-height, 5.25rem) + 1rem) clamp(0.75rem, 3vw, 1.5rem) 0;
    background: var(--tp-cream, #f7f5f0);
    line-height: normal;
}

/* About: sit tighter under the nav so the walking group reads earlier */
body.page-about.site-enterprise.page-light main,
body.page-about main#main {
    padding-top: calc(var(--nav-height, 5.25rem) + 0.25rem);
    padding-left: clamp(0.55rem, 2.2vw, 1.1rem);
    padding-right: clamp(0.55rem, 2.2vw, 1.1rem);
}

body.page-brochure-network main#main > .tp-bn-section {
    display: block;
    margin: 0 auto;
    padding: 0;
    border: 0;
    line-height: normal;
    max-width: min(920px, 100%);
}

body.page-lifeline main#main > section,
body.page-where main#main > section,
body.page-contact main#main > section,
body.page-legal main#main > section,
body.page-about main#main > section {
    display: block;
    margin: 0 auto;
    max-width: min(920px, 100%);
    border: 0;
}

body.page-about main#main > .tp-about-essay {
    display: block;
    margin: 0 auto;
    max-width: min(72rem, 1120px);
    border: 0;
}

body.page-lifeline main#main > section,
body.page-where main#main > section,
body.page-contact main#main > section,
body.page-legal main#main > section {
    background: #fff;
}

body.page-brochure-network main#main > .tp-bn-section .container.tp-bn-figure-wrap {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

body.page-brochure-network .tp-footer-cta,
body.page-lifeline .tp-footer-cta,
body.page-where .tp-footer-cta,
body.page-contact .tp-footer-cta,
body.page-legal .tp-footer-cta,
body.page-about .tp-footer-cta {
    margin-top: 0;
    border-top: 0;
}

body.page-brochure-network .tp-bn-hero,
body.page-brochure-network .tp-bn-strip,
body.page-brochure-network .tp-bn-what,
body.page-brochure-network .tp-bn-triad {
    background: #fff;
}

body.page-brochure-network .tp-bn-diff {
    border-top: 0;
    max-width: min(920px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.tp-bn-section {
    padding: 0;
    margin: 0;
}

.tp-bn-figure-wrap {
    max-width: none;
}

.tp-bn-figure {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    font-size: 0;
}

.tp-bn-figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
}

.tp-bn-hero {
    padding-top: 0;
}

.tp-bn-diff {
    padding: 1.25rem clamp(0.85rem, 2.5vw, 1.25rem) 1.5rem;
    margin: 0 auto;
    background: #f4f2ed;
    line-height: normal;
}

.tp-bn-diff .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.tp-bn-diff-header {
    text-align: center;
    margin-bottom: 0.85rem;
}

.tp-bn-diff-header h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0a1a33;
}

.tp-bn-diff-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.tp-bn-diff-label {
    margin: 0;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff !important;
}

.tp-bn-diff-label--navy {
    background: #0a1a33;
    color: #fff !important;
}

.tp-bn-diff-label--orange {
    background: var(--secondary-color, #c9a227);
    color: #fff !important;
}

.tp-bn-diff-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.tp-bn-diff-row {
    display: grid;
    grid-template-columns: 1fr minmax(9rem, 12rem) 1fr;
    gap: 0.5rem;
    align-items: center;
}

.tp-bn-diff-side {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 0.9rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(10, 26, 51, 0.05);
    text-align: center;
}

.tp-bn-diff-row .tp-bn-diff-side:first-child {
    text-align: center;
}

.tp-bn-diff-side strong {
    font-size: 0.95rem;
    color: #0a1a33;
}

.tp-bn-diff-side span {
    font-size: 0.82rem;
    line-height: 1.35;
    color: #3a4a63;
}

.tp-bn-diff-axis {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    background: #0a1a33;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
}

.tp-bn-diff-axis-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--secondary-color, #c9a227);
}

@media (max-width: 799px) {
    .tp-bn-diff-labels {
        grid-template-columns: 1fr;
    }

    .tp-bn-diff-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .tp-bn-diff-row .tp-bn-diff-side:first-child {
        text-align: center;
        order: 2;
        border-left: 3px solid #9aa6b8;
    }

    .tp-bn-diff-axis {
        order: 1;
        clip-path: none;
        border-radius: 8px;
    }

    .tp-bn-diff-row .tp-bn-diff-side:last-child {
        order: 3;
        border-left: 3px solid var(--secondary-color, #c9a227);
    }
}


/* Brochure HTML sections — brand navy + gold */
body.page-brochure-network .tp-bn-strip,
body.page-brochure-network .tp-bn-what {
    line-height: normal;
    background: var(--tp-cream, #f7f5f0);
}

.tp-bn-pillband {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
    gap: 0.45rem;
    margin: 0;
}

.tp-bn-pillband-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: var(--tp-navy, #0b1f3a);
    border-radius: 10px;
    overflow: hidden;
    min-height: 5.5rem;
}

.tp-bn-pill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.85rem 1rem;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.tp-bn-pill:last-child {
    border-right: 0;
}

.tp-bn-pill-icon {
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
    color: #fff;
    margin-bottom: 0.15rem;
}

.tp-bn-pill-icon svg {
    width: 100%;
    height: 100%;
}

.tp-bn-pill-icon--light {
    color: #fff;
}

.tp-bn-pill-title {
    margin: 0;
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
}

.tp-bn-pill-title--gold {
    color: #fff !important;
}

.tp-bn-pill-sub {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.2;
}

.tp-bn-pill--impact {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    background: var(--tp-navy, #0b1f3a);
    border-radius: 10px;
    border: 0;
    color: #fff;
    padding: 0.85rem 1rem;
}

.tp-bn-pill--impact .tp-bn-pill-title,
.tp-bn-pill--impact .tp-bn-pill-sub {
    color: #fff;
}

.tp-bn-pill--impact .tp-bn-pill-icon {
    color: #fff;
}

.tp-bn-pill-heart {
    margin-left: auto;
    width: 1.35rem;
    height: 1.35rem;
    color: #fff;
}

.tp-bn-pill-heart svg {
    width: 100%;
    height: 100%;
}

.tp-bn-what {
    padding: 1rem 0 0.35rem;
}

.tp-bn-what-head {
    text-align: center;
    margin: 0 0 0.85rem;
}

.tp-bn-what-head h2 {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: min(100%, 28rem);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tp-navy, #0b1f3a);
    padding-top: 0;
    border-top: 0;
}

.tp-bn-what-head h2::before,
.tp-bn-what-head h2::after {
    content: "";
    flex: 1 1 auto;
    height: 1.5px;
    background: var(--tp-gold, #c9a227);
    max-width: 4.5rem;
}

.tp-bn-what-grid {
    list-style: none;
    margin: 0;
    padding: 0.75rem 0 0.25rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    background: #fff;
}

.tp-bn-what-grid > li {
    padding: 0.65rem 0.75rem 0.85rem;
    text-align: center;
    border-right: 1px solid rgba(11, 31, 58, 0.12);
}

.tp-bn-what-grid > li:last-child {
    border-right: 0;
}

.tp-bn-what-icon {
    display: inline-flex;
    width: 3.55rem;
    height: 3.55rem;
    margin-bottom: 0.65rem;
}

.tp-bn-what-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tp-bn-what-grid h3 {
    margin: 0 0 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tp-gold, #c9a227);
}

.tp-bn-what-grid p {
    margin: 0 auto;
    max-width: 12.5rem;
    font-size: 0.76rem;
    line-height: 1.4;
    color: rgba(11, 31, 58, 0.88);
}

.tp-bn-what-grid p strong {
    color: var(--tp-navy, #0b1f3a);
    font-weight: 700;
}

@media (max-width: 799px) {
    .tp-bn-pillband {
        grid-template-columns: 1fr;
    }

    .tp-bn-pillband-main {
        grid-template-columns: 1fr;
    }

    .tp-bn-pill {
        border-right: 0;
        border-bottom: 1px solid rgba(201, 162, 39, 0.35);
    }

    .tp-bn-pill:last-child {
        border-bottom: 0;
    }

    .tp-bn-what-grid {
        grid-template-columns: 1fr;
    }

    .tp-bn-what-grid > li {
        border-right: 0;
        border-bottom: 1px solid rgba(11, 31, 58, 0.12);
        padding: 1rem 0.5rem;
    }

    .tp-bn-what-grid > li:last-child {
        border-bottom: 0;
    }
}



/* Operating Triad — brand navy + gold */
body.page-brochure-network .tp-bn-triad {
    line-height: normal;
    background: var(--tp-cream, #f7f5f0);
    padding: 0.85rem 0 0.35rem;
}

.tp-bn-triad-head {
    text-align: center;
    margin: 0 0 0.9rem;
}

.tp-bn-triad-head h2 {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tp-navy, #0b1f3a);
    line-height: 1.3;
}

.tp-bn-triad-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(11rem, 0.9fr) minmax(0, 1.15fr);
    gap: 0.65rem;
    align-items: start;
}

.tp-bn-triad-banner {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    margin-bottom: 0.55rem;
}

.tp-bn-triad-banner p {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.25;
}

.tp-bn-triad-banner p span {
    display: block;
    font-weight: 600;
    opacity: 0.92;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.72rem;
    margin-top: 0.1rem;
}

.tp-bn-triad-banner-icon {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
}

.tp-bn-triad-banner-icon svg {
    width: 100%;
    height: 100%;
}

.tp-bn-triad-banner--navy {
    background: var(--tp-navy, #0b1f3a);
    color: #fff;
}

.tp-bn-triad-banner--gold {
    background: var(--tp-gold, #c9a227);
    color: var(--tp-navy, #0b1f3a);
}

.tp-bn-triad-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tp-bn-triad-points li {
    padding: 0.65rem 0.15rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.55);
    text-align: center;
}

.tp-bn-triad-points li:last-child {
    border-bottom: 0;
}

.tp-bn-triad-points strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tp-navy, #0b1f3a);
}

.tp-bn-triad-points span {
    display: block;
    font-size: 0.76rem;
    line-height: 1.35;
    color: #3a4a63;
}

.tp-bn-triad-bridge {
    list-style: none;
    margin: 0;
    padding: 0.15rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.tp-bn-triad-bridge > li {
    display: grid;
    grid-template-columns: 0.7rem minmax(0, 1fr) 0.7rem;
    gap: 0.25rem;
    align-items: center;
}

.tp-bn-triad-arrow {
    width: 0;
    height: 0;
    border-top: 0.35rem solid transparent;
    border-bottom: 0.35rem solid transparent;
    border-left: 0.55rem solid var(--tp-gold, #c9a227);
    justify-self: center;
}

.tp-bn-triad-bridge > li > .tp-bn-triad-arrow:first-child {
    border-left: 0;
    border-right: 0.55rem solid var(--tp-gold, #c9a227);
}

.tp-bn-triad-bridge-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: var(--tp-navy, #0b1f3a);
    color: #fff;
    min-height: 2.6rem;
}

.tp-bn-triad-bridge-item svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    color: #fff;
}

.tp-bn-triad-bridge-item span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 899px) {
    .tp-bn-triad-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tp-bn-triad-bridge > li {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .tp-bn-triad-arrow {
        display: none;
    }
}


/* Mobile integration — brand navy + gold */
body.page-brochure-network .tp-bn-mobile {
    line-height: normal;
    background: transparent;
    padding: 0.35rem 0 0.5rem;
    color: #fff;
}

.tp-bn-mobile-panel {
    background: var(--tp-navy, #0b1f3a);
    border-radius: 12px;
    padding: 1.25rem 1rem 1.35rem;
}

.tp-bn-mobile-head {
    text-align: center;
    margin: 0 0 1.1rem;
}

.tp-bn-mobile-head h2 {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: min(100%, 34rem);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tp-gold, #c9a227);
    border-bottom: 0;
    padding: 0;
}

.tp-bn-mobile-head h2::before,
.tp-bn-mobile-head h2::after {
    content: "";
    flex: 1 1 auto;
    height: 1.5px;
    background: var(--tp-gold, #c9a227);
    max-width: 3.75rem;
}

.tp-bn-mobile-body {
    display: grid;
    grid-template-columns: minmax(10rem, 11.75rem) minmax(0, 1fr);
    gap: 0.85rem 1.25rem;
    align-items: center;
    margin: 0;
}

.tp-bn-mobile-steps {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0.15rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    align-self: center;
    min-width: 0;
}

.tp-bn-phone {
    position: relative;
    margin: 0 auto;
    width: min(100%, 12.25rem);
    padding: 0.55rem 0.45rem 0.7rem;
    border-radius: 1.55rem;
    background:
        linear-gradient(160deg, #3a3f4a 0%, #1a1d24 42%, #0d0f14 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 14px 28px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.tp-bn-phone-bezel {
    position: absolute;
    top: 0.72rem;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    width: 4.4rem;
    height: 1rem;
    border-radius: 999px;
    background: #0a0c10;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tp-bn-phone-notch,
.tp-bn-phone-speaker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 999px;
    background: #1c2030;
}

.tp-bn-phone-notch {
    left: 0.55rem;
    width: 0.42rem;
    height: 0.42rem;
    box-shadow: 0 0 0 1px rgba(120, 160, 220, 0.25);
}

.tp-bn-phone-speaker {
    left: 1.35rem;
    width: 2.1rem;
    height: 0.28rem;
}

.tp-bn-phone-screen {
    position: relative;
    z-index: 1;
    margin-top: 0.85rem;
    border-radius: 1.05rem;
    overflow: hidden;
    background: var(--tp-navy, #0b1f3a);
    min-height: 18.5rem;
    padding: 1.35rem 0.7rem 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.tp-bn-phone-apps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.tp-bn-phone-apps > li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.tp-bn-phone-apps .tp-bn-channel-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 0.45rem;
}

.tp-bn-phone-apps strong {
    display: block;
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.tp-bn-phone-apps span:not(.tp-bn-channel-badge) {
    display: block;
    font-size: 0.62rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.86);
}

.tp-bn-phone-home {
    display: block;
    width: 2.1rem;
    height: 0.28rem;
    margin: 0.55rem auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.tp-bn-mobile-channels {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.tp-bn-mobile-channels > li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.7rem 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 4.25rem;
}

.tp-bn-channel-badge {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.tp-bn-channel-badge svg {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
}
.tp-bn-channel-badge--wa { background: #25d366; }
.tp-bn-channel-badge--fb { background: #1877f2; }
.tp-bn-channel-badge--ussd { background: #1f9d57; }

.tp-bn-mobile-channels strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.2rem;
}

.tp-bn-mobile-channels li > div > span {
    display: block;
    font-size: 0.7rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
}

.tp-bn-mobile-steps > li {
    position: relative;
    text-align: center;
    padding: 0.55rem 0.45rem 0.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-bn-mobile-steps > li:first-child {
    border-left: 0;
}

.tp-bn-mobile-steps > li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.45rem;
    right: -0.32rem;
    z-index: 1;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.85);
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    background: transparent;
}

.tp-bn-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    background: #fff;
    color: var(--tp-navy, #0b1f3a);
    margin-bottom: 0.55rem;
    flex-shrink: 0;
}

.tp-bn-step-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.tp-bn-step-title {
    margin: 0 0 0.35rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    color: var(--tp-gold, #c9a227);
    line-height: 1.25;
}

.tp-bn-step-copy {
    margin: 0;
    font-size: 0.66rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    max-width: 12rem;
}

@media (max-width: 799px) {
    .tp-bn-mobile-body {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1rem;
    }

    .tp-bn-phone {
        width: min(100%, 11.5rem);
    }

    .tp-bn-mobile-steps {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .tp-bn-mobile-steps > li {
        min-height: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        text-align: left;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0 0.75rem;
        padding: 0.85rem 0.15rem;
    }

    .tp-bn-mobile-steps > li:first-child {
        border-top: 0;
    }

    .tp-bn-mobile-steps > li:not(:last-child)::after {
        display: none;
    }

    .tp-bn-step-icon {
        margin-bottom: 0;
    }

    .tp-bn-step-title {
        flex: 1;
        margin: 0.35rem 0 0.25rem;
    }

    .tp-bn-step-copy {
        width: 100%;
        max-width: none;
        padding-left: 3.3rem;
    }
}


/* Brochure hero — side-by-side copy + people-forward photo */
body.page-brochure-network .tp-bn-hero {
    line-height: normal;
    background: #fff;
    padding: 0.55rem 0 0.2rem;
    overflow: visible;
}

.tp-bn-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.35fr);
    gap: 0;
    align-items: stretch;
    min-height: 20rem;
    background: #fff;
    overflow: visible;
}

.tp-bn-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.35rem 1rem 1.25rem 0.25rem;
    background: #fff;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.tp-bn-hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: clamp(1.45rem, 3.1vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.12;
    text-transform: uppercase;
    overflow: visible;
    padding-top: 0.12rem;
}

body.page-brochure-network .tp-bn-hero-title-navy {
    color: var(--tp-navy, #0b1f3a);
}

body.page-brochure-network .tp-bn-hero-title-gold {
    color: var(--tp-gold-ink, #7a6210) !important;
}

body.page-brochure-network .tp-bn-hero-lead {
    margin: 0;
    max-width: 21rem;
    font-size: clamp(0.86rem, 1.45vw, 0.98rem);
    line-height: 1.45;
    color: var(--tp-navy, #0b1f3a);
}

body.page-brochure-network .tp-bn-hero-brush {
    margin: 0.25rem 0 0;
    max-width: 22rem;
    padding: 0.8rem 1rem;
    background: var(--tp-navy, #0b1f3a);
    color: #fff !important;
    font-size: 0.8rem;
    line-height: 1.45;
    clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%);
}

body.page-brochure-network .tp-bn-hero-brush strong {
    color: var(--tp-gold, #c9a227) !important;
    font-weight: 700;
}

body.page-brochure-network .tp-bn-hero-focus {
    margin: 0.55rem 0 0;
    max-width: 22rem;
    padding: 0.75rem 1rem;
    background: var(--tp-navy, #0b1f3a);
    color: var(--tp-gold, #c9a227) !important;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.4;
    clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%);
}

.tp-bn-hero-visual {
    position: relative;
    min-height: 20rem;
    margin-left: -1.25rem;
    border-radius: 0;
    overflow: hidden;
}

.tp-bn-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 28%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.75) 35%, rgba(255, 255, 255, 0));
}

.tp-bn-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
    /* Match reference: walkers centered on path, skyline behind */
    object-position: center 52%;
}

body.page-brochure-network .tp-bn-hero-callout {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 22rem;
    margin: 0.15rem 0 0;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    background: var(--tp-navy, #0b1f3a);
    color: #fff !important;
    box-shadow: none;
    z-index: 2;
}

.tp-bn-hero-callout-icon {
    display: inline-flex;
    width: 1.1rem;
    height: 1.1rem;
    color: var(--tp-gold, #c9a227);
    margin-bottom: 0.3rem;
}

.tp-bn-hero-callout-icon svg {
    width: 100%;
    height: 100%;
}

body.page-brochure-network .tp-bn-hero-callout-kicker {
    margin: 0 0 0.35rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--tp-gold, #c9a227);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--tp-gold, #c9a227) !important;
}

body.page-brochure-network .tp-bn-hero-callout-body {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.94) !important;
}

body.page-brochure-network .tp-bn-hero-callout-body strong {
    color: var(--tp-gold, #c9a227) !important;
    font-weight: 700;
}

@media (max-width: 799px) {
    .tp-bn-hero-panel {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
    }

    .tp-bn-hero-copy {
        padding: 1rem 1rem 0.9rem;
        background: #fff;
        box-sizing: border-box;
    }

    .tp-bn-hero-visual {
        margin-left: 0;
        min-height: 0;
        border-radius: 8px;
        position: relative;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .tp-bn-hero-visual::before {
        display: none;
    }

    .tp-bn-hero-visual img {
        min-height: 16rem;
        height: 16rem;
        width: 100%;
        object-fit: cover;
        object-position: center 52%;
        border-radius: 8px;
    }

    body.page-brochure-network .tp-bn-hero-callout {
        position: static;
        width: auto;
        max-width: none;
        margin: 0.35rem 0 0;
        box-shadow: none;
    }

    body.page-brochure-network .tp-bn-hero-brush,
    body.page-brochure-network .tp-bn-hero-focus {
        clip-path: none;
        border-radius: 8px;
        max-width: none;
    }
}

/* ===== LifeLine + Where We Are — brochure brand shell polish ===== */
body.page-lifeline .ll-hero,
body.page-lifeline .ll-services,
body.page-lifeline .ll-partner {
    overflow: hidden;
}

body.page-lifeline .ll-hero-banner {
    background: var(--tp-navy, #0b1f3a);
}

body.page-lifeline .ll-hero-banner-en {
    color: var(--tp-gold, #c9a227) !important;
}

body.page-lifeline .ll-hero-inner {
    padding: clamp(1.35rem, 3.5vw, 2.25rem) 1rem clamp(1.1rem, 2.5vw, 1.65rem);
}

body.page-lifeline .ll-hero-logo {
    width: min(100%, 240px);
    margin-bottom: 0.85rem;
}

body.page-lifeline .ll-hero-title {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

body.page-lifeline .ll-hero-tagline {
    color: var(--tp-gold-ink, #7a6210) !important;
}

body.page-lifeline .ll-centre-bar {
    background: var(--tp-navy, #0b1f3a);
}

body.page-lifeline .ll-centre-title {
    color: #fff !important;
}

body.page-lifeline .ll-centre-zu {
    color: rgba(255, 255, 255, 0.82) !important;
}

body.page-lifeline .ll-services {
    padding: 1.35rem clamp(0.85rem, 2.5vw, 1.25rem) 1.5rem;
    background: #fff;
}

body.page-lifeline .ll-section-tag {
    color: var(--tp-gold-ink, #7a6210) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.72rem;
}

body.page-lifeline .ll-section-title {
    color: var(--tp-navy, #0b1f3a) !important;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

body.page-lifeline .ll-service {
    border-radius: 10px;
    border: 1px solid rgba(11, 31, 58, 0.1);
    background: #fff;
    box-shadow: none;
}

body.page-lifeline .ll-partner {
    padding: 1.35rem clamp(0.85rem, 2.5vw, 1.25rem) 1.75rem;
    background: var(--tp-cream, #f7f5f0);
}

body.page-lifeline .ll-partner .ll-section-title,
body.page-lifeline .ll-partner .ll-section-desc {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-where .tp-page-hero {
    padding: 0;
    background: #fff;
}

body.page-where .tp-page-hero-bg {
    display: none;
}

body.page-where .tp-page-hero-grid-map {
    gap: 1rem;
    padding: 1.25rem clamp(0.75rem, 2vw, 1.1rem) 1rem;
}

body.page-where .tp-page-eyebrow {
    color: var(--tp-gold, #c9a227) !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

body.page-where .tp-page-title {
    color: var(--tp-navy, #0b1f3a) !important;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    line-height: 1.12;
}

body.page-where .tp-page-lead {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-where .tp-page-lead strong {
    color: var(--tp-gold-ink, #7a6210) !important;
}

body.page-where .tp-reach-map-panel,
body.page-where .tp-reach-map-frame {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.1);
}

body.page-where .tp-page-statstrip {
    background: var(--tp-navy, #0b1f3a);
    padding: 0;
    border-top: 3px solid var(--tp-gold, #c9a227);
}

body.page-where .tp-page-statstrip-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.page-where .tp-page-statstrip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    text-align: center;
    padding: 1.15rem 0.85rem 1.25rem;
    border-right: 1px solid rgba(201, 162, 39, 0.28);
    min-height: 5.75rem;
}

body.page-where .tp-page-statstrip-item:last-child {
    border-right: 0;
}

body.page-where .tp-page-stat-value {
    display: block;
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.85rem, 4.2vw, 2.55rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff !important;
}

body.page-where .tp-page-stat-value--sm {
    font-size: clamp(1.15rem, 2.6vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

body.page-where .tp-page-stat-accent {
    color: var(--tp-gold, #c9a227) !important;
}

body.page-where .tp-page-stat-label {
    display: block;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #fff !important;
}

body.page-where .tp-page-stat-note {
    display: block;
    margin: 0.2rem 0 0;
    font-size: clamp(0.95rem, 1.7vw, 1.1rem);
    font-weight: 700 !important;
    line-height: 1.3;
    color: #fff !important;
}

body.page-where .tp-page-statstrip-item:last-child .tp-page-stat-label {
    font-size: clamp(0.95rem, 1.7vw, 1.1rem);
    letter-spacing: 0.04em;
}

body.page-where .tp-reach-close-cta {
    background: var(--tp-cream, #f7f5f0);
}

body.page-where .tp-reach-close-copy h2 {
    color: var(--tp-navy, #0b1f3a) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

body.page-where .tp-reach-close-copy p {
    color: var(--tp-navy, #0b1f3a) !important;
}

@media (max-width: 799px) {
    body.page-lifeline .ll-hero-inner {
        padding: 1.1rem 0.75rem 0.85rem;
    }

    body.page-where .tp-page-hero-grid-map {
        padding: 1rem 0.65rem 0.75rem;
    }

    body.page-where .tp-page-statstrip-inner {
        grid-template-columns: 1fr;
    }

    body.page-where .tp-page-statstrip-item {
        min-height: 0;
        padding: 0.95rem 0.85rem;
        border-right: 0;
        border-bottom: 1px solid rgba(201, 162, 39, 0.28);
    }

    body.page-where .tp-page-statstrip-item:last-child {
        border-bottom: 0;
    }
}

/* ===== Contact — brochure brand shell polish ===== */
body.page-contact .tp-contact-hero {
    background: #fff;
    padding: 1.35rem clamp(0.85rem, 2.5vw, 1.25rem) 1.1rem;
}

body.page-contact .tp-contact-hero-inner {
    max-width: none;
    padding: 0;
}

body.page-contact .tp-contact-eyebrow {
    margin: 0 0 0.45rem;
    color: var(--tp-gold-ink, #7a6210) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-contact .tp-contact-title {
    margin: 0 0 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.12;
    text-transform: uppercase;
}

body.page-contact .tp-contact-title-navy {
    color: var(--tp-navy, #0b1f3a);
}

body.page-contact .tp-contact-title-gold {
    color: var(--tp-gold-ink, #7a6210) !important;
}

body.page-contact .tp-contact-lead {
    margin: 0;
    max-width: 36rem;
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 1.45;
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-contact .contact-section {
    padding: 0.85rem clamp(0.85rem, 2.5vw, 1.25rem) 1.5rem;
    background: #fff;
}

body.page-contact .contact-wrapper {
    gap: 1rem;
}

body.page-contact .contact-form-container {
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 10px;
    box-shadow: none;
    padding: 1.25rem 1.15rem;
}

body.page-contact .form-header h2 {
    color: var(--tp-navy, #0b1f3a) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

body.page-contact .form-header p {
    color: var(--tp-navy, #0b1f3a) !important;
    opacity: 0.85;
}

body.page-contact .form-group label {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-contact .form-group input,
body.page-contact .form-group select,
body.page-contact .form-group textarea {
    border-color: rgba(11, 31, 58, 0.18);
    border-radius: 8px;
}

body.page-contact .form-group input:focus,
body.page-contact .form-group select:focus,
body.page-contact .form-group textarea:focus {
    border-color: var(--tp-gold, #c9a227);
    outline: 2px solid rgba(201, 162, 39, 0.35);
    outline-offset: 1px;
}

body.page-contact .submit-button {
    background: var(--tp-navy, #0b1f3a);
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

body.page-contact .submit-button:hover {
    background: #132a4a;
}

body.page-contact .contact-info-sidebar {
    gap: 0.65rem;
}

body.page-contact .info-card {
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
}

body.page-contact .info-card h3 {
    color: var(--tp-navy, #0b1f3a) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.78rem;
}

body.page-contact .info-card p,
body.page-contact .info-card a {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-contact .info-highlight {
    background: var(--tp-navy, #0b1f3a);
    border-radius: 10px;
    color: #fff;
}

body.page-contact .info-highlight h3 {
    color: var(--tp-gold, #c9a227) !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
}

body.page-contact .info-highlight li {
    color: rgba(255, 255, 255, 0.92) !important;
}

body.page-contact .faq-section {
    padding: 1.35rem clamp(0.85rem, 2.5vw, 1.25rem) 1.75rem;
    background: var(--tp-cream, #f7f5f0);
}

body.page-contact .faq-section .section-tag {
    color: var(--tp-gold-ink, #7a6210) !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

body.page-contact .faq-section .section-title {
    color: var(--tp-navy, #0b1f3a) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

body.page-contact .faq-item {
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 10px;
    box-shadow: none;
}

body.page-contact .faq-item h3 {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-contact .faq-item p {
    color: var(--tp-navy, #0b1f3a) !important;
}

@media (max-width: 799px) {
    body.page-contact .tp-contact-hero {
        padding: 1.1rem 0.75rem 0.85rem;
    }

    body.page-contact .contact-section {
        padding: 0.65rem 0.75rem 1.15rem;
    }
}

/* ===== Legal (Terms + Privacy) — brochure brand shell ===== */
body.page-legal main#main > section {
    max-width: min(1040px, 100%);
}

body.page-legal .tp-legal-hero {
    background: #fff;
    padding: 1.35rem clamp(0.85rem, 2.5vw, 1.25rem) 1.1rem;
}

body.page-legal .tp-legal-eyebrow {
    margin: 0 0 0.45rem;
    color: var(--tp-gold-ink, #7a6210) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-legal .tp-legal-title {
    margin: 0 0 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.12;
    text-transform: uppercase;
}

body.page-legal .tp-legal-title-navy {
    color: var(--tp-navy, #0b1f3a);
}

body.page-legal .tp-legal-title-gold {
    color: var(--tp-gold-ink, #7a6210) !important;
}

body.page-legal .tp-legal-lead {
    margin: 0;
    font-size: 0.92rem;
    color: var(--tp-navy, #0b1f3a) !important;
    opacity: 0.8;
}

body.page-legal .legal-content {
    padding: 0.85rem clamp(0.85rem, 2.5vw, 1.25rem) 1.75rem;
    background: #fff;
}

body.page-legal .legal-wrapper {
    gap: 1.15rem;
}

/* Navy quick-nav — matches footer Legal links look */
body.page-legal .legal-sidebar {
    background: var(--tp-navy, #0b1f3a);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    padding: 1.1rem 1rem;
}

body.page-legal .legal-sidebar h3 {
    color: var(--tp-gold, #c9a227) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

body.page-legal .legal-nav a {
    color: rgba(247, 245, 240, 0.92) !important;
    font-size: 0.9rem;
    line-height: 1.45;
    padding: 0.35rem 0;
    border: 0;
    background: transparent;
}

body.page-legal .legal-nav a:hover,
body.page-legal .legal-nav a:focus-visible {
    color: var(--tp-gold, #c9a227) !important;
}

body.page-legal .legal-main {
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 10px;
    padding: 1.15rem 1.1rem;
    background: #fff;
    box-shadow: none;
}

body.page-legal .legal-section h2 {
    color: var(--tp-navy, #0b1f3a) !important;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

body.page-legal .legal-section h3 {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-legal .legal-section p,
body.page-legal .legal-section li {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-legal .legal-section a {
    color: var(--tp-gold-ink, #7a6210) !important;
}

/* Footer Company links stay light-on-navy on brand pages */
body.page-legal .footer,
body.page-contact .footer,
body.page-lifeline .footer,
body.page-where .footer,
body.page-brochure-network .footer {
    background: var(--tp-navy, #0b1f3a);
}

body.page-legal .footer-column a:not(.footer-cta),
body.page-contact .footer-column a:not(.footer-cta),
body.page-lifeline .footer-column a:not(.footer-cta),
body.page-where .footer-column a:not(.footer-cta),
body.page-brochure-network .footer-column a:not(.footer-cta) {
    color: rgba(247, 245, 240, 0.9) !important;
}

body.page-legal .footer-column a:not(.footer-cta):hover,
body.page-contact .footer-column a:not(.footer-cta):hover,
body.page-lifeline .footer-column a:not(.footer-cta):hover,
body.page-where .footer-column a:not(.footer-cta):hover,
body.page-brochure-network .footer-column a:not(.footer-cta):hover {
    color: var(--tp-gold, #c9a227) !important;
}

@media (max-width: 799px) {
    body.page-legal .tp-legal-hero {
        padding: 1.1rem 0.75rem 0.85rem;
    }

    body.page-legal .legal-content {
        padding: 0.65rem 0.75rem 1.25rem;
    }
}


/* ===== Site polish pass 2026-07-19 ===== */
:root {
    --nav-height: 5.5rem;
}

body.page-where main#main > section.tp-page-hero {
    max-width: min(1120px, 100%);
    overflow: visible;
}

body.page-where .tp-page-hero {
    overflow: visible;
}

body.page-where .tp-reach-map-frame,
body.page-where .sa-map-interactive {
    overflow: hidden;
}

/* Legal contact boxes — light text on navy (beat page-legal p !important) */
body.page-legal .contact-box {
    background: var(--tp-navy, #0b1f3a) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-legal .contact-box p,
body.page-legal .contact-box strong,
body.page-legal .contact-box li {
    color: rgba(247, 245, 240, 0.92) !important;
}

body.page-legal .contact-box a {
    color: var(--tp-gold, #c9a227) !important;
}

/* About — match Contact/LifeLine brand-shell column + spacing; keep story content */
body.page-about main#main > section,
body.page-about main#main > .tp-about-essay {
    max-width: min(72rem, 1120px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

body.page-about main#main > section:not(.tp-about-hero) {
    border-radius: 1rem !important;
    overflow: visible;
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-about main#main > section .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

body.page-about .tp-about-hero {
    background: #fff;
    overflow: hidden;
    padding: 0;
    border-radius: 1rem !important;
    margin-bottom: 0.4rem !important;
}

/* Photo framed — more of the scene, not the full tall frame */
body.page-about .tp-about-hero-stage {
    position: relative;
    height: clamp(20rem, 48vw, 30rem);
    overflow: hidden;
    background: #0b1f3a;
}

body.page-about .tp-about-hero-photo {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

body.page-about .tp-about-hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

body.page-about .tp-about-hero-panel {
    position: static;
    display: block;
    padding: 1.15rem clamp(1.15rem, 3.5vw, 1.75rem) 1.25rem;
    text-align: center;
    background: #fff;
}

body.page-about .tp-about-hero-copy {
    width: min(40rem, 100%);
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
}

body.page-about .tp-about-hero-eyebrow {
    margin: 0 0 0.4rem;
    color: var(--tp-gold-ink, #7a6210) !important;
}

body.page-about .tp-about-hero .tp-hero-title {
    margin: 0 auto 0.65rem;
    max-width: 22ch;
    font-size: clamp(1.3rem, 2.9vw, 1.85rem);
    line-height: 1.25;
    text-align: center;
    text-wrap: balance;
    color: var(--tp-navy, #0b1f3a) !important;
    text-shadow: none;
}

body.page-about .tp-about-hero .tp-hero-lead {
    max-width: 38rem;
    margin: 0 auto;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    line-height: 1.6;
    text-align: center;
    text-wrap: pretty;
    color: var(--tp-ink, #14233a) !important;
    text-shadow: none;
}

body.page-about .tp-about-hero .tp-hero-lead strong,
body.page-about .tp-about-hero .tp-accent-navy {
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-about .tp-network-bar {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.7rem clamp(1.25rem, 4vw, 2rem);
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    line-height: 1.35;
    text-align: center;
}

body.page-about .tp-journey-section,
body.page-about .tp-journey-bridge,
body.page-about .tp-journey-vision,
body.page-about .tp-journey-visual,
body.page-about .tp-journey-closing,
body.page-about .tp-page-band,
body.page-about .tp-journey-insight {
    border-radius: 1rem !important;
    overflow: visible;
}

body.page-about .tp-journey-section,
body.page-about .tp-journey-bridge,
body.page-about .tp-journey-vision {
    background: #fff;
    padding: 1.25rem clamp(1.1rem, 3vw, 1.5rem) 1.35rem !important;
}

body.page-about .tp-journey-insight {
    background: var(--tp-navy, #0b1f3a);
    padding: 1.25rem clamp(1.1rem, 3vw, 1.6rem) !important;
}

body.page-about .tp-journey-visual {
    background: var(--tp-cream, #f7f5f0);
    padding: 1.25rem clamp(1.1rem, 3vw, 1.5rem) 1.35rem !important;
}

body.page-about .tp-journey-closing {
    background: #fff;
    padding: 1.3rem clamp(1.1rem, 3vw, 1.5rem) 1.4rem !important;
}

body.page-about .tp-page-band {
    padding: 1.1rem clamp(1.1rem, 3vw, 1.5rem) !important;
}

body.page-about .tp-journey-insight .tp-page-eyebrow {
    color: var(--tp-gold, #c9a227) !important;
}

/* Observation: same two-column story, sized for 920 shell */
body.page-about .tp-journey-grid {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: 0.75rem 1rem;
    align-items: start;
}

body.page-about .tp-journey-header {
    position: static;
    top: auto;
}

body.page-about .tp-journey-header .tp-section-title {
    display: block;
    text-align: left;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin: 0;
    line-height: 1.25;
}

body.page-about .tp-journey-header .tp-section-title span {
    display: none;
}

body.page-about .tp-journey-copy p {
    margin: 0 0 0.55rem;
    font-size: 0.92rem;
    line-height: 1.55;
    text-wrap: pretty;
}

body.page-about .tp-journey-copy p:last-child {
    margin-bottom: 0;
}

body.page-about .tp-journey-quote {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin: 0.55rem 0 0;
    margin-inline: 0;
    padding: 0.75rem 0.95rem;
    border-radius: 0.75rem;
}

body.page-about .tp-journey-quote p {
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 1.4;
    text-wrap: pretty;
}

body.page-about .tp-journey-insight-card {
    max-width: 38rem;
    margin: 0 auto;
    padding: 0;
}

body.page-about .tp-journey-insight-card h2 {
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    margin: 0 0 0.55rem;
    line-height: 1.3;
    text-wrap: balance;
}

body.page-about .tp-journey-insight-card p {
    font-size: 0.92rem;
    margin: 0 0 0.5rem;
    line-height: 1.5;
    text-wrap: pretty;
}

body.page-about .tp-journey-insight-card p:last-child {
    margin-bottom: 0;
}

body.page-about .tp-journey-insight-truth {
    margin: 0.7rem 0 !important;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    line-height: 1.35 !important;
    text-wrap: balance;
}

body.page-about .tp-journey-visual-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 0.85rem;
    align-items: start;
}

body.page-about .tp-journey-figure {
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow:
        0 8px 20px rgba(11, 31, 58, 0.1),
        0 0 0 2px rgba(201, 162, 39, 0.1);
}

body.page-about .tp-journey-figure img {
    min-height: 0;
    height: 12.5rem;
    max-height: 12.5rem;
}

body.page-about .tp-journey-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin: 0 0 0.55rem;
    line-height: 1.25;
}

body.page-about .tp-journey-visual-copy p {
    margin: 0 0 0.55rem;
    font-size: 0.92rem;
    line-height: 1.55;
    text-wrap: pretty;
}

body.page-about .tp-journey-visual-copy p:last-child {
    margin-bottom: 0;
}

body.page-about .tp-journey-value-grid {
    gap: 0.65rem;
    margin-top: 0.85rem;
}

body.page-about .tp-journey-value-card,
body.page-about .tp-journey-value-card-accent {
    padding: 0.95rem 1.05rem 1.05rem;
    border-radius: 1rem !important;
    overflow: visible;
    box-shadow: none;
    box-sizing: border-box;
    min-height: 100%;
}

body.page-about .tp-journey-value-card h3 {
    font-size: 0.95rem;
    margin: 0 0 0.4rem;
    line-height: 1.25;
}

body.page-about .tp-journey-value-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    text-wrap: pretty;
}

body.page-about .tp-journey-header-center {
    max-width: 40rem;
    margin: 0 auto 0.75rem;
}

body.page-about .tp-journey-header-center .tp-section-title {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 0 0.55rem;
}

body.page-about .tp-journey-header-center .tp-section-title span {
    display: block;
}

body.page-about .tp-reach-header {
    max-width: 40rem;
    margin: 0 auto;
}

body.page-about .tp-reach-intro {
    max-width: 40rem;
    margin: 0 auto;
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: center;
    text-wrap: pretty;
}

body.page-about .tp-journey-closing-inner {
    max-width: 40rem;
    margin: 0 auto;
}

body.page-about .tp-journey-closing-quote {
    margin: 0 0 0.65rem;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    line-height: 1.3;
    text-wrap: balance;
}

body.page-about .tp-journey-closing-inner p {
    margin: 0 0 0.55rem;
    font-size: 0.92rem;
    line-height: 1.55;
    text-wrap: pretty;
}

body.page-about .tp-journey-closing-inner p:last-of-type {
    margin-bottom: 0.85rem;
}

body.page-about .tp-journey-closing-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.page-about .tp-page-eyebrow {
    margin: 0 0 0.3rem;
}

@media (max-width: 799px) {
    body.page-about .tp-journey-grid,
    body.page-about .tp-journey-visual-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    body.page-about .tp-journey-value-grid {
        grid-template-columns: 1fr;
    }

    body.page-about .tp-about-hero-stage {
        height: 18.5rem;
    }

    body.page-about .tp-about-hero-panel,
    body.page-about .tp-network-bar {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    body.page-about .tp-hero-lead {
        text-align: center;
    }

    body.page-about .tp-journey-figure img {
        height: 10.5rem;
        max-height: 10.5rem;
    }

    body.page-about .tp-journey-section,
    body.page-about .tp-journey-bridge,
    body.page-about .tp-journey-vision,
    body.page-about .tp-journey-visual,
    body.page-about .tp-journey-closing,
    body.page-about .tp-page-band,
    body.page-about .tp-journey-insight {
        padding-left: 0.9rem !important;
        padding-right: 0.9rem !important;
    }
}

/* About — founder essay / blog-post reading experience */
body.page-about main#main > .tp-about-essay {
    max-width: min(72rem, 1120px);
    margin: 0 auto 1.5rem;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(11, 31, 58, 0.04);
}

body.page-about .tp-about-essay-media {
    position: relative;
    height: clamp(16rem, 42vw, 24rem);
    overflow: hidden;
    background: var(--tp-navy, #0b1f3a);
}

body.page-about .tp-about-essay-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

body.page-about .tp-about-essay-intro {
    padding: 2rem clamp(1.75rem, 5vw, 3rem) 0.65rem;
    text-align: left;
}

body.page-about .tp-about-essay-intro h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--tp-navy, #0b1f3a) !important;
    text-wrap: balance;
}

body.page-about .tp-about-essay-lede {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--tp-ink, #14233a) !important;
    text-wrap: pretty;
}

body.page-about .tp-about-essay-lede:last-child {
    margin-bottom: 0;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(11, 31, 58, 0.1);
}

body.page-about .tp-about-essay-body {
    padding: 1.5rem clamp(1.75rem, 5vw, 3rem) 2.5rem;
}

body.page-about .tp-about-essay-body > p {
    margin: 0 0 1.25rem;
    max-width: none;
    font-size: clamp(1rem, 1.55vw, 1.1rem);
    line-height: 1.75;
    color: var(--tp-ink, #14233a) !important;
    text-wrap: pretty;
}

body.page-about .tp-about-essay-beat {
    margin-top: 1.6rem !important;
    margin-bottom: 0.65rem !important;
    font-style: italic;
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-about .tp-about-essay-moment {
    margin: 2.1rem 0 0.85rem !important;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-about .tp-about-essay-quote {
    margin: 0.85rem 0 1.5rem;
    padding: 0.85rem 0 0.85rem 1.15rem;
    border: 0;
    border-left: 3px solid var(--tp-gold, #c9a227);
    background: transparent;
    border-radius: 0;
    max-width: 48rem;
}

body.page-about .tp-about-essay-quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--tp-navy, #0b1f3a) !important;
    text-wrap: balance;
}

body.page-about .tp-about-essay-quote--pair p + p {
    margin-top: 0.65rem;
}

body.page-about .tp-about-essay-pairline {
    margin: 0 0 0.35rem !important;
    font-family: var(--font-display);
    font-size: clamp(1.08rem, 2.1vw, 1.25rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-about .tp-about-essay-pairline + .tp-about-essay-pairline {
    margin-bottom: 1.15rem !important;
}

body.page-about .tp-about-essay-figure {
    margin: 1.75rem 0 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

body.page-about .tp-about-essay-figure img {
    display: block;
    width: 100%;
    height: clamp(12rem, 36vw, 18rem);
    object-fit: cover;
    object-position: center 45%;
}

body.page-about .tp-about-essay-close {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(11, 31, 58, 0.12);
}

body.page-about .tp-about-essay-close p {
    margin: 0 0 1.05rem;
    max-width: none;
    font-size: clamp(1.02rem, 1.7vw, 1.12rem);
    line-height: 1.7;
    color: var(--tp-navy, #0b1f3a) !important;
    font-weight: 500;
}

body.page-about .tp-about-essay-close p:last-child {
    margin-bottom: 0;
}

body.page-about .tp-about-essay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

@media (max-width: 799px) {
    body.page-about .tp-about-essay-media {
        height: 15rem;
    }

    body.page-about .tp-about-essay-intro,
    body.page-about .tp-about-essay-body {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    body.page-about .tp-about-essay-actions {
        flex-direction: column;
    }

    body.page-about .tp-about-essay-actions .cta-button,
    body.page-about .tp-about-essay-actions .cta-button-outline {
        width: 100%;
        text-align: center;
    }
}

/* Contact primary CTA matches brand gold CTAs */
body.page-contact .submit-button {
    background: linear-gradient(135deg, var(--tp-gold, #c9a227), #b8921f);
    color: var(--tp-navy, #0b1f3a);
}

body.page-contact .submit-button:hover {
    background: linear-gradient(135deg, #d4b03a, var(--tp-gold, #c9a227));
}

/* LifeLine partner band */
body.page-lifeline .ll-partner {
    background: var(--tp-cream, #f7f5f0) !important;
}

/* Legal sections tighter rhythm */
body.page-legal .legal-section {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
    margin-bottom: 0.35rem;
}

body.page-legal .tp-legal-hero,
body.page-contact .tp-contact-hero {
    padding-top: 1.35rem !important;
    padding-bottom: 1.1rem !important;
}

/* ===== Mobile friendliness — sitewide final polish ===== */
@media (max-width: 799px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    body.page-about main#main,
    body.page-where main#main,
    body.page-lifeline main#main,
    body.page-contact main#main,
    body.page-legal main#main,
    body.page-brochure-network main#main {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    body.page-about main#main > section,
    body.page-about main#main > .tp-about-essay,
    body.page-where main#main > section,
    body.page-lifeline main#main > section,
    body.page-contact main#main > section,
    body.page-legal main#main > section,
    body.page-brochure-network main#main > section,
    body.page-brochure-network main#main > .tp-bn-section {
        max-width: 100%;
        box-sizing: border-box;
    }

    body.page-about .tp-about-hero,
    body.page-about .tp-about-hero-stage {
        border-radius: 1rem !important;
    }

    body.page-about .tp-about-hero-stage {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .cta-button,
    .cta-button-outline,
    .cta-button.cta-bold,
    .submit-button,
    body.page-contact .submit-button,
    .tp-page-actions a {
        min-height: 2.75rem;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
        box-sizing: border-box;
    }

    body.page-contact input,
    body.page-contact textarea,
    body.page-contact select,
    body.page-where input,
    body.page-where textarea,
    body.page-where select {
        font-size: 16px !important; /* prevent iOS zoom */
        max-width: 100%;
        box-sizing: border-box;
    }

    body.page-contact .form-group,
    body.page-contact .contact-form,
    body.page-contact .tp-contact-form {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
    }
body.page-where .tp-page-hero-grid-map,
    body.page-where .tp-reach-map-hero {
        grid-template-columns: 1fr !important;
    }

    body.page-lifeline .ll-contact-list a,
    body.page-lifeline a[href^="tel:"] {
        min-height: 2.75rem;
        display: inline-flex;
        align-items: center;
    }
}

/* ===== Home poster layout (2026-07-28 — mobile fix) ===== */
body.page-home-poster {
    background: var(--tp-cream, #f7f5f0);
    overflow-x: clip;
}

body.page-home-poster main#main {
    display: block;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: calc(var(--nav-height, 5.5rem) + 0.85rem) clamp(0.85rem, 3vw, 1.75rem) 0;
    background:
        radial-gradient(ellipse 80% 50% at 15% 12%, rgba(201, 162, 39, 0.07), transparent 55%),
        radial-gradient(ellipse 70% 45% at 92% 40%, rgba(11, 31, 58, 0.04), transparent 50%),
        var(--tp-cream, #f7f5f0);
    overflow-x: clip;
}

body.page-home-poster .tp-home-poster,
body.page-home-poster .tp-home-poster-grid,
body.page-home-poster .tp-home-poster-left,
body.page-home-poster .tp-home-poster-right,
body.page-home-poster .tp-impact,
body.page-home-poster .tp-home-poster-intro {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

body.page-home-poster .tp-home-poster {
    max-width: min(1140px, 100%);
    margin: 0 auto 1.75rem;
    padding: clamp(1rem, 2.5vw, 1.65rem);
    border-radius: 1.15rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.55) 0%, rgba(247, 245, 240, 0.9) 100%);
    border: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.05);
}

body.page-home-poster .tp-home-poster-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

body.page-home-poster .tp-home-poster-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.page-home-poster .tp-home-poster-intro {
    max-width: 36rem;
}

body.page-home-poster .tp-home-poster-title {
    margin: 0 0 1rem;
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4.2vw, 2.65rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--tp-navy, #0b1f3a);
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.page-home-poster .tp-home-poster-title span {
    display: block;
}

body.page-home-poster .tp-home-poster-lead,
body.page-home-poster .tp-home-poster-body {
    margin: 0 0 0.9rem;
    font-size: clamp(0.95rem, 1.6vw, 1.06rem);
    line-height: 1.6;
    color: var(--tp-navy, #0b1f3a);
    overflow-wrap: break-word;
}

body.page-home-poster .tp-home-poster-lead strong,
body.page-home-poster .tp-home-poster-body strong {
    font-weight: 700;
}

body.page-home-poster .tp-impact {
    margin: 0.25rem 0 0;
    max-width: 30rem;
}

body.page-home-poster .tp-impact-caption {
    margin: 0.85rem 0 0;
    max-width: 30rem;
}

body.page-home-poster .tp-impact-svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 30rem;
    overflow: visible;
}

/* Mobile list hidden on desktop */
body.page-home-poster .tp-impact-mobile {
    display: none;
}

body.page-home-poster .tp-home-poster-right {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

body.page-home-poster .tp-home-poster-media {
    margin: 0;
    overflow: hidden;
    border-radius: 0.85rem;
    background: rgba(11, 31, 58, 0.06);
    box-shadow: 0 8px 22px rgba(11, 31, 58, 0.06);
    max-height: min(26rem, 52vh);
}

body.page-home-poster .tp-home-poster-media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: min(26rem, 52vh);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 18%;
}

body.page-home-poster .tp-home-free {
    color: var(--tp-navy, #0b1f3a);
    font-weight: 800;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, transparent 62%, rgba(201, 162, 39, 0.45) 62%);
    padding: 0 0.12em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

body.page-home-poster .tp-home-lifeline-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-home-poster .tp-home-lifeline-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.4rem;
    padding-left: 0 !important;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff !important;
}

body.page-home-poster .tp-home-lifeline-list li::before {
    content: none !important;
    display: none !important;
}

body.page-home-poster .tp-home-lifeline-ico {
    flex-shrink: 0;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.2);
    color: var(--tp-gold, #c9a227);
}

body.page-home-poster .tp-home-lifeline-ico svg {
    display: block;
}

body.page-home-poster .tp-home-lifeline-card {
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 0;
    align-items: stretch;
    margin-top: -0.15rem;
    background: var(--tp-navy, #0b1f3a);
    color: #fff;
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(11, 31, 58, 0.12);
}

body.page-home-poster .tp-home-lifeline-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.05rem 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

body.page-home-poster .tp-home-lifeline-brand img {
    width: min(100%, 9.5rem);
    height: auto;
    display: block;
    background: #fff;
    border-radius: 0.35rem;
    padding: 0.45rem 0.5rem;
}

body.page-home-poster .tp-home-lifeline-copy {
    padding: 1rem 1.1rem 1.1rem;
}

body.page-home-poster .tp-home-lifeline-copy h2 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff !important;
}


body.page-home-poster .tp-home-partner-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.35rem 1.25rem 1.4rem;
    background: linear-gradient(165deg, #d4b03a 0%, var(--tp-gold, #c9a227) 55%, #b89220 100%);
    color: var(--tp-navy, #0b1f3a);
    text-align: center;
    border-radius: 0.85rem;
    box-shadow: 0 8px 22px rgba(201, 162, 39, 0.22);
}

body.page-home-poster .tp-home-partner-cta h2 {
    margin: 0 0 1rem;
    width: 100%;
    max-width: 28rem;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    color: var(--tp-navy, #0b1f3a) !important;
    overflow-wrap: break-word;
}

body.page-home-poster .tp-home-partner-cta > p:not(.tp-home-partner-url) {
    margin: 0 auto 1rem;
    max-width: 22rem;
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: center;
    color: var(--tp-navy, #0b1f3a) !important;
}

body.page-home-poster .tp-home-partner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-height: 2.85rem;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    background: var(--tp-navy, #0b1f3a);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    text-align: center;
}

body.page-home-poster .tp-home-partner-btn:hover,
body.page-home-poster .tp-home-partner-btn:focus-visible {
    box-shadow: 0 8px 18px rgba(11, 31, 58, 0.25);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

body.page-home-poster .tp-home-partner-url {
    display: block;
    width: 100%;
    margin: 0.95rem 0 0 !important;
    max-width: none !important;
    font-size: 0.9rem !important;
    font-weight: 600;
    text-align: center !important;
}

body.page-home-poster .tp-home-partner-url a {
    display: inline;
    color: var(--tp-navy, #0b1f3a) !important;
    text-decoration: none;
    word-break: break-word;
    text-align: center;
}

body.page-home-poster .footer {
    margin-top: 0;
    border-top: 1px solid rgba(201, 162, 39, 0.28);
}

/* ---- Mobile / tablet ---- */
@media (max-width: 980px) {
    body.page-home-poster main#main {
        padding: calc(var(--nav-height, 5.5rem) + 0.35rem) 0 0;
    }

    body.page-home-poster .tp-home-poster {
        margin: 0;
        padding: 0.9rem 1.1rem 1.35rem;
        border-radius: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
        max-width: 100%;
    }

    body.page-home-poster .tp-home-poster-grid {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
    }

    body.page-home-poster .tp-home-poster-left,
    body.page-home-poster .tp-home-poster-right {
        display: contents;
    }

    body.page-home-poster .tp-home-poster-intro {
        display: contents;
        max-width: none;
    }

    body.page-home-poster .tp-home-poster-title {
        order: 1;
        margin: 0 0 0.65rem;
        font-size: clamp(1.5rem, 6.5vw, 1.9rem);
        line-height: 1.15;
    }

    body.page-home-poster .tp-home-poster-media {
        order: 2;
        width: 100%;
        border-radius: 0.8rem;
        margin: 0;
    }

    body.page-home-poster .tp-home-poster-media img {
        aspect-ratio: 4 / 5;
        object-position: center 16%;
    }

    body.page-home-poster .tp-home-poster-lead {
        order: 3;
        margin: 0.1rem 0 0.55rem;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    body.page-home-poster .tp-impact {
        order: 4;
        width: 100%;
        max-width: 100%;
        margin: 0.4rem 0 0;
    }

    body.page-home-poster .tp-impact-caption {
        margin: 0.75rem 0 0;
        max-width: 100%;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    body.page-home-poster .tp-home-lifeline-card {
        order: 5;
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 0.85rem;
        margin-top: -0.25rem;
    }

    body.page-home-poster .tp-home-partner-cta {
        order: 6;
        width: 100%;
        border-radius: 0.85rem;
        padding: 1.25rem 1.1rem 1.3rem;
        margin-top: -0.1rem;
    }

    body.page-home-poster .tp-impact-svg--desktop {
        display: none !important;
    }

    body.page-home-poster .tp-impact-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        margin: 0;
        padding: 0.75rem;
        list-style: none;
        border-radius: 0.9rem;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(11, 31, 58, 0.07);
        box-shadow: 0 6px 18px rgba(11, 31, 58, 0.04);
    }

    body.page-home-poster .tp-impact-mobile::before {
        display: none;
    }

    body.page-home-poster .tp-impact-mobile-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        margin: 0;
        padding: 0.75rem 0.7rem;
        border-radius: 0.7rem;
        background: var(--tp-cream, #f7f5f0);
        min-height: 6.2rem;
        text-align: center;
    }

    body.page-home-poster .tp-impact-mobile-item--core {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        min-height: 0;
        padding: 0.8rem 0.85rem;
        background: var(--tp-navy, #0b1f3a);
        border: 0;
        text-align: center;
    }

    body.page-home-poster .tp-impact-mobile-item--core .tp-impact-mobile-text {
        color: #fff;
        font-size: 1.05rem;
        text-align: center;
    }

    body.page-home-poster .tp-impact-mobile-icon {
        flex-shrink: 0;
        width: 2.55rem;
        height: 2.55rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: none;
        margin-inline: auto;
    }

    body.page-home-poster .tp-impact-mobile-icon--navy {
        background: var(--tp-navy, #0b1f3a);
    }

    body.page-home-poster .tp-impact-mobile-icon--gold {
        background: var(--tp-gold, #c9a227);
    }

    body.page-home-poster .tp-impact-mobile-item--core .tp-impact-mobile-icon {
        background: var(--tp-gold, #c9a227);
        margin-inline: 0;
    }

    body.page-home-poster .tp-impact-mobile-text {
        display: block;
        width: 100%;
        font-size: 0.92rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--tp-navy, #0b1f3a);
        text-align: center;
    }

    body.page-home-poster .tp-impact-mobile-text strong {
        font-weight: 800;
    }

    body.page-home-poster .tp-home-lifeline-brand {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding: 0.9rem 1rem;
        justify-content: flex-start;
    }

    body.page-home-poster .tp-home-lifeline-brand img {
        width: min(100%, 11.5rem);
        margin: 0;
    }

    body.page-home-poster .tp-home-lifeline-copy {
        padding: 0.95rem 1.1rem 1.15rem;
    }

    body.page-home-poster .tp-home-lifeline-copy h2 {
        font-size: 1.05rem;
    }

    body.page-home-poster .tp-home-lifeline-list li {
        font-size: 0.98rem;
    }

    body.page-home-poster .tp-home-partner-btn {
        width: 100%;
        min-height: 3.05rem;
        font-size: 1.02rem;
    }

    /* Footer: stack cleanly on home */
    body.page-home-poster .footer .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.35rem !important;
    }

    body.page-home-poster .footer .footer-column {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 640px) {
    body.page-home-poster .tp-home-poster {
        padding: 0.8rem 1rem 1.2rem;
    }

    body.page-home-poster .tp-home-poster-title {
        font-size: clamp(1.4rem, 7vw, 1.75rem);
    }

    body.page-home-poster .tp-impact-mobile {
        gap: 0.55rem;
        padding: 0.65rem;
    }

    body.page-home-poster .tp-impact-mobile-item {
        min-height: 5.8rem;
        padding: 0.65rem 0.6rem;
    }

    body.page-home-poster .tp-impact-mobile-text {
        font-size: 0.88rem;
    }
}

@media (max-width: 360px) {
    body.page-home-poster .tp-impact-mobile {
        grid-template-columns: 1fr;
    }

    body.page-home-poster .tp-impact-mobile-item {
        min-height: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    body.page-home-poster .tp-impact-mobile-item:not(.tp-impact-mobile-item--core) {
        flex-direction: column;
    }
}
