/* ============================================
   techosity Mock Site — Global Styles
   Brand colours, typography, layout, components
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
    --dark-navy: #003752;
    --cobalt: #00478E;
    --baltic-blue: #2C96EC;
    --accent-aqua: #00F0E1;
    --light-blue: #E2F2FF;
    --bg-subtle: #F0F7FF;
    --white: #FFFFFF;
    --off-white: #F7F9FB;
    --text-dark: #1a2a3a;
    --text-body: #2d3e50;
    --text-muted: #5a6b7c;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,55,82,0.06);
    --shadow-md: 0 4px 12px rgba(0,55,82,0.08);
    --shadow-lg: 0 8px 30px rgba(0,55,82,0.12);
    --shadow-xl: 0 20px 40px rgba(0,55,82,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-width: 1200px;
    --nav-height: 80px;
    --section-pad: 80px;
    --section-pad-lg: 100px;
    --section-pad-sm: 64px;
    --font-heading: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--baltic-blue);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover { color: var(--cobalt); }

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

h1 { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 12px 0 16px 24px; }
li { margin-bottom: 8px; }

strong { color: var(--dark-navy); }

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

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent-aqua);
    color: var(--dark-navy);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 12px;
    color: var(--dark-navy);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li { margin: 0; }

.nav-links a {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
    cursor: pointer;
}

/* Animated underline on nav links */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--baltic-blue);
    border-radius: 1px;
    transition: width 0.3s ease;
}

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

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    cursor: pointer;
    padding-right: 16px;
}

/* Caret on ::before so ::after stays free for the underline animation */
.nav-dropdown-trigger::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.7;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger::before {
    transform: translateY(-50%) rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    list-style: none;
    margin: 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--text-body);
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-subtle);
    color: var(--cobalt);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: none !important;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dark-navy) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
}

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

.nav-phone:hover {
    color: var(--cobalt) !important;
}

.nav-phone svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Nav CTA */
.nav-cta {
    background: var(--accent-aqua) !important;
    color: var(--dark-navy) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    white-space: nowrap;
}

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

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,240,225,0.3);
    color: var(--dark-navy) !important;
}

.nav-cta:active {
    transform: translateY(0) scale(0.98) !important;
}

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

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

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Sections --- */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--cobalt) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0,240,225,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44,150,236,0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0,240,225,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Dot grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

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

.hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    max-width: 720px;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.15rem;
    max-width: 620px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero--compact {
    padding: 100px 0 48px;
}

/* Hero variations per page */
.hero--about {
    background: linear-gradient(160deg, var(--dark-navy) 0%, var(--cobalt) 60%, var(--baltic-blue) 100%);
}

.hero--services {
    background: linear-gradient(120deg, var(--cobalt) 0%, var(--dark-navy) 100%);
}

.hero--support {
    background: linear-gradient(145deg, var(--dark-navy) 0%, #004a6e 50%, var(--cobalt) 100%);
}

.hero--leadership {
    background: linear-gradient(170deg, var(--cobalt) 0%, var(--dark-navy) 100%);
}

.hero--cyber {
    background: linear-gradient(130deg, var(--dark-navy) 0%, #002845 50%, var(--cobalt) 100%);
}

.hero--digital {
    background: linear-gradient(155deg, var(--cobalt) 0%, var(--baltic-blue) 40%, var(--cobalt) 100%);
}

.hero--industries {
    background: linear-gradient(140deg, var(--dark-navy) 0%, var(--cobalt) 70%, var(--baltic-blue) 100%);
}

.hero--why {
    background: linear-gradient(165deg, #002845 0%, var(--dark-navy) 40%, var(--cobalt) 100%);
}

.hero--contact {
    padding: 140px 0 60px;
    background: linear-gradient(150deg, var(--cobalt) 0%, var(--dark-navy) 100%);
}

.hero .btn-primary {
    background: var(--accent-aqua);
    color: var(--dark-navy);
}

.hero .btn-secondary {
    color: rgba(255,255,255,0.7);
    margin-left: 16px;
    font-size: 0.9rem;
}

.hero .btn-secondary:hover { color: var(--white); }

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: var(--accent-aqua);
    color: var(--dark-navy);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,240,225,0.3);
    color: var(--dark-navy);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0,240,225,0.2);
}

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

.btn-primary--blue {
    background: var(--cobalt);
    color: var(--white);
}

.btn-primary--blue:hover {
    box-shadow: 0 6px 20px rgba(0,71,142,0.3);
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--baltic-blue);
    color: var(--baltic-blue);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--baltic-blue);
    color: var(--white);
}

.btn-outline:active {
    transform: scale(0.98);
}

.btn-outline:focus-visible {
    outline: 2px solid var(--baltic-blue);
    outline-offset: 3px;
}

/* --- Sections --- */
.section {
    padding: var(--section-pad) 0;
}

.section--light {
    background: var(--off-white);
}

.section--blue-light {
    background: var(--bg-subtle);
}

.section--navy {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--cobalt) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section--navy::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.section--navy .container {
    position: relative;
    z-index: 1;
}

.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy strong {
    color: var(--white);
}

.section--navy .accent { color: var(--accent-aqua); }

.section--spacious {
    padding: var(--section-pad-lg) 0;
}

.section-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section--navy .section-header p {
    color: rgba(255,255,255,0.8);
}

/* --- Grid Layouts --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

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

/* --- Cards --- */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

/* Card icon — supports SVG */
.card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--baltic-blue);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Card link with animated arrow */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--baltic-blue);
    cursor: pointer;
}

.card-link::after {
    content: '\2192';
    transition: transform 0.25s ease;
}

.card-link:hover::after {
    transform: translateX(7px);
}

/* Card — stat variant */
.card--stat {
    text-align: center;
    padding: 40px 24px;
    border-top: 3px solid var(--accent-aqua);
}

.card--stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cobalt);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.card--stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Card — highlight (dark) variant */
.card--highlight {
    background: linear-gradient(135deg, var(--dark-navy), var(--cobalt));
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.card--highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.card--highlight h3 { color: var(--accent-aqua); }
.card--highlight p { color: rgba(255,255,255,0.85); }
.card--highlight .card-icon { background: rgba(255,255,255,0.1); }
.card--highlight .card-icon svg { stroke: var(--accent-aqua); }
.card--highlight:hover { box-shadow: var(--shadow-xl); }

/* Pillar cards */
.pillar-card {
    border-top: 3px solid var(--baltic-blue);
}

.pillar-card:nth-child(2) { border-top-color: var(--cobalt); }
.pillar-card:nth-child(3) { border-top-color: var(--accent-aqua); }
.pillar-card:nth-child(4) { border-top-color: var(--dark-navy); }

/* --- Problem Cards --- */
.problem-card {
    text-align: center;
    padding: 36px 28px;
}

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

/* --- Steps --- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--accent-aqua);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step h3 { font-size: 1.1rem; }

/* Step connector lines */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: var(--border-light);
}

/* --- Outcomes List --- */
.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.outcomes-grid--single {
    grid-template-columns: 1fr;
}

.outcome-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.outcome-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent-aqua);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 2px;
}

.outcome-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--dark-navy);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Warning variant — on-brand dark navy instead of red */
.outcome-icon--warning {
    background: var(--dark-navy);
    color: var(--white);
}

.outcome-icon--warning svg {
    stroke: var(--accent-aqua);
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--baltic-blue);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--baltic-blue);
    opacity: 0.2;
    position: absolute;
    top: 8px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 0.88rem;
    display: block;
}

/* --- Credential Badges --- */
.badge-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.badge--light {
    background: var(--bg-subtle);
    border-color: var(--border-light);
    color: var(--cobalt);
}

/* Trust bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 36px 0;
    background: var(--dark-navy);
    border-radius: var(--radius-lg);
    margin: 0 auto;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

.trust-bar-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,240,225,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,240,225,0.2);
}

.trust-bar-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-aqua);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--baltic-blue), var(--cobalt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Industry Cards --- */
.industry-card {
    padding: 28px;
}

.industry-card h3 {
    font-size: 1.05rem;
    color: var(--cobalt);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Featured industry card */
.industry-card--featured {
    border-top: 3px solid var(--accent-aqua);
    box-shadow: var(--shadow-md);
}

/* --- Four Pillar Diagram --- */
.pillar-diagram {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1.1;
    margin: 0 auto;
}
.pillar-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-navy), var(--cobalt));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0,55,82,0.3);
}
.pillar-center span {
    color: var(--accent-aqua);
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    margin-top: 6px;
    line-height: 1.35;
}
.pillar-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 68%; height: 62%;
    border-radius: 50%;
    border: 2px dashed rgba(44,150,236,0.25);
    z-index: 0;
}
.pillar-node {
    position: absolute;
    width: 130px;
    text-align: center;
    z-index: 1;
}
.pillar-node-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.pillar-node-icon svg {
    width: 22px; height: 22px;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.pillar-node h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--dark-navy);
    margin: 0 0 3px;
}
.pillar-node p {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.35;
}
.pillar-pos-top { top: 0; left: 50%; transform: translateX(-50%); }
.pillar-pos-right { top: 50%; right: -10px; transform: translateY(-50%); }
.pillar-pos-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.pillar-pos-left { top: 50%; left: -10px; transform: translateY(-50%); }
.pillar-icon-support { background: linear-gradient(135deg, #2C96EC, #00478E); }
.pillar-icon-leadership { background: linear-gradient(135deg, #00478E, #003752); }
.pillar-icon-cyber { background: linear-gradient(135deg, #FF8C46, #FF4C54); }
.pillar-icon-transform { background: linear-gradient(135deg, #00F0E1, #2C96EC); }
.pillar-connector {
    position: absolute;
    background: rgba(44,150,236,0.15);
    z-index: 0;
}
.pillar-conn-v { width: 2px; height: 72px; left: 50%; transform: translateX(-50%); }
.pillar-conn-h { height: 2px; width: 72px; top: 50%; transform: translateY(-50%); }
.pillar-conn-top { top: 85px; }
.pillar-conn-bottom { bottom: 85px; }
.pillar-conn-left { left: 85px; }
.pillar-conn-right { right: 85px; }

/* --- Differentiator Section --- */
.diff-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

.diff-item:last-child { border-bottom: none; }

.diff-item:nth-child(even) .diff-text { order: -1; }

.diff-visual {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.diff-visual svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.diff-text h3 { font-size: 1.3rem; margin-bottom: 14px; }

/* --- Visual Placeholders --- */
.visual-placeholder {
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--cobalt) 100%);
}

.visual-placeholder::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0,240,225,0.12);
    top: -50px;
    right: -50px;
}

.visual-placeholder::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -40px;
    left: -40px;
}

.visual-placeholder--alt {
    background: linear-gradient(135deg, var(--cobalt) 0%, var(--baltic-blue) 100%);
}

.visual-placeholder--alt::before {
    background: rgba(0,240,225,0.1);
    width: 180px;
    height: 180px;
    top: auto;
    bottom: -30px;
    right: 20%;
}

.visual-placeholder--alt::after {
    width: 120px;
    height: 120px;
    bottom: auto;
    top: -20px;
    left: auto;
    right: -20px;
    border-color: rgba(255,255,255,0.06);
}

/* Dot grid layer on placeholders */
.visual-placeholder .dot-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Content inside placeholders */
.visual-placeholder-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 320px;
    padding: 32px;
    color: var(--white);
    text-align: center;
}

.visual-placeholder-content svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-aqua);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 16px;
    opacity: 0.6;
}

/* Stat highlights inside visual placeholder */
.stat-highlight {
    display: flex;
    gap: 32px;
    align-items: center;
}
.stat-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-aqua);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Avatar placeholder */
.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--baltic-blue), var(--cobalt));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--accent-aqua);
}

/* --- CTA Section --- */
.cta-section {
    padding: var(--section-pad-lg) 0;
    background: linear-gradient(135deg, var(--cobalt) 0%, var(--dark-navy) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(0,240,225,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(44,150,236,0.06) 0%, transparent 50%);
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

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

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 28px;
}

.cta-section .btn-primary {
    margin-bottom: 12px;
}

.cta-section .cta-phone {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

/* --- Cross Links --- */
.cross-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cross-link {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--cobalt);
    transition: all 0.2s;
    cursor: pointer;
}

.cross-link:hover {
    background: var(--cobalt);
    border-color: var(--cobalt);
    color: var(--white);
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid transparent;
    border-color: var(--baltic-blue);
    box-shadow: 0 0 0 3px rgba(44,150,236,0.1);
}

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

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6b7c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select:focus {
    outline: 2px solid transparent;
    border-color: var(--baltic-blue);
    box-shadow: 0 0 0 3px rgba(44,150,236,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* --- Support Channel Cards --- */
.support-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
    color: inherit;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--baltic-blue);
    color: inherit;
}

.support-card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.support-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--baltic-blue);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.support-card-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--baltic-blue);
    margin-bottom: 8px;
}

.support-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-details h3 {
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--bg-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--cobalt);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* CTA to footer transition */
.cta-section + .footer {
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- Footer --- */
.footer {
    background: var(--dark-navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 32px;
}

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

.footer-logo {
    margin-bottom: 12px;
}

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

.footer p { font-size: 0.88rem; margin-bottom: 8px; }

.footer h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer ul a:hover { color: var(--accent-aqua); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.65);
    margin-left: 20px;
}

.footer-bottom a:hover { color: var(--accent-aqua); }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
}

.social-link:hover {
    background: var(--accent-aqua);
    color: var(--dark-navy);
}

/* --- What to Expect Panel (contact page) --- */
.expect-panel {
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-top: 32px;
}

.expect-panel h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.expect-step {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.expect-step:last-of-type {
    margin-bottom: 0;
}

.expect-step .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin: 0;
}

.expect-step p {
    margin: 0;
    font-size: 0.9rem;
}

.expect-tagline {
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark-navy);
}

/* --- Diff Visual Variants (why-techosity page) --- */
.diff-visual--security {
    background: linear-gradient(135deg, var(--dark-navy), var(--cobalt));
    color: white;
    font-size: 1rem;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
}

.diff-visual--iso {
    background: linear-gradient(135deg, var(--accent-aqua), var(--baltic-blue));
    font-size: 1rem;
    flex-direction: column;
    gap: 8px;
    color: var(--dark-navy);
    padding: 32px;
}

.diff-visual--iso svg {
    stroke: var(--dark-navy);
}

.diff-visual--strategy,
.diff-visual--regulated,
.diff-visual--plain,
.diff-visual--partnership {
    font-size: 1rem;
    flex-direction: column;
    gap: 8px;
    padding: 32px;
}

.diff-visual--strategy svg,
.diff-visual--regulated svg,
.diff-visual--plain svg,
.diff-visual--partnership svg {
    stroke: var(--cobalt);
}

.diff-label {
    font-weight: 700;
    font-size: 1.1rem;
}

.diff-sublabel {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* --- Grid Modifiers --- */
.grid-2--center { align-items: center; gap: 48px; }
.grid-2--start { align-items: start; gap: 48px; }
.grid-2--tight { gap: 16px; }
.grid-2--gap-20 { gap: 20px; }

/* --- Section Modifiers --- */
.section--flush { padding: 0; }

/* --- Text Utilities --- */
.text-center { text-align: center; }
.text-callout {
    text-align: center;
    margin-top: 36px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-navy);
}
.text-closing {
    margin-top: 28px;
    font-weight: 600;
    color: var(--dark-navy);
}
.text-closing--wide {
    margin-top: 32px;
    font-weight: 600;
    color: var(--dark-navy);
    max-width: 860px;
}
.text-muted-sm {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.text-intro {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

/* --- Card Variants --- */
.card--accent-left {
    border-left: 3px solid var(--dark-navy);
    padding: 20px 24px;
}
.card--accent-left p { margin: 0; }
.card--accent-left-compact {
    border-left: 3px solid var(--dark-navy);
    padding: 16px 20px;
    margin: 0;
}
.card--accent-left-compact p { margin: 0; font-size: 0.9rem; }
.card--icon-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
}
.card--full-span { grid-column: 1 / -1; }

/* Purpose/Vision/Mission cards */
.card--pvm {
    text-align: center;
}
.card--pvm-label {
    color: var(--cobalt);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.card--pvm-label--aqua { color: var(--accent-aqua); }
.card--pvm-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-top: 12px;
}
.card--highlight .card--pvm-text { color: var(--white); }
.card--pvm-border-aqua { border-top: 3px solid var(--accent-aqua); }
.card--pvm-border-cobalt { border-top: 3px solid var(--cobalt); }

/* About page — leadership card */
.leadership-wrap { max-width: 440px; margin: 0 auto; }
.leadership-card { text-align: center; }
.leadership-role {
    color: var(--baltic-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.leadership-bio { font-size: 0.9rem; color: var(--text-muted); }
.badge-row--center { justify-content: center; margin-top: 16px; }
.badge--sm { font-size: 0.75rem; padding: 4px 10px; }

/* Cyber credentials badges */
.badge--lg { font-size: 1rem; padding: 16px 32px; }
.badge-stack {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

/* CTA section links */
.cta-section-link {
    margin-top: 16px;
    display: block;
}
.cta-section-link a {
    color: var(--accent-aqua);
    font-weight: 600;
}

/* Footer assessment button */
.footer-cta {
    margin-top: 12px;
    font-size: 0.82rem;
    padding: 8px 16px;
}

/* --- Hero Visual Element --- */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-graphic {
    position: relative;
    width: 320px;
    height: 320px;
}
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0,240,225,0.15);
}
.hero-ring--outer {
    inset: 0;
    animation: hero-ring-pulse 4s ease-in-out infinite;
}
.hero-ring--mid {
    inset: 32px;
    border-color: rgba(0,240,225,0.2);
    animation: hero-ring-pulse 4s ease-in-out 0.5s infinite;
}
.hero-ring--inner {
    inset: 64px;
    border-color: rgba(0,240,225,0.25);
    animation: hero-ring-pulse 4s ease-in-out 1s infinite;
}
.hero-ring-center {
    position: absolute;
    inset: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,240,225,0.15), rgba(44,150,236,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-ring-center svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-aqua);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.8;
}
.hero-stat-float {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    font-family: var(--font-heading);
    color: var(--white);
    white-space: nowrap;
}
.hero-stat-float strong {
    color: var(--accent-aqua);
    font-size: 1.4rem;
    display: block;
    line-height: 1.2;
}
.hero-stat-float span {
    font-size: 0.72rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-stat--top-right {
    top: 16px;
    right: -20px;
}
.hero-stat--bottom-left {
    bottom: 24px;
    left: -30px;
}
.hero-stat--mid-right {
    top: 50%;
    right: -44px;
    transform: translateY(-50%);
}
@keyframes hero-ring-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

/* --- Essential Eight Grid (cyber page) --- */
.e8-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.e8-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.e8-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.e8-item-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.e8-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--cobalt);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.e8-item h4 {
    font-size: 0.8rem;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.3;
}
@media (max-width: 1024px) {
    .e8-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .e8-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .e8-item { padding: 16px 12px; }
    .e8-item h4 { font-size: 0.75rem; }
}

/* --- SLA Metrics Bar (support page) --- */
.sla-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}
.sla-item {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
}
.sla-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-aqua);
    line-height: 1;
    margin-bottom: 6px;
}
.sla-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
@media (max-width: 768px) {
    .sla-bar { grid-template-columns: 1fr; }
}

/* --- Diff Visual Enhanced Variants (why-techosity) --- */
.diff-visual--strategy {
    background: linear-gradient(135deg, var(--light-blue), var(--bg-subtle));
}
.diff-visual--regulated {
    background: linear-gradient(135deg, var(--bg-subtle), #e8f4ff);
}
.diff-visual--plain {
    background: linear-gradient(135deg, #e8f4ff, var(--light-blue));
}
.diff-visual--partnership {
    background: linear-gradient(135deg, var(--light-blue), #dbeeff);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.07s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.42s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.49s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.56s; }

/* --- Focus Visible --- */
a:focus-visible {
    outline: 2px solid var(--baltic-blue);
    outline-offset: 2px;
    border-radius: 2px;
}

.card:focus-visible,
.cross-link:focus-visible {
    outline: 2px solid var(--baltic-blue);
    outline-offset: 2px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .diff-item { grid-template-columns: 1fr; gap: 24px; }
    .diff-item:nth-child(even) .diff-text { order: 0; }
    .diff-visual { height: 160px; }
    .trust-bar { gap: 24px; flex-wrap: wrap; padding: 28px 24px; }
    .step:not(:last-child)::after { display: none; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.6rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .support-channels { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero { padding: 130px 0 70px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .section { padding: 56px 0; }
    .section--spacious { padding: 64px 0; }
    .grid-2, .grid-3, .values-grid, .steps, .outcomes-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .pillar-diagram { max-width: 360px; }
    .pillar-center { width: 120px; height: 120px; font-size: 1rem; }
    .pillar-center span { font-size: 0.58rem; }
    .pillar-node { width: 110px; }
    .pillar-node-icon { width: 44px; height: 44px; }
    .pillar-node-icon svg { width: 18px; height: 18px; }
    .pillar-node h4 { font-size: 0.72rem; }
    .pillar-node p { font-size: 0.65rem; }
    .pillar-conn-top { top: 70px; }
    .pillar-conn-bottom { bottom: 70px; }
    .pillar-conn-left { left: 65px; }
    .pillar-conn-right { right: 65px; }
    .pillar-conn-v { height: 56px; }
    .pillar-conn-h { width: 56px; }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        overflow-y: auto;
    }

    .nav-links.open { display: flex; }

    .nav-links li {
        border-bottom: 1px solid var(--border-light);
        padding: 14px 0;
    }

    .nav-links a { font-size: 1rem; }
    .nav-links a::after { display: none; }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 8px;
    }

    .nav-phone {
        justify-content: center;
        font-size: 1.1rem !important;
    }

    .nav-cta {
        text-align: center;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 8px 0 0 16px;
        min-width: auto;
    }

    .nav-toggle { display: flex; }

    .trust-bar {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 24px;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .step:not(:last-child)::after { display: none; }

    .visual-placeholder { min-height: 240px; }
    .visual-placeholder-content { min-height: 240px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-sub { font-size: 1rem; }
    .container { padding: 0 16px; }
    .card { padding: 24px; }
    .btn-primary { padding: 12px 24px; font-size: 0.9rem; }
}

/* --- CSAT Widget --- */
.csat-widget {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
}

/* Score Ring */
.csat-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 180px;
}

.csat-ring-wrap {
    position: relative;
    width: 140px;
    height: 140px;
}

.csat-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.csat-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 6;
}

.section--light .csat-ring-bg,
.section:not(.section--navy):not(.section--light) .csat-ring-bg {
    stroke: rgba(0, 55, 82, 0.08);
}

.csat-ring-fill {
    fill: none;
    stroke: var(--accent-aqua);
    stroke-width: 6;
    stroke-linecap: round;
    transition: none;
    filter: drop-shadow(0 0 6px rgba(0, 240, 225, 0.3));
}

/* Light / default section variant — accent stroke */
.section--light .csat-ring-fill,
.section:not(.section--navy):not(.section--light) .csat-ring-fill {
    stroke: var(--accent-aqua);
    filter: none;
}

.csat-ring-fill--animated {
    transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    stroke-dashoffset: var(--final-offset, 0) !important;
}

.csat-ring-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.csat-ring-label {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.section--light .csat-ring-label,
.section:not(.section--navy):not(.section--light) .csat-ring-label {
    color: var(--text-muted);
}

.csat-ring-row {
    display: flex;
    align-items: baseline;
}

.csat-ring-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-aqua);
    line-height: 1;
}

.section--light .csat-ring-number,
.section:not(.section--navy):not(.section--light) .csat-ring-number {
    color: var(--accent-aqua);
}

.csat-ring-percent {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-aqua);
    margin-top: 4px;
}

.section--light .csat-ring-percent,
.section:not(.section--navy):not(.section--light) .csat-ring-percent {
    color: var(--accent-aqua);
}

.csat-meta {
    text-align: center;
}

.csat-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
}

.section--light .csat-label,
.section:not(.section--navy):not(.section--light) .csat-label {
    color: var(--dark-navy);
}

.csat-surveys {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.section--light .csat-surveys,
.section:not(.section--navy):not(.section--light) .csat-surveys {
    color: var(--text-muted);
}

/* Carousel */
.csat-carousel {
    min-width: 0;
}

.csat-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.csat-carousel-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

.section--light .csat-carousel-title,
.section:not(.section--navy):not(.section--light) .csat-carousel-title {
    color: var(--text-muted);
}

.csat-nav {
    display: flex;
    gap: 6px;
}

.csat-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.section--light .csat-nav-btn,
.section:not(.section--navy):not(.section--light) .csat-nav-btn {
    border-color: rgba(0, 55, 82, 0.15);
    background: rgba(0, 55, 82, 0.04);
    color: var(--dark-navy);
}

.csat-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-aqua);
}

.section--light .csat-nav-btn:hover:not(:disabled),
.section:not(.section--navy):not(.section--light) .csat-nav-btn:hover:not(:disabled) {
    background: rgba(0, 55, 82, 0.08);
    border-color: var(--cobalt);
}

.csat-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.csat-nav-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Cards */
.csat-carousel-track {
    position: relative;
    min-height: 150px;
}

.csat-card {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    animation: csatFadeIn 0.3s ease-out;
}

.section--light .csat-card,
.section:not(.section--navy):not(.section--light) .csat-card {
    background: #fff;
    border-color: var(--border-light);
    box-shadow: 0 2px 12px rgba(0, 55, 82, 0.06);
}

.csat-card--active {
    display: block;
}

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

.csat-quote-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-aqua);
    opacity: 0.55;
    margin-bottom: 12px;
}

.csat-card-comment {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px;
    font-style: italic;
}

.section--light .csat-card-comment,
.section:not(.section--navy):not(.section--light) .csat-card-comment {
    color: var(--text-primary);
}

.csat-card-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.section--light .csat-card-date,
.section:not(.section--navy):not(.section--light) .csat-card-date {
    color: var(--text-muted);
}

/* Counter */
.csat-counter {
    margin-top: 16px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.03em;
}

.section--light .csat-counter,
.section:not(.section--navy):not(.section--light) .csat-counter {
    color: var(--text-muted);
}

/* Skeleton loading */
.csat-ring-skeleton {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: csatPulse 1.5s ease-in-out infinite;
}

.section--light .csat-ring-skeleton,
.section:not(.section--navy):not(.section--light) .csat-ring-skeleton {
    background: rgba(0, 55, 82, 0.06);
}

.skeleton-line {
    height: 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    animation: csatPulse 1.5s ease-in-out infinite;
}

.section--light .skeleton-line,
.section:not(.section--navy):not(.section--light) .skeleton-line {
    background: rgba(0, 55, 82, 0.08);
}

.skeleton-line--lg { width: 140px; margin-bottom: 8px; }
.skeleton-line--sm { width: 100px; }

.csat-meta-skeleton {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
}

.csat-card-skeleton {
    height: 120px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    animation: csatPulse 1.5s ease-in-out infinite;
}

.section--light .csat-card-skeleton,
.section:not(.section--navy):not(.section--light) .csat-card-skeleton {
    background: rgba(0, 55, 82, 0.06);
}

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

/* Responsive */
@media (max-width: 768px) {
    .csat-widget {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .csat-score-block {
        flex-direction: row;
        gap: 24px;
        justify-content: center;
    }

    .csat-meta {
        text-align: left;
    }

    .csat-ring-wrap {
        width: 100px;
        height: 100px;
    }

    .csat-ring-number {
        font-size: 1.8rem;
    }

    .csat-ring-percent {
        font-size: 0.9rem;
    }

    .csat-ring-label {
        font-size: 0.5rem;
    }

    .csat-card {
        padding: 20px 24px;
    }

    .csat-carousel-header {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .csat-score-block {
        flex-direction: column;
    }

    .csat-meta {
        text-align: center;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .csat-ring-fill--animated {
        transition: none;
    }

    .csat-card {
        animation: none;
    }

    .csat-ring-skeleton,
    .skeleton-line,
    .csat-card-skeleton {
        animation: none;
    }
}

/* --- Noscript Fallback --- */
.no-js .fade-up,
.no-js .stagger > * {
    opacity: 1;
    transform: none;
}

/* --- Blog --- */

/* ---- List page ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Whole card is a single <a> */
a.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

a.blog-card:hover .blog-card__title {
    color: var(--baltic-blue);
}

a.blog-card:hover .blog-card__read-more {
    gap: 10px;
}

.blog-card__img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.blog-card__body {
    padding: 16px 20px 20px;
}

.blog-card__date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card__title {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.blog-card__summary {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--baltic-blue);
    transition: gap 0.25s ease;
}

.blog-card__read-more::after {
    content: '\2192';
}

/* ---- Single post ---- */
.blog-post__body {
    max-width: 720px;
    margin: 0 auto;
}

/* Featured image */
.blog-post__hero-img {
    margin: 0 0 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-post__hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video embed (front-matter) */
.blog-post__video {
    margin-bottom: 48px;
    padding: 24px 28px 28px;
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.blog-post__video-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-post__video-header svg {
    width: 18px;
    height: 18px;
    fill: var(--baltic-blue);
    flex-shrink: 0;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--text-dark);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- Blog post content — readability ---- */
.blog-post__content {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-body);
}

.blog-post__content > *:first-child {
    margin-top: 0;
}

.blog-post__content p {
    margin: 0 0 1em;
}

/* Headings — generous whitespace above */
.blog-post__content h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.8em 0 0.5em;
    line-height: 1.3;
}

.blog-post__content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.4em 0 0.4em;
    line-height: 1.35;
}

/* Lists */
.blog-post__content ul,
.blog-post__content ol {
    margin: 0 0 1em;
    padding-left: 1.4em;
}

.blog-post__content li {
    margin-bottom: 0.35em;
    padding-left: 0.3em;
}

.blog-post__content li::marker {
    color: var(--baltic-blue);
}

.blog-post__content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Blockquote */
.blog-post__content blockquote {
    border-left: 4px solid var(--accent-aqua);
    padding: 20px 28px;
    margin: 1.2em 0;
    background: var(--bg-subtle);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-muted);
}

.blog-post__content blockquote p:last-child {
    margin-bottom: 0;
}

/* Images in content */
.blog-post__content img {
    border-radius: var(--radius-md);
    margin: 1.2em 0;
    box-shadow: var(--shadow-md);
}

.blog-post__content figure {
    margin: 1.2em 0;
}

.blog-post__content figure img {
    margin: 0;
}

.blog-post__content figcaption {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}

/* Inline video embeds in markdown */
.blog-post__content .video-embed {
    margin: 1.2em 0;
}

/* Horizontal rules — section breakers */
.blog-post__content hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 1.8em 0;
}

/* Links */
.blog-post__content a {
    color: var(--baltic-blue);
    text-decoration: underline;
    text-decoration-color: rgba(44, 150, 236, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}

.blog-post__content a:hover {
    text-decoration-color: var(--baltic-blue);
}

/* Back link / footer */
.blog-post__footer {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid var(--border-light);
}

.blog-post__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--baltic-blue);
    text-decoration: none;
}

.blog-post__back:hover {
    color: var(--cobalt);
}

/* ---- Blog responsive ---- */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .blog-card__img img {
        height: 200px;
    }
    .blog-card__body {
        padding: 20px 24px 24px;
    }
    .blog-card__title {
        font-size: 1.1rem;
    }
    .blog-post__body {
        max-width: 100%;
    }
    .blog-post__content {
        font-size: 1.05rem;
    }
    .blog-post__content h2 {
        font-size: 1.35rem;
        margin-top: 2.2em;
    }
}

@media (max-width: 480px) {
    .blog-card__body {
        padding: 16px 20px 20px;
    }
    .blog-card__title {
        font-size: 1.1rem;
    }
    .blog-post__video {
        padding: 16px;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .card,
    .value-card,
    .btn-primary,
    .nav-cta,
    .cross-link {
        transition: none;
    }
    .card-link::after {
        transition: none;
    }
    .nav-links a::after {
        transition: none;
    }
    .hero-ring {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}
