/* ============================================
   SEIFERT CONSULTING
   Turning Expertise into Influence
   
   Design System aligned with Comms Centre
   ============================================ */

/* CSS Variables - Light Mode (Default) */
:root {
    /* Primary - Deep professional blue for parent company */
    --primary: #1e40af;
    --primary-foreground: #ffffff;
    
    /* Accent - Shared with Comms Centre ecosystem */
    --accent: #00004d;
    --accent-foreground: #ffffff;
    
    /* Orange highlight - Connects to Comms Centre brand */
    --highlight: #eb5436;
    --highlight-foreground: #ffffff;
    
    /* Background Colors */
    --background: #ffffff;
    --foreground: #111827;
    --card: #ffffff;
    --card-foreground: #111827;
    
    /* Secondary Colors */
    --secondary: #f3f4f6;
    --secondary-foreground: #111827;
    --muted: #f3f4f6;
    --muted-foreground: #6b7280;
    
    /* Border & Input */
    --border: #e5e7eb;
    --input: #e5e7eb;
    --ring: #1e40af;
    
    /* Status Colors */
    --destructive: #e30b21;
    --destructive-foreground: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Sizing */
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    
    /* Typography */
    --font-sans: 'Montserrat', 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    
    /* Container */
    --container-max: 1400px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* CSS Variables - Dark Mode */
.dark {
    --primary: #3b82f6;
    --primary-foreground: #ffffff;
    --accent: #475569;
    --accent-foreground: #f1f5f9;
    --highlight: #eb5436;
    --highlight-foreground: #ffffff;
    --background: #0f172a;
    --foreground: #f1f5f9;
    --card: #1e293b;
    --card-foreground: #f1f5f9;
    --secondary: #334155;
    --secondary-foreground: #f1f5f9;
    --muted: #334155;
    --muted-foreground: #cbd5e1;
    --border: #334155;
    --input: #334155;
    --ring: #3b82f6;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--muted);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

.dark body {
    background-color: var(--background);
}

body:not(.css-ready) {
    opacity: 0 !important;
    visibility: hidden !important;
}

body.css-ready {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.2;
    color: var(--foreground);
}

.heading-1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.heading-2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.heading-3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.heading-4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.text-weight-bold {
    font-weight: 700;
}

.text-italic {
    font-family: var(--font-serif);
    font-style: italic;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    color: var(--foreground);
    opacity: 0.8;
}

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

ul {
    list-style: none;
}

/* Buttons - Matching Comms Centre Style */
.primary-button, .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-foreground);
    background-color: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.primary-button:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.primary-button:active, .btn-primary:active {
    transform: translateY(0);
}

.primary-button.large, .btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.primary-button svg, .btn-primary svg {
    transition: transform var(--transition-fast);
}

.primary-button:hover svg, .btn-primary:hover svg {
    transform: translateX(4px);
}

.secondary-button, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.secondary-button:hover, .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--muted);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.btn-ghost:hover {
    border-color: var(--foreground);
    background-color: var(--secondary);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-normal);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.dark .header {
    background-color: var(--card);
}

.dark .header.scrolled {
    background: rgba(30, 41, 59, 0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-img {
    height: 28px;
    width: auto;
    transition: opacity 0.2s ease;
}

.logo-img--footer {
    height: 24px;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

/* Dark mode: invert the navy text to white, keep orange icon */
.dark .logo-img {
    filter: brightness(0) invert(1);
    /* Note: This inverts the whole logo to white. 
       For brand-accurate colors in dark mode, consider creating 
       a separate white version of the logo */
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    opacity: 0.8;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-cta {
    background-color: var(--primary);
    color: var(--primary-foreground) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    opacity: 1 !important;
}

.nav-cta:hover {
    background-color: var(--accent);
    color: var(--accent-foreground) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Theme Toggle - Fixed Right Side (matching Comms Centre) */
.theme-toggle-fixed {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    transition: opacity var(--transition-normal);
    opacity: 0.6;
}

.theme-toggle-fixed:hover {
    opacity: 1;
}

.theme-switch {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 32px;
    height: 64px;
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 4px;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.theme-icon {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--foreground);
    opacity: 0.5;
    transition: opacity var(--transition-normal), color var(--transition-normal);
}

.theme-icon svg {
    width: 12px;
    height: 12px;
}

.theme-icon.sun-icon {
    top: 4px;
}

.theme-icon.moon-icon {
    bottom: 4px;
}

.dark .theme-icon.sun-icon {
    opacity: 0.3;
}

.dark .theme-icon.moon-icon {
    opacity: 0.7;
}

:not(.dark) .theme-icon.sun-icon {
    opacity: 0.7;
}

:not(.dark) .theme-icon.moon-icon {
    opacity: 0.3;
}

.theme-switch-slider {
    position: absolute;
    left: 4px;
    width: 24px;
    height: 24px;
    background-color: var(--foreground);
    border-radius: 50%;
    transition: transform var(--transition-normal), background-color var(--transition-normal);
    transform: translateY(0);
    z-index: 1;
}

.dark .theme-switch {
    background-color: var(--secondary);
    border-color: var(--border);
}

.dark .theme-switch-slider {
    transform: translateY(36px);
    background-color: var(--accent-foreground);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 6rem;
    background-color: var(--secondary);
    overflow: hidden;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    margin-bottom: 2rem;
}

.dark .hero {
    background-color: var(--accent);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(30, 64, 175, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(235, 84, 54, 0.08) 0%, transparent 40%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-pattern-light.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dark .hero-pattern {
    background-image: url('assets/hero-pattern-dark.png');
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 9999px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--foreground);
    opacity: 0.8;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-scroll span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--muted-foreground), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
    padding: 6rem 0;
    border-radius: var(--radius-xl);
    margin: 2rem 1rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--foreground);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 1.5rem auto;
    opacity: 0.8;
    color: var(--foreground);
    max-width: 70ch;
    text-align: center;
}

/* Light section header for dark backgrounds */
.section-header--light .section-title,
.section-header--light .section-label {
    color: var(--accent-foreground);
}

.section-header--light .section-subtitle {
    color: var(--accent-foreground);
    opacity: 0.8;
}

/* ============================================
   OFFERINGS SECTION
   ============================================ */

.offerings {
    padding: 6rem 0;
    background-color: var(--background);
    border-radius: var(--radius-xl);
    margin: 2rem 1rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.offering-card {
    position: relative;
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.offering-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.offering-card--featured {
    background: linear-gradient(135deg, var(--accent) 0%, #1a1a3e 100%);
    border-color: transparent;
}

.offering-card--featured .offering-title,
.offering-card--featured .offering-description {
    color: var(--accent-foreground);
}

.offering-card--featured .offering-description {
    opacity: 0.9;
}

.offering-card--featured .offering-features li {
    color: var(--accent-foreground);
    opacity: 0.85;
}

.offering-card--featured .offering-features li::before {
    color: var(--highlight);
}

.offering-card--featured .offering-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-foreground);
    border-color: transparent;
}

.offering-card--featured .offering-link {
    color: var(--highlight);
}

.offering-card--featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.offering-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    background: var(--secondary);
    border-radius: var(--radius);
    color: var(--primary);
}

.offering-card--featured .offering-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--highlight);
}

.offering-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 9999px;
}

.offering-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--card-foreground);
}

.offering-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    opacity: 0.8;
    color: var(--card-foreground);
}

.offering-features {
    margin-bottom: 1.5rem;
}

.offering-features li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--card-foreground);
    opacity: 0.8;
}

.offering-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.offering-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.offering-link:hover {
    color: var(--highlight);
}

.offering-link svg {
    transition: transform var(--transition-fast);
}

.offering-link:hover svg {
    transform: translate(4px, -4px);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 5rem 0;
    background: var(--secondary);
    border-radius: var(--radius-xl);
    margin: 0 1rem;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border: none;
    color: var(--accent-foreground);
}

.testimonial-card--featured .testimonial-text {
    font-size: 1.25rem;
    color: var(--accent-foreground);
}

.testimonial-card--featured .author-name,
.testimonial-card--featured .author-role {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card--featured .author-role {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.quote-icon {
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground);
    font-style: italic;
    flex-grow: 1;
    margin: 0 0 1.5rem 0;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-card--featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.author-role {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ============================================
   REPUTATION SECTION
   ============================================ */

.reputation {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--accent) 0%, #0a0a20 100%);
    border-radius: var(--radius-xl);
    margin: 2rem 1rem;
}

.reputation-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.pillar {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.pillar-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--highlight);
    margin-bottom: 1rem;
}

.pillar-title {
    color: var(--accent-foreground);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.pillar-description {
    color: var(--accent-foreground);
    opacity: 0.8;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.pillar-points {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pillar-points li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--accent-foreground);
    opacity: 0.7;
}

.pillar-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight);
}

/* Process */
.reputation-process {
    text-align: center;
}

.process-title {
    color: var(--accent-foreground);
    margin-bottom: 2.5rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    flex: 1;
    max-width: 180px;
    text-align: center;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: rgba(235, 84, 54, 0.15);
    border: 1px solid var(--highlight);
    border-radius: 9999px;
    color: var(--highlight);
}

.process-step h4 {
    color: var(--accent-foreground);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--accent-foreground);
    opacity: 0.7;
}

.process-connector {
    width: 50px;
    height: 1px;
    margin-top: 24px;
    background: linear-gradient(90deg, var(--highlight), transparent);
}

/* ============================================
   COMMS CENTRE CALLOUT SECTION
   ============================================ */

.comms-centre-callout {
    padding: 5rem 0;
    background-color: var(--muted);
    margin: 2rem 1rem;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.comms-centre-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, var(--highlight) 0%, transparent 70%);
    opacity: 0.06;
    pointer-events: none;
}

.callout-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.callout-inner .section-label {
    margin-bottom: 1rem;
}

.callout-headline {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--foreground);
    margin: 0 0 2rem 0;
}

.callout-headline em {
    font-style: normal;
    font-weight: 700;
    color: var(--highlight);
}

.callout-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.callout-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground);
    transition: all 0.2s ease;
}

.callout-feature:hover {
    border-color: var(--highlight);
    transform: translateY(-2px);
}

.callout-feature svg {
    color: var(--highlight);
    flex-shrink: 0;
}

.comms-centre-callout .btn-primary {
    margin-bottom: 2rem;
}

.callout-testimonial {
    margin: 0;
    padding: 1.5rem 2rem;
    border: none;
    background: var(--background);
    border-radius: var(--radius-lg);
    max-width: 600px;
}

.callout-testimonial p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.callout-testimonial cite {
    font-size: 0.85rem;
    font-style: normal;
    color: var(--muted-foreground);
    opacity: 0.8;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--border) 0%, var(--muted) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.image-placeholder span {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

@media (max-width: 968px) {
    .callout-headline {
        font-size: 1.5rem;
    }
    
    .callout-features {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .comms-centre-callout {
        padding: 3rem 0;
        margin: 1rem 0.5rem;
    }
    
    .callout-headline {
        font-size: 1.25rem;
    }
    
    .callout-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .callout-feature {
        justify-content: center;
    }
    
    .callout-testimonial {
        padding: 1rem 1.25rem;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 6rem 0;
    background-color: var(--background);
    border-radius: var(--radius-xl);
    margin: 2rem 1rem;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-intro {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.headshot {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    box-shadow: var(--shadow-md);
}

.headshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-intro-text p {
    margin-bottom: 0;
}

.about-intro-text strong {
    color: var(--foreground);
}

.about-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-differentiator {
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 6rem;
}

.differentiator-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.differentiator-header svg {
    color: var(--highlight);
    flex-shrink: 0;
}

.differentiator-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-foreground);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.differentiator-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.differentiator-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--accent-foreground);
    opacity: 0.9;
}

.differentiator-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 600;
    font-size: 0.875rem;
}

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

.differentiator-promise {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--accent-foreground);
    margin: 0;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.visual-element::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: var(--primary);
    opacity: 0.4;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(235, 84, 54, 0.08) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    margin: 2rem 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-text > p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--muted-foreground);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    color: var(--foreground);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-method svg {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--card-foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--foreground);
    background: var(--background);
    border: 1px solid var(--input);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success,
.form-error {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #166534;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

.dark-mode .form-success {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.dark-mode .form-error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 4rem 0 2rem;
    background: var(--secondary);
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--muted-foreground);
    background: rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.footer-social-link:hover {
    color: var(--primary);
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
}

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

/* Dark mode footer social */
[data-theme="dark"] .footer-social-link {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .footer-social-link:hover {
    background: rgba(30, 64, 175, 0.2);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Intersection Observer animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card--featured {
        grid-column: span 1;
    }
    
    .reputation-pillars {
        grid-template-columns: 1fr;
    }
    
    .wikipedia-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-differentiator {
        position: static;
    }
    
    .about-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .headshot {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }
    
    .about-intro-text p {
        text-align: left;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .heading-1 { font-size: 2.5rem; }
    .heading-2 { font-size: 2rem; }
    .heading-3 { font-size: 1.5rem; }
    
    .section-title { font-size: 2rem; }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--background);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        width: 100%;
    }
    
    .nav-links .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .theme-toggle-fixed {
        right: 1rem;
    }
    
    .theme-switch {
        width: 28px;
        height: 56px;
    }
    
    .theme-icon {
        width: 18px;
        height: 18px;
    }
    
    .theme-icon svg {
        width: 10px;
        height: 10px;
    }
    
    .theme-switch-slider {
        width: 20px;
        height: 20px;
    }
    
    .dark .theme-switch-slider {
        transform: translateY(32px);
    }
    
    .hero {
        padding: 6rem 0 4rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .primary-button,
    .hero-cta .btn-ghost {
        width: 100%;
    }
    
    .section {
        padding: 4rem 0;
        border-radius: var(--radius-lg);
        margin: 1rem 0.5rem;
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card--featured .testimonial-text {
        font-size: 1.1rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .process-step {
        max-width: 100%;
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        align-items: start;
        text-align: left;
        gap: 0.25rem 1rem;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .process-step:last-child {
        border-bottom: none;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin: 0;
        grid-row: 1 / 3;
        align-self: center;
    }
    
    .process-step h4 {
        margin-bottom: 0;
        grid-column: 2;
        grid-row: 1;
    }
    
    .process-step p {
        grid-column: 2;
        grid-row: 2;
    }
    
    .process-connector {
        display: none;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .padding-global {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.primary-button:focus-visible,
.secondary-button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-content a:hover {
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-sans);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
}

.cookie-btn-decline:hover {
    border-color: var(--foreground);
    color: var(--foreground);
}

.cookie-btn-accept {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--primary-foreground);
}

.cookie-btn-accept:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
}

/* Dark mode cookie banner */
[data-theme="dark"] .cookie-banner {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-content p {
        font-size: 0.8125rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 0.625rem 1rem;
    }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */

.legal-page {
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    min-height: 100vh;
    background: var(--background);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 1rem 0;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0;
}

.legal-intro {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.legal-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground);
    margin: 0;
}

.legal-intro p + p {
    margin-top: 1rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin: 0 0 1rem 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.legal-section ul li strong {
    color: var(--foreground);
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--highlight);
}

.contact-list {
    background: var(--muted);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
}

.contact-list li {
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .legal-page {
        padding: calc(var(--header-height) + 2rem) 0 4rem;
    }
    
    .legal-header h1 {
        font-size: 1.75rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-intro {
        padding: 1rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header,
    .footer,
    .hero-scroll {
        display: none;
    }
    
    .hero,
    .section {
        page-break-inside: avoid;
    }
}
