/* ─── CSS Custom Properties (Design Tokens) ─────────────────── */
:root {
    --background: 210 30% 99%;
    --foreground: 215 25% 20%;
    --card: 0 0% 100%;
    --card-foreground: 215 25% 20%;
    --primary: 186 25% 58%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 2% 93%;
    --secondary-foreground: 215 25% 20%;
    --muted: 288 24% 94%;
    --muted-foreground: 215 12% 48%;
    --accent: 186 41% 55%;
    --accent-foreground: 0 0% 100%;
    --border: 288 15% 90%;
    --input: 288 15% 90%;
    --ring: 186 25% 58%;
    --radius: 0.5rem;
    --hero-overlay: 215 30% 14%;
    --section-dark: 215 30% 18%;
    --section-warm-from: 0 2% 93%;
    --section-warm-to: 288 24% 94%;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-color: hsl(var(--border));
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

p {
    line-height: 1.8;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

/* ─── Container ──────────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.container-narrow {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) { .container-narrow { padding: 0 1.5rem; } }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
}

.btn-outline:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 0.875rem;
}

.btn-hero-outline {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 0.875rem;
    backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
    background: white;
    color: hsl(var(--foreground));
}

.btn-white-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
}

.btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
}

.btn .arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
}

.nav--transparent {
    background: transparent;
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

@media (min-width: 640px) { .nav__inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav__inner { padding: 0 2rem; } }

.nav__logo img {
    height: 2.25rem;
    transition: all 0.5s ease;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav__links { display: flex; }
}

.nav__link {
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.nav--transparent .nav__link {
    color: rgba(255, 255, 255, 0.8);
}

.nav--transparent .nav__link:hover {
    color: white;
}

.nav--scrolled .nav__link {
    color: hsl(var(--foreground) / 0.7);
}

.nav--scrolled .nav__link:hover {
    color: hsl(var(--primary));
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: none;
    border: none;
    transition: color 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.nav--transparent .nav__dropdown-trigger {
    color: rgba(255, 255, 255, 0.8);
}

.nav--transparent .nav__dropdown-trigger:hover {
    color: white;
}

.nav--scrolled .nav__dropdown-trigger {
    color: hsl(var(--foreground) / 0.7);
}

.nav--scrolled .nav__dropdown-trigger:hover {
    color: hsl(var(--primary));
}

.nav__dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav__dropdown:hover .nav__dropdown-icon {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 14rem;
    background: white;
    border: 1px solid hsl(var(--border) / 0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.2s ease;
    z-index: 50;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground) / 0.8);
    border-bottom: 1px solid hsl(var(--border) / 0.3);
    transition: all 0.2s ease;
}

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

.nav__dropdown-item:hover {
    background-color: hsl(var(--secondary));
    color: hsl(var(--primary));
}

.nav__contact-btn {
    margin-left: 1.5rem;
}

.nav--transparent .nav__contact-btn .btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(8px);
}

.nav--transparent .nav__contact-btn .btn:hover {
    background: white;
    color: hsl(var(--foreground));
}

/* Mobile menu button */
.nav__mobile-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    color: white;
    transition: color 0.3s;
}

.nav--scrolled .nav__mobile-toggle {
    color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
    .nav__mobile-toggle { display: none; }
}

.nav__mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile menu */
.nav__mobile {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid hsl(var(--border) / 0.5);
    background: white;
    border-radius: 0 0 0.5rem 0.5rem;
}

.nav__mobile.is-open {
    display: block;
}

@media (min-width: 1024px) {
    .nav__mobile { display: none !important; }
}

.nav__mobile-group {
    margin-bottom: 1.25rem;
}

.nav__mobile-label {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--muted-foreground));
    font-family: 'DM Sans', sans-serif;
}

.nav__mobile-link {
    display: block;
    padding: 0.625rem 2rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground) / 0.8);
    transition: all 0.2s ease;
}

.nav__mobile-link:hover {
    color: hsl(var(--primary));
    background: hsl(var(--secondary));
}

.nav__mobile-link--top {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--foreground) / 0.8);
}

.nav__mobile-link--top:hover {
    color: hsl(var(--primary));
}

.nav__mobile-cta {
    padding: 0 1rem;
    margin-top: 1.5rem;
}

.nav__mobile-cta .btn {
    width: 100%;
}

/* ─── Hero Sections ──────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

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

.hero--home .hero__bg img {
    animation: hero-ken-burns 25s ease-in-out infinite alternate;
}

.hero--page .hero__bg img {
    transform: scale(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        hsl(var(--hero-overlay) / 85%),
        hsl(var(--hero-overlay) / 60%),
        hsl(var(--hero-overlay) / 30%)
    );
}

.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--hero-overlay) / 40%), transparent);
}

.hero--page .hero__overlay {
    background: linear-gradient(
        to right,
        hsl(var(--hero-overlay) / 80%),
        hsl(var(--hero-overlay) / 55%),
        hsl(var(--hero-overlay) / 25%)
    );
}

.hero--page .hero__overlay::after {
    background: linear-gradient(to top, hsl(var(--hero-overlay) / 30%), transparent);
}

.hero__content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 640px) { .hero__content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .hero__content { padding: 0 2rem; } }

.hero__inner {
    max-width: 48rem;
}

.hero__label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out 0.2s forwards;
}

.hero__label-line {
    width: 2.5rem;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.hero__label-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 6px rgba(0,0,0,0.3);
    font-family: 'DM Sans', sans-serif;
}

@media (min-width: 768px) { .hero__label-text { font-size: 1rem; } }

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.05;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 6px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.4s forwards;
}

@media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 4.5rem; } }

.hero--page .hero__title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 0;
}

@media (min-width: 768px) { .hero--page .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero--page .hero__title { font-size: 3.75rem; } }

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 42rem;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 6px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fade-in-up 0.7s ease-out 0.7s forwards;
}

@media (min-width: 768px) { .hero__subtitle { font-size: 1.25rem; } }

.hero--page .hero__subtitle {
    margin-top: 1.5rem;
    animation-delay: 0.4s;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out 1.0s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fade-in-up 0.5s ease-out 1.5s forwards;
}

.hero__scroll-text {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'DM Sans', sans-serif;
}

.hero__scroll-line {
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

/* ─── Sections ───────────────────────────────────────────────── */
.section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

@media (min-width: 768px) { .section { padding: 9rem 0; } }

.section--dark {
    background-color: hsl(var(--section-dark));
    color: white;
}

.section--warm {
    background: linear-gradient(135deg, hsl(var(--section-warm-from)), hsl(var(--section-warm-to)));
}

.section--bg {
    background-color: hsl(var(--background));
}

/* ─── Section Header ─────────────────────────────────────────── */
.section-header {
    margin-bottom: 5rem;
}

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

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.section--dark .section-label {
    color: hsl(var(--primary));
}

.section-header__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) { .section-header__title { font-size: 3rem; } }

.section--dark .section-header__title {
    color: white;
}

.section-header__line {
    width: 3rem;
    height: 2px;
    background: hsl(var(--primary));
    margin-top: 1rem;
}

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

.section-header__description {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 300;
    color: hsl(var(--muted-foreground));
    max-width: 48rem;
    margin-top: 1.5rem;
}

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

.section--dark .section-header__description {
    color: rgba(255,255,255,0.6);
}

/* ─── Grid Layouts ───────────────────────────────────────────── */
.grid {
    display: grid;
    gap: 0;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.grid--bordered {
    border: 1px solid hsl(var(--border));
}

.grid--bordered > * {
    border-bottom: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
    .grid--bordered > * {
        border-right: 1px solid hsl(var(--border));
        border-bottom: 1px solid hsl(var(--border));
    }
    .grid--bordered.grid--2 > *:nth-child(2n) { border-right: none; }
    .grid--bordered.grid--3 > *:nth-child(3n) { border-right: none; }
    .grid--bordered.grid--4 > *:nth-child(2n) { border-right: none; }
}

@media (min-width: 1024px) {
    .grid--bordered.grid--4 > * { border-right: 1px solid hsl(var(--border)); }
    .grid--bordered.grid--4 > *:nth-child(4n) { border-right: none; }
}

/* Remove bottom borders from last row */
.grid--bordered.grid--3 > *:nth-last-child(-n+3) { border-bottom: none; }
.grid--bordered.grid--4 > *:nth-last-child(-n+4) { border-bottom: none; }

/* Dark section bordered grids */
.section--dark .grid--bordered {
    border-color: rgba(255,255,255,0.1);
}

.section--dark .grid--bordered > * {
    border-color: rgba(255,255,255,0.1);
}

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
    padding: 2.5rem;
}

.card--bordered {
    border: 1px solid hsl(var(--border));
}

.section--dark .card--bordered {
    border-color: rgba(255,255,255,0.1);
}

.card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section--dark .card__title {
    color: white;
}

.card__text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

.section--dark .card__text {
    color: rgba(255,255,255,0.6);
}

/* ─── Two Column Layout ──────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col { grid-template-columns: repeat(2, 1fr); gap: 6rem; }
}

.two-col--reverse .two-col__image {
    order: 2;
}

.two-col--reverse .two-col__content {
    order: 1;
}

@media (max-width: 1023px) {
    .two-col--reverse .two-col__image { order: 2; }
    .two-col--reverse .two-col__content { order: 1; }
}

.two-col__content .section-header__title {
    font-size: 1.875rem;
}

@media (min-width: 768px) { .two-col__content .section-header__title { font-size: 2.25rem; } }

.two-col__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.two-col__image--accent {
    position: relative;
}

.two-col__image--accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: hsl(var(--primary));
}

/* ─── Pillar Cards ───────────────────────────────────────────── */
.pillar__line {
    width: 2.5rem;
    height: 2px;
    background: hsl(var(--primary));
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    transition: width 0.5s ease;
}

.card:hover .pillar__line {
    width: 3.5rem;
}

.pillar__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    line-height: 1.3;
}

.pillar__subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--primary));
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* ─── Bullet Lists ───────────────────────────────────────────── */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.375rem 0;
}

.bullet-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: hsl(var(--primary));
    flex-shrink: 0;
}

.bullet-list--lg li {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-weight: 300;
    padding: 0.5rem 0;
    align-items: flex-start;
}

.bullet-list--lg li::before {
    width: 8px;
    height: 8px;
    margin-top: 0.625rem;
}

.bullet-list--sm li {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ─── Step Indicator ─────────────────────────────────────────── */
.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: hsl(var(--primary));
    flex-shrink: 0;
}

.step-line {
    flex: 1;
    height: 1px;
    background: hsl(var(--border));
}

.section--dark .step-line {
    background: rgba(255,255,255,0.1);
}

/* ─── Person / Team Cards ────────────────────────────────────── */
.person-card {
    overflow: hidden;
}

.person-card__image {
    overflow: hidden;
    margin-bottom: 1rem;
}

.person-card__image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.person-card:hover .person-card__image img {
    transform: scale(1.05);
}

.person-card__name {
    font-size: 1.125rem;
    font-weight: 600;
}

.person-card__role {
    font-size: 0.875rem;
    color: hsl(var(--primary));
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}

.person-card__bio {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* People grid */
.people-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) { .people-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .people-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .people-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── Accordion / FAQ ────────────────────────────────────────── */
.accordion {
    max-width: 48rem;
}

.accordion__item {
    border-bottom: 1px solid hsl(var(--border));
}

.accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    background: none;
    border: none;
    color: inherit;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion__trigger:hover {
    color: hsl(var(--primary));
}

.accordion__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion__item.is-open .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion__item.is-open .accordion__content {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.accordion__content p {
    color: hsl(var(--muted-foreground));
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ─── Contact Form ───────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid hsl(var(--input));
    background: white;
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Info Box ───────────────────────────────────────────────── */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 1px solid hsl(var(--border));
}

.section--dark .info-box {
    border-color: rgba(255,255,255,0.1);
}

.info-box--secondary {
    background: hsl(var(--secondary));
    border: none;
    padding: 1.5rem;
}

.info-box__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: hsl(var(--primary));
}

.section--dark .info-box__icon {
    color: rgba(255,255,255,0.5);
}

.info-box__text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.section--dark .info-box__text {
    color: rgba(255,255,255,0.5);
}

/* ─── Full Width Image ───────────────────────────────────────── */
.full-width-image {
    width: 100%;
}

.full-width-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .full-width-image img { height: 600px; }
}

/* ─── Job Listing ────────────────────────────────────────────── */
.job-list {
    border: 1px solid hsl(var(--border));
}

.job-item {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid hsl(var(--border));
    transition: background 0.3s ease;
}

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

.job-item:hover {
    background: hsl(var(--secondary) / 0.5);
}

@media (min-width: 768px) {
    .job-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.job-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--muted-foreground));
    font-family: 'DM Sans', sans-serif;
}

.job-item__meta span + span::before {
    content: '·';
    margin-right: 1rem;
}

/* ─── Download List ──────────────────────────────────────────── */
.download-list {
    border: 1px solid hsl(var(--border));
}

.download-item {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid hsl(var(--border));
    transition: background 0.3s ease;
}

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

.download-item:hover {
    background: hsl(var(--secondary) / 0.5);
}

.download-item__name {
    font-weight: 600;
}

.download-item__meta {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* ─── Strategy Number ────────────────────────────────────────── */
.strategy-num {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--primary) / 0.4);
    margin-bottom: 0.75rem;
    display: block;
    font-family: 'Playfair Display', serif;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
    position: relative;
    background-color: hsl(var(--section-dark));
    color: white;
    overflow: hidden;
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 640px) { .footer__inner { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .footer__inner { padding: 5rem 2rem; } }

.footer__partners {
    margin-bottom: 5rem;
    text-align: center;
}

.footer__partners-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2.5rem;
    font-family: 'DM Sans', sans-serif;
}

.footer__partners img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer__grid { grid-template-columns: repeat(4, 1fr); }
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 1.25rem;
}

.footer__logo img {
    height: 2.5rem;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
    font-family: 'DM Sans', sans-serif;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: hsl(var(--primary));
}

.footer__links .footer-cta {
    color: hsl(var(--primary));
    margin-top: 1.25rem;
}

.footer__links .footer-cta:hover {
    color: hsl(var(--primary) / 0.8);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
    .footer__bottom { flex-direction: row; justify-content: space-between; }
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: hsl(var(--primary));
}

/* ─── Comparison Table ───────────────────────────────────────── */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
    .comparison-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .comparison-grid { grid-template-columns: repeat(4, 1fr); }
}

.comparison-card {
    padding: 2rem;
    border-bottom: 1px solid hsl(var(--border));
    border-right: 1px solid hsl(var(--border));
}

.comparison-card--highlight {
    background: hsl(var(--primary) / 0.05);
    border-color: hsl(var(--primary) / 0.2);
}

.comparison-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-card--highlight .comparison-card__title {
    color: hsl(var(--primary));
}

/* ─── Icon (SVG inline utility) ──────────────────────────────── */
.icon {
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--primary));
}

.icon--center {
    margin: 0 auto 1rem;
}

/* ─── Video Section ──────────────────────────────────────────── */
.video-section video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* ─── Scaffold Images Grid ───────────────────────────────────── */
.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .image-grid { grid-template-columns: repeat(2, 1fr); }
}

.image-grid img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ─── Utility Classes ────────────────────────────────────────── */
.text-primary { color: hsl(var(--primary)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-white { color: white; }
.text-white-60 { color: rgba(255,255,255,0.6); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-relaxed { line-height: 1.7; }
.leading-tight { line-height: 1.15; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.w-full { width: 100%; }

.hidden { display: none; }
@media (min-width: 768px) { .md-block { display: block; } }

/* ─── Animations & Keyframes ─────────────────────────────────── */
@keyframes hero-ken-burns {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.06) translate(-0.5%, -0.3%); }
    100% { transform: scale(1.03) translate(0.3%, 0.2%); }
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="5"] { transition-delay: 0.5s; }

/* Hover lift */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px hsl(var(--foreground) / 0.08);
}

/* Section transition hover on cards */
.card--hoverable {
    transition: background-color 0.5s ease;
}

.card--hoverable:hover {
    background-color: hsl(var(--secondary));
}

/* ─── Logo display box ───────────────────────────────────────── */
.logo-display {
    display: inline-block;
    border: 1px solid hsl(var(--border));
    padding: 2.5rem;
    margin-bottom: 1rem;
}

.logo-display img {
    height: 3.5rem;
}

@media (min-width: 768px) {
    .logo-display img { height: 4rem; }
}
