/* ==========================================================================
   Self-hosted fonts (DSGVO compliant – no Google CDN requests)
   ========================================================================== */

@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/playfair.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/playfair-500.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/playfair-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/playfair-700.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/playfair-italic.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 500; font-display: swap; src: url('fonts/playfair-500i.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/inter-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/inter.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/inter-600.woff2') format('woff2'); }

/* ==========================================================================
   Anker Intensiv Ambulante Pflege
   Color palette derived from logo: Teal #0D8E8C
   ========================================================================== */

:root {
    --teal-900: #064e4a;
    --teal-800: #096b66;
    --teal-700: #0b7f7a;
    --teal-600: #0d8e8c;
    --teal-500: #10a09d;
    --teal-400: #30b5b2;
    --teal-300: #5fcfcc;
    --teal-200: #9de4e2;
    --teal-100: #ccf2f1;
    --teal-50: #edf9f9;

    --neutral-900: #1a1d21;
    --neutral-800: #2d3138;
    --neutral-700: #434850;
    --neutral-600: #5a5f68;
    --neutral-500: #767b84;
    --neutral-400: #9ca1a9;
    --neutral-300: #c4c8cd;
    --neutral-200: #e2e4e7;
    --neutral-100: #f2f3f5;
    --neutral-50: #f9fafb;

    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-700);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--teal-200);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

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

.section-desc {
    font-size: 17px;
    color: var(--neutral-600);
    max-width: 580px;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-600);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(13, 142, 140, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

.btn-white {
    background: var(--white);
    color: var(--teal-700);
}

.btn-white:hover {
    background: var(--teal-50);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.35s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: height 0.35s ease, opacity 0.35s ease;
}

.nav.scrolled .nav-logo img {
    height: 56px;
}

/* White logo visible by default (over hero), color logo hidden */
.nav-logo-color {
    display: none;
}

.nav.scrolled .nav-logo-white {
    display: none;
}

.nav.scrolled .nav-logo-color {
    display: block;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--neutral-700);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--teal-400);
}

.nav.scrolled .nav-links a:not(.nav-cta):hover {
    color: var(--teal-600);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--teal-600);
    color: var(--white) !important;
    border-radius: 50px;
    font-size: 14px;
    transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
}

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

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

.nav.scrolled .nav-toggle span {
    background: var(--neutral-800);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    animation: heroKenBurns 25s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6,78,74,0.88) 0%, rgba(11,127,122,0.82) 40%, rgba(13,142,140,0.78) 70%, rgba(16,160,157,0.75) 100%);
    z-index: 1;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-2%, -1.5%);
    }
}

/* Hero waves & glow */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 2;
}

.hero-wave-1 {
    animation: waveFloat 8s ease-in-out infinite;
}

.hero-wave-2 {
    animation: waveFloat 10s ease-in-out infinite reverse;
    opacity: 0.7;
}

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

.hero-anchor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    animation: glowPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-fade {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--white) 0%, rgba(255,255,255,0.6) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-200);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.05em;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ==========================================================================
   Trust
   ========================================================================== */

.trust {
    position: relative;
    z-index: 3;
    margin-top: -64px;
    padding: 0 0 80px;
    background: transparent;
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 8px 24px;
}

.trust-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-50);
    color: var(--teal-600);
    margin: 0 auto 16px;
}

.trust-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 700;
    color: var(--teal-700);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.5;
}

.trust-divider {
    width: 1px;
    height: 72px;
    background: var(--neutral-200);
    flex-shrink: 0;
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    background: var(--teal-100);
    z-index: -1;
}

.about-content p {
    color: var(--neutral-600);
    margin-bottom: 16px;
}

.about-lead {
    font-size: 17px;
    color: var(--neutral-800) !important;
    font-weight: 400;
    line-height: 1.8;
}

.about-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--neutral-200);
}

.signature-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
}

.signature-title {
    font-size: 14px;
    color: var(--neutral-500);
}

/* ==========================================================================
   Image Break
   ========================================================================== */

.image-break {
    padding: 0;
}

.image-break-inner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.image-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,78,74,0.8) 0%, rgba(13,142,140,0.7) 100%);
}

.image-break-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
}

.image-break-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}

.image-break-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
    padding: 120px 0;
    background: var(--neutral-50);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--neutral-200);
    transition: all 0.4s ease;
}

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

.service-card-featured {
    background: linear-gradient(145deg, var(--teal-600), var(--teal-800));
    border: none;
    color: var(--white);
}

.service-card-featured:hover {
    box-shadow: 0 16px 48px rgba(13, 142, 140, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--teal-50);
    color: var(--teal-600);
    margin-bottom: 24px;
}

.service-card-featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.service-card-featured .service-title {
    color: var(--white);
}

.service-desc {
    font-size: 15px;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

.service-card-featured .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    font-size: 14px;
    color: var(--neutral-600);
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-400);
}

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

.service-card-featured .service-list li::before {
    background: var(--teal-200);
}

/* ==========================================================================
   Quality
   ========================================================================== */

.quality {
    padding: 120px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.quality-content p {
    font-size: 17px;
    color: var(--neutral-600);
    line-height: 1.8;
}

.quality-image {
    margin-top: 28px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.quality-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.quality-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--teal-50);
    color: var(--teal-600);
}

.quality-feature h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.quality-feature p {
    font-size: 14px;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* ==========================================================================
   Audience
   ========================================================================== */

.audience {
    padding: 120px 0;
    background: var(--neutral-50);
}

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

.audience-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: all 0.4s ease;
}

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

.audience-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-50);
    color: var(--teal-600);
    margin: 0 auto 24px;
}

.audience-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.audience-card p {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ==========================================================================
   Process (So funktioniert's)
   ========================================================================== */

.process {
    padding: 120px 0;
    background: var(--neutral-50);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.process-number {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal-400);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.process-line {
    display: none;
}

/* Connector line between steps */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 72px;
    right: -4px;
    width: calc(50% + 8px);
    height: 2px;
    background: var(--teal-200);
}

.process-step:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 72px;
    left: -4px;
    width: calc(50% + 8px);
    height: 2px;
    background: var(--teal-200);
}

.process-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--teal-600);
    border: 2px solid var(--teal-200);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.process-step:hover .process-icon {
    background: var(--teal-600);
    color: var(--white);
    border-color: var(--teal-600);
    transform: scale(1.08);
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
    padding: 120px 0;
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #f5a623;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--neutral-700);
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-100);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-800);
}

.testimonial-role {
    font-size: 12px;
    color: var(--neutral-500);
}

/* ==========================================================================
   Contact Map
   ========================================================================== */

.contact-map {
    margin-top: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
}

.contact-map iframe {
    display: block;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 220px;
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    color: var(--teal-600);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    padding: 24px;
}

.map-placeholder:hover {
    background: var(--teal-50);
    color: var(--teal-700);
}

.map-placeholder span {
    font-size: 15px;
    font-weight: 600;
}

.map-placeholder small {
    font-size: 11px;
    color: var(--neutral-500);
    max-width: 240px;
    line-height: 1.4;
}

/* ==========================================================================
   Career
   ========================================================================== */

.career {
    padding: 120px 0;
}

.career-inner {
    background: linear-gradient(145deg, var(--teal-800), var(--teal-600));
    border-radius: var(--radius-xl);
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.career-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.career-inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
}

.career-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.career-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.career-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.career-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.career-perk svg {
    color: var(--teal-300);
    flex-shrink: 0;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
    padding: 120px 0;
    background: var(--neutral-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 17px;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: start;
    gap: 16px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--teal-50);
    color: var(--teal-600);
}

.contact-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 15px;
    color: var(--neutral-800);
}

.contact-detail a:hover {
    color: var(--teal-600);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--neutral-500);
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--neutral-800);
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 142, 140, 0.08);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a5f68' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-privacy {
    font-size: 12px;
    color: var(--neutral-500);
    margin-top: 16px;
    text-align: center;
}

.form-privacy a {
    color: var(--teal-600);
    text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 80px 0 0;
    background: var(--neutral-900);
    color: var(--neutral-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 72px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neutral-500);
    max-width: 300px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-300);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--neutral-500);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--teal-400);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--neutral-600);
}

/* ==========================================================================
   Section CTAs
   ========================================================================== */

.section-cta {
    text-align: center;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--neutral-200);
}

.section-cta-text {
    font-size: 17px;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

/* ==========================================================================
   Sticky Mobile CTA Bar
   ========================================================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    display: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--neutral-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--teal-600);
    color: var(--teal-700);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.sticky-cta-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 50px;
    background: var(--teal-600);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.sticky-cta-main:hover {
    background: var(--teal-700);
}

@media (max-width: 768px) {
    .sticky-cta { display: flex; }
    .footer { padding-bottom: 80px; }
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-page {
    padding: 120px 0 80px;
    min-height: 70vh;
}

.legal-page h1 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-page h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-800);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page p {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 12px;
    max-width: 720px;
}

.legal-page a {
    color: var(--teal-600);
}

.legal-page a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Assessment Modal
   ========================================================================== */

.assess-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 20, 20, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.assess-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.assess-modal {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 44px 40px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s ease;
}

.assess-overlay.active .assess-modal {
    transform: translateY(0) scale(1);
}

.assess-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: var(--neutral-100);
    color: var(--neutral-600);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.assess-close:hover {
    background: var(--neutral-200);
    color: var(--neutral-900);
}

/* Progress */
.assess-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neutral-100);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.assess-progress-bar {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
    border-radius: 0 3px 3px 0;
    transition: width 0.4s ease;
}

/* Steps */
.assess-step {
    display: none;
}

.assess-step.active {
    display: block;
}

.assess-step.slide-in-right {
    animation: assessSlideIn 0.35s ease;
}

@keyframes assessSlideIn {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

.assess-step-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}

.assess-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.assess-desc {
    font-size: 15px;
    color: var(--neutral-500);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Options (single select cards) */
.assess-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.assess-option {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 20px;
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    transition: all 0.25s ease;
}

.assess-option:hover {
    border-color: var(--teal-300);
    background: var(--teal-50);
}

.assess-option.selected {
    border-color: var(--teal-500);
    background: var(--teal-50);
    box-shadow: 0 0 0 3px rgba(13, 142, 140, 0.1);
}

.assess-option-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--teal-600);
    border: 1px solid var(--neutral-200);
    transition: all 0.25s;
}

.assess-option:hover .assess-option-icon,
.assess-option.selected .assess-option-icon {
    background: var(--teal-600);
    color: var(--white);
    border-color: var(--teal-600);
}

.assess-option-icon-urgent {
    color: #c75000;
}

.assess-option:hover .assess-option-icon-urgent,
.assess-option.selected .assess-option-icon-urgent {
    background: #c75000;
    border-color: #c75000;
}

.assess-option strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 2px;
}

.assess-option span {
    font-size: 13px;
    color: var(--neutral-500);
}

.assess-option-compact {
    padding: 14px 18px;
}

.assess-option-compact .assess-option-icon {
    width: 40px;
    height: 40px;
}

/* Checkboxes */
.assess-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.assess-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    color: var(--neutral-800);
    transition: all 0.2s;
}

.assess-check:hover {
    border-color: var(--teal-300);
    background: var(--teal-50);
}

.assess-check input {
    display: none;
}

.assess-check-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--neutral-300);
    background: var(--white);
    position: relative;
    transition: all 0.2s;
}

.assess-check input:checked ~ .assess-check-box {
    background: var(--teal-600);
    border-color: var(--teal-600);
}

.assess-check input:checked ~ .assess-check-box::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.assess-check:has(input:checked) {
    border-color: var(--teal-400);
    background: var(--teal-50);
}

/* Next button for checkbox steps */
.assess-next-btn {
    margin-bottom: 8px;
}

/* Back button */
.assess-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    padding: 8px 0;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--neutral-500);
    cursor: pointer;
    transition: color 0.2s;
}

.assess-back:hover {
    color: var(--teal-600);
}

/* Form inside modal */
.assess-form .form-group {
    margin-bottom: 16px;
}

.assess-form .form-group textarea {
    min-height: 70px;
}

/* Success */
.assess-success {
    text-align: center;
    padding: 20px 0;
}

.assess-success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-50);
    color: var(--teal-600);
    margin: 0 auto 24px;
}

.assess-success .assess-title {
    margin-bottom: 12px;
}

.assess-success .assess-desc {
    margin-bottom: 8px;
}

.assess-success-hint {
    font-size: 13px;
    color: var(--neutral-500);
    margin-bottom: 32px;
}

/* ==========================================================================
   Animations
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.quality-feature.reveal:nth-child(2) { transition-delay: 0.1s; }
.quality-feature.reveal:nth-child(3) { transition-delay: 0.2s; }
.quality-feature.reveal:nth-child(4) { transition-delay: 0.3s; }

.audience-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.audience-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.process-step.reveal:nth-child(2) { transition-delay: 0.1s; }
.process-step.reveal:nth-child(3) { transition-delay: 0.2s; }
.process-step.reveal:nth-child(4) { transition-delay: 0.3s; }

.testimonial-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .about-grid { gap: 48px; }
    .quality-grid { gap: 48px; }
    .contact-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .audience-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
    }
    .process-step:not(:last-child)::after,
    .process-step:not(:first-child)::before { display: none; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 24px;
        transition: right 0.35s ease;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        color: var(--neutral-700) !important;
        font-size: 16px;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .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 { min-height: 90vh; padding: 100px 24px 60px; }
    .hero-title { font-size: clamp(32px, 7vw, 48px); }

    .about-grid,
    .quality-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 400px;
    }

    .career-inner { padding: 48px 32px; }
    .career-perks { flex-direction: column; gap: 12px; }

    .process-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; gap: 40px; }
    .process-step::before, .process-step::after { display: none !important; }

    .image-break-inner { background-attachment: scroll; min-height: 340px; }

    .contact-form-wrapper { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .trust { margin-top: -40px; }
    .trust-card { padding: 32px 24px; }
    .trust-grid { flex-direction: column; gap: 24px; }
    .trust-divider { width: 48px; height: 1px; }
    .trust-item { padding: 4px 0; }
}

@media (max-width: 480px) {
    .hero { min-height: 85vh; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { padding: 14px 24px; font-size: 14px; }
    .section-title { font-size: clamp(24px, 6vw, 36px); }

    .assess-overlay { padding: 12px; }
    .assess-modal { padding: 36px 24px 32px; border-radius: var(--radius-lg); }
    .assess-title { font-size: 22px; }
    .assess-option { padding: 14px 14px; gap: 12px; }
    .assess-option-icon { width: 40px; height: 40px; }
    .assess-option strong { font-size: 14px; }
    .assess-form .form-row { grid-template-columns: 1fr; }
}