/* ===================================================================
   NVSA RECRUITING — Premium Black & White Design System
   Accent: #003207
   =================================================================== */

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

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-accent: #003207;
    --color-accent-light: #003207e6;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    --color-gray-950: #0a0a0a;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

    --container-max: 1200px;
    --section-padding: 120px;
    --border-radius: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-gray-900);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ── TYPOGRAPHY ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 16px;
    padding: 8px 20px;
    border: 1.5px solid var(--color-accent);
    border-radius: 8px;
    background: transparent;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    max-width: 640px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 64px;
}

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 1px 2px rgba(0, 50, 7, 0.1);
}

.btn-primary:hover {
    background-color: #004a0b;
    box-shadow: 0 8px 24px rgba(0, 50, 7, 0.25);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-gray-900);
    border: 1.5px solid var(--color-gray-300);
}

.btn-secondary:hover {
    border-color: var(--color-gray-900);
    background-color: var(--color-gray-900);
    color: var(--color-white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ── NAVIGATION ───────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--color-gray-200);
    background: rgba(255, 255, 255, 0.95);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-600);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-gray-900);
}

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

.nav-cta {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: #004a0b;
    box-shadow: 0 4px 16px rgba(0, 50, 7, 0.2);
}

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

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-gray-900);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
    padding: 160px 0 100px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.hero-text {
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    padding: 8px 20px;
    border: 1.5px solid var(--color-accent);
    border-radius: 8px;
    background: transparent;
    margin-bottom: 28px;
    visibility: hidden;
    min-height: 33px;
}

.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--color-gray-950);
    margin-bottom: 24px;
}

.hero-headline em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

.hero-tagline {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--color-gray-500);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cards {
    position: relative;
    width: 320px;
    height: 220px;
    flex-shrink: 0;
}

.hero-card {
    position: absolute;
    width: 240px;
    padding: 18px 18px 16px;
    border: 1.5px solid rgba(0, 50, 7, 0.55);
    border-radius: var(--border-radius);
    background: var(--color-white);
    box-shadow:
        0 10px 34px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 50, 7, 0.18),
        0 18px 46px rgba(0, 50, 7, 0.12);
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroCardFloat 6.5s ease-in-out infinite;
    will-change: transform;
    display: block;
    cursor: pointer;
}

.hero-card:focus-visible {
    outline: 2px solid rgba(0, 50, 7, 0.55);
    outline-offset: 4px;
}

.hero-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 50, 7, 0.25),
        0 26px 68px rgba(0, 50, 7, 0.18);
}

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

@media (prefers-reduced-motion: reduce) {
    .hero-card {
        animation: none;
        transition: none;
    }
}

.hero-card:nth-child(1) {
    left: -80px;
    top: 120px;
    z-index: 2;
    animation-delay: 0.15s;
}

.hero-card:nth-child(2) {
    right: 0;
    top: 0;
    z-index: 1;
    animation-delay: 0.75s;
}

.hero-card-logo {
    width: 100%;
    height: 78px;
    object-fit: contain;
    margin: 2px auto 10px;
}

.hero-card-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* ── FOUNDER LETTER ───────────────────────────────────────────────── */
.founder-letter {
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

.founder-letter-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founder-letter .section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.founder-letter-text {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.9;
    margin-bottom: 36px;
}

.founder-toggle {
    cursor: pointer;
}

.founder-toggle-icon {
    transition: transform 0.3s ease;
}

.founder-toggle.active .founder-toggle-icon {
    transform: rotate(180deg);
}

.founder-full-letter {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.founder-full-letter.open {
    max-height: 2000px;
    opacity: 1;
    margin-top: 32px;
}

.founder-full-letter p {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: left;
}

.founder-full-letter p:last-child {
    margin-bottom: 0;
}

/* ── PHILOSOPHY ───────────────────────────────────────────────────── */
.philosophy {
    padding: 100px 0;
    background: var(--color-gray-950);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.philosophy-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.philosophy-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 3, 0.88);
    z-index: 1;
}

.philosophy .container {
    position: relative;
    z-index: 2;
}

.philosophy-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.philosophy .section-label {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.philosophy-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    margin: 0;
    padding: 0;
}

/* ── ABOUT ────────────────────────────────────────────────────────── */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.about .section-header {
    text-align: center;
}

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

.about-card {
    padding: 40px 32px;
    border: 1.5px solid var(--color-accent);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.about-card:hover {
    background: linear-gradient(135deg, #003207 0%, #00580e 50%, #003207 100%);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0, 50, 7, 0.3), 0 0 0 1px rgba(0, 88, 14, 0.3);
    transform: translateY(-8px) scale(1.02);
}

.about-card:hover h3 {
    color: var(--color-white);
}

.about-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.about-card h3 {
    margin-bottom: 12px;
    color: var(--color-gray-900);
}

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

/* ── SERVICES ─────────────────────────────────────────────────────── */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

.services .section-header {
    text-align: center;
}

.services .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.service-card {
    padding: 48px 40px;
    border-radius: 16px;
    border: 1.5px solid var(--color-accent);
    background: var(--color-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003207 0%, #00580e 50%, #003207 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 24px 64px rgba(0, 50, 7, 0.25);
    transform: translateY(-8px) scale(1.02);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover h3,
.service-card:hover .service-card-number {
    color: var(--color-white);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card:hover .service-list li {
    color: rgba(255, 255, 255, 0.85);
}

.service-card:hover .service-list li::before {
    background: var(--color-white);
}

.service-card-recruiting::before {
    opacity: 0;
    background: linear-gradient(135deg, rgba(0, 20, 3, 0.85) 0%, rgba(0, 50, 7, 0.8) 100%), url('Images/recruitment section .jpg') center center / cover no-repeat;
}

.service-card-recruiting:hover::before {
    opacity: 1;
}

.service-card-hcd::before {
    opacity: 0;
    background: linear-gradient(135deg, rgba(0, 20, 3, 0.85) 0%, rgba(0, 50, 7, 0.8) 100%), url('Images/recruitment section in services.jpg') center center / cover no-repeat;
}

.service-card-hcd:hover::before {
    opacity: 1;
}

.service-card-number {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(0, 50, 7, 0.15);
    border-radius: 6px;
    background: rgba(0, 50, 7, 0.04);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-500);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-list {
    margin-top: 8px;
}

.service-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: var(--color-gray-600);
    margin-bottom: 14px;
    line-height: 1.6;
    transition: var(--transition);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    transition: var(--transition);
}

/* ── PROCESS ──────────────────────────────────────────────────────── */
.process {
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

.process .section-header {
    text-align: center;
}

.process .section-subtitle {
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    width: max-content;
}

.carousel-slide {
    min-width: 260px;
    max-width: 260px;
    min-height: 260px;
    padding: 32px 24px;
    border: 1.5px solid var(--color-accent);
    border-radius: var(--border-radius);
    background: var(--color-white);
    margin: 0 28px;
    text-align: center;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.3;
}

.carousel-slide:nth-child(5n)::after {
    opacity: 0;
}

.carousel-slide:hover {
    background: linear-gradient(135deg, #003207 0%, #00580e 50%, #003207 100%);
    box-shadow: 0 12px 40px rgba(0, 50, 7, 0.25);
    border-color: var(--color-accent);
}

.carousel-slide:hover .carousel-number {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-slide:hover h3 {
    color: var(--color-white);
}

.carousel-slide:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.carousel-slide:hover::after {
    border-color: var(--color-white);
}

.carousel-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 50, 7, 0.06);
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border: 1.5px solid rgba(0, 50, 7, 0.15);
    transition: var(--transition);
}

.carousel-slide h3 {
    margin-bottom: 10px;
    color: var(--color-gray-900);
    font-size: 1.15rem;
    transition: var(--transition);
}

.carousel-slide p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.7;
    transition: var(--transition);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--color-accent);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* carousel responsive handled in main responsive section */

/* ── IMPACT / METRICS ─────────────────────────────────────────────── */
.impact {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.impact .section-header {
    text-align: center;
}

.impact .section-subtitle {
    margin: 0 auto;
}

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

.metric-card {
    padding: 36px 28px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--border-radius);
    background: var(--color-white);
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.metric-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    font-weight: 600;
    margin-bottom: 16px;
}

.metric-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-gray-900);
}

.metric-card p {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ── TEAM ─────────────────────────────────────────────────────────── */
.team {
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

.team .section-header {
    text-align: center;
}

.team .section-subtitle {
    margin: 0 auto;
}

.team-showcase {
    max-width: 860px;
    margin: 0 auto;
}

.team-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--color-gray-200);
}

.team-image-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.team-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name-plate h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
    color: var(--color-gray-900);
}

.team-name-plate .team-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-bio-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.team-highlight {
    padding: 24px 20px;
    border: 1.5px solid var(--color-accent);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.team-highlight:hover {
    background: linear-gradient(135deg, #003207 0%, #00580e 50%, #003207 100%);
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 50, 7, 0.15);
}

.team-highlight:hover .team-highlight-number {
    color: var(--color-white);
}

.team-highlight:hover .team-highlight-label {
    color: rgba(255, 255, 255, 0.7);
}

.team-highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: -0.03em;
    line-height: 1.1;
    transition: var(--transition);
}

.team-highlight-label {
    font-size: 0.7rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-top: 6px;
    display: block;
    transition: var(--transition);
}

.team-bio-col p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.8;
    margin-bottom: 14px;
}

.team-linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
    background: transparent;
    padding: 12px 28px;
    border-radius: 8px;
    margin-top: 20px;
    transition: var(--transition);
}

.team-linkedin-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* team-bio-highlights responsive handled in main responsive section */

/* ── WHY US ───────────────────────────────────────────────────────── */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--color-gray-950);
    color: var(--color-white);
}

.why-us .section-header {
    text-align: center;
}

.why-us-content {
    text-align: center;
    margin: 0 auto 72px;
}

.why-us .collab-header {
    text-align: center;
}

.why-us .section-label {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.why-us .section-title {
    color: var(--color-white);
}

.why-us-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 72px;
    text-align: center;
}

.why-us-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 16px;
}

.why-us-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.collab-header {
    margin-bottom: 48px;
}

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

.collab-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.collab-card {
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
}

.collab-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.collab-icon {
    color: var(--color-white);
    opacity: 0.6;
    margin-bottom: 20px;
}

.collab-card h4 {
    margin-bottom: 8px;
    color: var(--color-white);
    font-size: 1rem;
}

.collab-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.why-us-dropdown-wrap {
    text-align: center;
    margin-top: 48px;
}

.why-nvsa-toggle {
    cursor: pointer;
}

.why-nvsa-toggle-icon {
    transition: transform 0.3s ease;
}

.why-nvsa-toggle.active .why-nvsa-toggle-icon {
    transform: rotate(180deg);
}

.why-nvsa-content {
    max-width: 800px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.why-nvsa-content.open {
    max-height: 3000px;
    opacity: 1;
    margin-top: 32px;
}

.why-nvsa-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: left;
}

.why-nvsa-content p:last-child {
    margin-bottom: 0;
}

/* ── DELIVERABLES ─────────────────────────────────────────────────── */
.deliverables {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.deliverables .section-header {
    text-align: center;
}

.deliverables .section-subtitle {
    margin: 0 auto;
}

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

.deliverable-block {
    padding: 40px 32px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.deliverable-block:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.deliverable-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gray-100);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 16px;
}

.deliverable-block h3 {
    margin-bottom: 16px;
    color: var(--color-gray-900);
}

.deliverable-block p {
    font-size: 0.92rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ── STRATEGIC ────────────────────────────────────────────────────── */
.strategic {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.strategic .section-header {
    text-align: center;
}

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

.strategic-card {
    padding: 40px 32px;
    background: linear-gradient(135deg, #003207 0%, #00580e 50%, #003207 100%);
    border: none;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    color: var(--color-white);
}

.strategic-card h3 {
    color: var(--color-white);
}

.strategic-card p {
    color: rgba(255, 255, 255, 0.75);
}

.strategic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 50, 7, 0.3);
}

.strategic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--color-gray-50);
    border-radius: 50%;
    color: var(--color-accent);
}

.strategic-card h3 {
    margin-bottom: 12px;
    color: var(--color-white);
}

.strategic-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ── ENDORSEMENTS ─────────────────────────────────────────────────── */
.endorsements {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.endorsements .section-header {
    text-align: center;
}

.endorsements-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.endorsement-featured {
    width: 100%;
}

.endorsement-featured .endorsement-text {
    font-size: 0.95rem;
    line-height: 1.85;
}

.endorsements-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.endorsement-card {
    position: relative;
    padding: 48px 40px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--border-radius);
    background: var(--color-gray-50);
    transition: var(--transition);
    overflow: hidden;
}

.endorsement-card:hover {
    border-color: var(--color-gray-300);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.endorsement-quote-icon {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--color-gray-900);
}

.endorsement-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 32px;
}

.endorsement-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.endorsement-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.endorsement-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.endorsement-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-gray-900);
}

.endorsement-author span {
    font-size: 0.82rem;
    color: var(--color-gray-500);
}

/* ── CONTACT ──────────────────────────────────────────────────────── */
.contact {
    padding: var(--section-padding) 0;
    background: var(--color-gray-950);
}

.contact-inner {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.contact .section-label {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.contact .section-title {
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact .btn-primary {
    margin-bottom: 20px;
}

.contact-email {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

/* ── FOOTER ───────────────────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, #001a04 0%, #003207 40%, #00580e 70%, #003207 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-links-group {
    display: flex;
    gap: 64px;
}

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

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

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

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

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

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

/* ── PARTNER (below Deliverables, before Footer) ──────────────────── */
.partner {
    padding: 48px 0;
    background: var(--color-white);
    text-align: center;
}

.partner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.partner-title {
    margin-bottom: 0;
    color: var(--color-gray-900);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.partner-logo {
    display: inline-flex;
}

.partner-logo img {
    height: 80px;
    width: auto;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-watermark {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.05);
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    margin-top: -10px;
    overflow: hidden;
    max-height: 70px;
    pointer-events: none;
    user-select: none;
}

/* ── ANIMATIONS ───────────────────────────────────────────────────── */
.fade-in {
    opacity: 1;
    transform: none;
}

/* ── MOBILE CTA IN NAV (hidden on desktop) ───────────────────────── */
.nav-links-cta-mobile {
    display: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────── */

/* ── TABLET: 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-inner {
        gap: 36px;
    }

    .hero-cards {
        width: 280px;
        height: 200px;
    }

    .hero-card {
        width: 220px;
    }

    .hero-card:nth-child(1) {
        left: -44px;
        top: 110px;
    }

    .collab-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliverables-grid .deliverable-block:last-child {
        grid-column: 1 / -1;
    }

    .endorsements-row {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 40px 32px;
    }
}

/* ── TABLET SMALL / LARGE PHONE: 768px ──────────────────────────── */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .container {
        padding: 0 20px;
    }

    /* ── Nav ── */
    .nav-container {
        height: 68px;
    }

    .nav-logo img {
        height: 48px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 16px 20px;
        gap: 0;
        border-bottom: 1px solid var(--color-gray-200);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

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

    .nav-links.active li:last-child {
        border-bottom: none;
    }

    .nav-links.active a {
        font-size: 1rem;
        color: var(--color-gray-700);
    }

    /* Show Get in Touch inside mobile menu */
    .nav-links.active .nav-links-cta-mobile {
        display: list-item;
        padding-top: 16px;
        border-bottom: none;
    }

    .nav-links.active .nav-links-cta-mobile a {
        display: inline-block;
        background: var(--color-accent);
        color: var(--color-white);
        padding: 12px 28px;
        border-radius: 8px;
        font-weight: 500;
        text-align: center;
        width: 100%;
    }

    /* ── Hero ── */
    .hero {
        padding: 110px 0 60px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-headline {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero-tagline {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        justify-content: center;
        text-align: center;
    }

    .hero-cards {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }

    .hero-card {
        position: static;
        width: min(340px, 100%);
    }

    /* ── Section headers ── */
    .section-header {
        margin-bottom: 48px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* ── Philosophy ── */
    .philosophy {
        padding: 72px 0;
    }

    .philosophy-quote {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    }

    /* ── Founder Letter ── */
    .founder-letter-inner {
        max-width: 100%;
    }

    .founder-letter .section-title {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }

    .founder-letter-text {
        font-size: 0.95rem;
    }

    .founder-full-letter p {
        font-size: 0.95rem;
    }

    /* ── About ── */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 32px 24px;
    }

    /* ── Services ── */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 36px 24px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    /* ── Endorsements ── */
    .endorsements-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .endorsement-card {
        padding: 36px 28px;
    }

    .endorsement-featured .endorsement-text {
        font-size: 0.9rem;
    }

    .endorsement-text {
        font-size: 0.9rem;
    }

    /* ── Process / Carousel ── */
    .carousel-slide {
        min-width: 240px;
        max-width: 240px;
        min-height: 240px;
        padding: 28px 20px;
        margin: 0 12px;
    }

    .carousel-slide::after {
        right: -10px;
        width: 10px;
        height: 10px;
    }

    /* ── Impact / Metrics ── */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .metric-card {
        padding: 28px 20px;
    }

    .metric-value {
        font-size: 2.2rem;
    }

    /* ── Team ── */
    .team-bio-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-highlight {
        padding: 20px 16px;
    }

    .team-highlight-number {
        font-size: 1.5rem;
    }

    .team-bio-col p {
        font-size: 0.9rem;
    }

    .team-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .team-linkedin-btn {
        margin-top: 0;
        width: 100%;
        justify-content: center;
    }

    /* ── Partner ── */
    .partner {
        padding: 40px 0;
    }

    .partner-inner {
        gap: 20px;
        padding: 0 8px;
    }

    .partner-title {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        text-align: center;
        line-height: 1.4;
    }

    .partner-logo img {
        height: 56px;
    }

    /* ── Why Us / Collab ── */
    .collab-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .why-us-lead {
        font-size: 1.05rem;
    }

    .why-us-content {
        margin-bottom: 48px;
    }

    .why-nvsa-content p {
        font-size: 0.95rem;
    }

    /* ── Strategic ── */
    .strategic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .strategic-card {
        padding: 32px 24px;
    }

    /* ── Deliverables ── */
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deliverable-block {
        padding: 32px 24px;
    }

    /* ── Contact ── */
    .contact-inner {
        max-width: 100%;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    /* ── Footer ── */
    .footer {
        padding: 56px 0 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 36px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-group {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-col {
        min-width: 120px;
    }

    .footer-watermark {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }
}

/* ── SMALL PHONE: 480px ─────────────────────────────────────────── */
@media (max-width: 480px) {
    :root {
        --section-padding: 56px;
    }

    .container {
        padding: 0 16px;
    }

    /* ── Nav ── */
    .nav-container {
        height: 60px;
        padding: 0 16px;
    }

    .nav-logo img {
        height: 42px;
    }

    .nav-links.active {
        top: 60px;
        padding: 12px 16px;
    }

    /* ── Hero ── */
    .hero {
        padding: 96px 0 48px;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 8vw, 2.2rem);
    }

    .hero-tagline {
        font-size: 0.92rem;
        margin-bottom: 32px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-cta .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    /* ── Section headers ── */
    .section-header {
        margin-bottom: 36px;
    }

    .section-label {
        font-size: 0.68rem;
        padding: 6px 14px;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    /* ── Philosophy ── */
    .philosophy {
        padding: 56px 0;
    }

    .philosophy-quote {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    /* ── Founder Letter ── */
    .founder-letter-text {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .founder-full-letter p {
        font-size: 0.9rem;
    }

    .founder-toggle {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    /* ── About ── */
    .about-card {
        padding: 28px 20px;
    }

    .about-card h3 {
        font-size: 1.1rem;
    }

    .about-card p {
        font-size: 0.88rem;
    }

    /* ── Services ── */
    .service-card {
        padding: 28px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.88rem;
    }

    .service-list li {
        font-size: 0.88rem;
        margin-bottom: 10px;
    }

    /* ── Endorsements ── */
    .endorsement-card {
        padding: 28px 20px;
    }

    .endorsement-featured .endorsement-text {
        font-size: 0.88rem;
    }

    .endorsement-text {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }

    .endorsement-author strong {
        font-size: 0.88rem;
    }

    .endorsement-author span {
        font-size: 0.78rem;
    }

    /* ── Carousel ── */
    .carousel-slide {
        min-width: 220px;
        max-width: 220px;
        min-height: 220px;
        padding: 24px 16px;
        margin: 0 8px;
    }

    .carousel-slide::after {
        right: -7px;
        width: 8px;
        height: 8px;
    }

    .carousel-number {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .carousel-slide h3 {
        font-size: 1rem;
    }

    .carousel-slide p {
        font-size: 0.82rem;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }

    /* ── Impact / Metrics ── */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .metric-value {
        font-size: 2rem;
    }

    .metric-card h3 {
        font-size: 1rem;
    }

    .metric-card p {
        font-size: 0.82rem;
    }

    /* ── Team ── */
    .team-bio-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-highlight {
        padding: 16px 12px;
    }

    .team-highlight-number {
        font-size: 1.4rem;
    }

    .team-bio-col p {
        font-size: 0.88rem;
    }

    .team-image-col {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .team-name-plate h3 {
        font-size: 1.15rem;
    }

    .team-footer {
        align-items: center;
        text-align: center;
    }

    .team-linkedin-btn {
        font-size: 0.85rem;
        padding: 12px 24px;
    }

    /* ── Partner ── */
    .partner {
        padding: 32px 0;
    }

    .partner-inner {
        gap: 16px;
    }

    .partner-title {
        font-size: clamp(1rem, 5vw, 1.2rem);
    }

    .partner-logo img {
        height: 48px;
    }

    /* ── Why Us / Collab ── */
    .collab-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .collab-card {
        padding: 20px 16px;
    }

    .collab-card h4 {
        font-size: 0.95rem;
    }

    .collab-card p {
        font-size: 0.82rem;
    }

    .why-us-lead {
        font-size: 0.95rem;
    }

    .why-us-content {
        margin-bottom: 36px;
    }

    .why-nvsa-content p {
        font-size: 0.9rem;
    }

    .why-nvsa-toggle {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    .why-us-dropdown-wrap {
        margin-top: 32px;
    }

    /* ── Strategic ── */
    .strategic-card {
        padding: 28px 20px;
    }

    .strategic-card h3 {
        font-size: 1.1rem;
    }

    .strategic-card p {
        font-size: 0.85rem;
    }

    /* ── Deliverables ── */
    .deliverable-block {
        padding: 28px 20px;
    }

    .deliverable-number {
        font-size: 2.2rem;
    }

    .deliverable-block h3 {
        font-size: 1.1rem;
    }

    .deliverable-block p {
        font-size: 0.85rem;
    }

    /* ── Contact ── */
    .contact .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .contact-subtitle {
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 0.92rem;
        width: 100%;
        justify-content: center;
    }

    /* ── Footer ── */
    .footer {
        padding: 40px 0 0;
    }

    .footer-top {
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer-logo {
        height: 48px;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-links-group {
        gap: 24px;
    }

    .footer-col h4 {
        font-size: 0.72rem;
        margin-bottom: 14px;
    }

    .footer-col ul a,
    .footer-text {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }

    .footer-watermark {
        font-size: clamp(2rem, 10vw, 4rem);
        max-height: 50px;
    }
}
