/* ============================================================
   THE CONSTANT OF CHANGE — Redesign 2025
   Visual style aligned with tcoc.eu
   Fonts: Manrope (headings) + Inter (body)
   Colors: Teal #1AAFA0, Dark #0d1117, White #ffffff
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --teal:          #1AAFA0;
    --teal-dark:     #138a7d;
    --teal-light:    #e6f7f5;
    --teal-glow:     rgba(26,175,160,0.18);
    --dark:          #0d1117;
    --dark-2:        #111827;
    --dark-3:        #1a2332;
    --dark-card:     rgba(255,255,255,0.04);
    --dark-border:   rgba(255,255,255,0.08);
    --white:         #ffffff;
    --grey-50:       #f9fafb;
    --grey-100:      #f3f4f6;
    --grey-200:      #e5e7eb;
    --grey-400:      #9ca3af;
    --grey-600:      #4b5563;
    --grey-800:      #1f2937;
    --text-dark:     #0d1117;
    --text-mid:      #374151;
    --text-light:    #6b7280;

    --font-head:     'Manrope', 'Inter', sans-serif;
    --font-body:     'Inter', sans-serif;

    --nav-h:         72px;
    --max-w:         1160px;
    --r-sm:          6px;
    --r-md:          12px;
    --r-lg:          20px;
    --r-xl:          32px;
    --r-full:        9999px;

    --shadow-sm:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:     0 4px 16px rgba(0,0,0,.08);
    --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
    --shadow-teal:   0 8px 32px rgba(26,175,160,0.28);

    --ease:          cubic-bezier(0.4, 0, 0.2, 1);
    --dur:           0.25s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; }

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

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}
.label-light { color: rgba(255,255,255,0.55); }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    font-weight: 800;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--nav-h);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-200);
    transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

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

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--r-sm);
    transition: color var(--dur), background var(--dur);
}
.nav-link:hover { color: var(--teal); background: var(--teal-light); }
.nav-link.active { color: var(--teal); }

.nav-cta {
    margin-left: 12px;
    padding: 9px 20px;
    background: var(--teal);
    color: var(--white) !important;
    border-radius: var(--r-full);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-head);
    transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-teal);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--r-sm);
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--dur), opacity var(--dur);
}

/* ============================================================
   EUROPE BANNER
   ============================================================ */
.eu-banner {
    background: var(--dark);
    color: rgba(255,255,255,0.9);
    padding: 11px 0;
    font-size: 0.84rem;
    text-align: center;
}
.eu-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.eu-banner strong { color: var(--teal); }
.eu-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    border: 1.5px solid var(--teal);
    border-radius: var(--r-full);
    color: var(--teal);
    font-weight: 700;
    font-size: 0.84rem;
    transition: background var(--dur), color var(--dur);
}
.eu-banner-link:hover { background: var(--teal); color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.55;
    transition: transform 8s ease;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13,17,23,0.92) 0%,
        rgba(13,17,23,0.65) 55%,
        rgba(13,17,23,0.30) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 100px 28px 100px;
    margin-left: calc((100vw - var(--max-w)) / 2);
    margin-left: max(28px, calc((100vw - var(--max-w)) / 2));
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,175,160,0.12);
    border: 1px solid rgba(26,175,160,0.3);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-title em {
    font-style: normal;
    color: var(--teal);
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.4);
    animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--dur) var(--ease);
    line-height: 1;
}
.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.65);
}
.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}
.btn-outline-teal:hover {
    background: var(--teal);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}
.section-head h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.section-head p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}
.section-head-light h2 { color: var(--white); }
.section-head-light p  { color: rgba(255,255,255,0.65); }

/* ============================================================
   WHAT WE DO — full-bleed image + text
   ============================================================ */
.what-we-do {
    background: var(--grey-50);
}
.wwd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.wwd-img {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}
.wwd-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.wwd-img:hover img { transform: scale(1.04); }
.wwd-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13,17,23,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--dark-border);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--r-md);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wwd-img-badge span { color: var(--teal); }

.wwd-text h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.wwd-text p {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.wwd-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 36px;
}
.pill {
    padding: 7px 16px;
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: border-color var(--dur), color var(--dur), background var(--dur);
}
.pill:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-light);
}

/* ============================================================
   ACTIONS — dark section with image cards
   ============================================================ */
.actions-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.actions-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,175,160,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}
.action-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
    cursor: pointer;
}
.action-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26,175,160,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(26,175,160,0.15);
}
.action-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.action-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
    filter: brightness(0.85);
}
.action-card:hover .action-card-img img { transform: scale(1.06); }
.action-card-num {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--teal);
    color: var(--white);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: var(--font-head);
}
.action-card-body { padding: 24px; }
.action-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}
.action-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.action-card-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.action-card-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), opacity 0.3s;
    opacity: 0;
}
.action-card.expanded .action-card-list {
    max-height: 400px;
    opacity: 1;
}
.action-card-list li {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.65);
    padding-left: 14px;
    position: relative;
    line-height: 1.6;
}
.action-card-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 5px; height: 5px;
    background: var(--teal);
    border-radius: 50%;
}
.action-card-list li strong { color: rgba(255,255,255,0.9); }
.action-card-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: gap var(--dur);
}
.action-card-toggle:hover { gap: 10px; }
.action-card-toggle svg {
    width: 14px; height: 14px;
    transition: transform var(--dur);
}
.action-card.expanded .action-card-toggle svg { transform: rotate(180deg); }

/* ============================================================
   SERVICES — light section, 3 cards with images
   ============================================================ */
.services-section { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    border: 1.5px solid var(--grey-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--white);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}
.service-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
    filter: brightness(0.9);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-icon {
    width: 44px; height: 44px;
    background: var(--teal-light);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.service-card-icon svg { width: 22px; height: 22px; stroke: var(--teal); }
.service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ============================================================
   EUROPE SPOTLIGHT — full-bleed dark with image
   ============================================================ */
.europe-section {
    position: relative;
    overflow: hidden;
    background: var(--dark-2);
    padding: 0;
}
.europe-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/europe-section.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}
.europe-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13,17,23,0.97) 0%,
        rgba(13,17,23,0.80) 50%,
        rgba(13,17,23,0.50) 100%
    );
}
.europe-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}
.europe-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.europe-content h2 em {
    font-style: normal;
    color: var(--teal);
}
.europe-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 16px;
}
.europe-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 36px;
}
.europe-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}
.europe-check svg {
    width: 18px; height: 18px;
    stroke: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}
.europe-visual-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.europe-domain-card {
    background: rgba(26,175,160,0.1);
    border: 1.5px solid rgba(26,175,160,0.3);
    border-radius: var(--r-xl);
    padding: 40px 48px;
    text-align: center;
    backdrop-filter: blur(12px);
}
.europe-domain-icon { font-size: 3rem; margin-bottom: 12px; }
.europe-domain-name {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}
.europe-domain-name span { color: var(--teal); }
.europe-domain-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}
.europe-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}
.europe-stat {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-md);
    padding: 16px;
    text-align: center;
}
.europe-stat-num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 4px;
}
.europe-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

/* ============================================================
   VALUES — alternating light/dark
   ============================================================ */
.values-section { background: var(--grey-50); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}
.value-card-bar {
    width: 36px; height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 18px;
}
.value-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ============================================================
   ABOUT — dark, split layout
   ============================================================ */
.about-section { background: var(--dark); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}
.about-content h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.about-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    margin-bottom: 18px;
}
.about-quote {
    margin-top: 36px;
    padding: 24px 28px;
    border-left: 3px solid var(--teal);
    background: rgba(26,175,160,0.06);
    border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about-quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    margin-bottom: 12px;
}
.about-quote cite {
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.05em;
}

/* Profile card */
.profile-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-xl);
    overflow: hidden;
}
.profile-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.profile-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9);
    transition: transform 0.5s var(--ease);
}
.profile-card:hover .profile-card-img img { transform: scale(1.04); }
.profile-card-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(13,17,23,0.9), transparent);
}
.profile-card-body { padding: 28px; }
.profile-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.profile-role {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.profile-bio {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 20px;
}
.profile-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--dur);
    word-break: break-all;
}
.profile-contact-item:hover { color: var(--teal); }
.profile-contact-item svg {
    width: 15px; height: 15px;
    stroke: var(--teal);
    flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--grey-50); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}
.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.contact-info > p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-item-icon {
    width: 40px; height: 40px;
    background: var(--teal-light);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--teal); }
.contact-item-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}
.contact-item-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}
.contact-item-value a { color: var(--text-dark); transition: color var(--dur); }
.contact-item-value a:hover { color: var(--teal); }

.contact-eu-note {
    margin-top: 28px;
    padding: 16px 20px;
    background: var(--teal-light);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.contact-eu-note a { color: var(--teal); font-weight: 700; }
.contact-eu-note a:hover { text-decoration: underline; }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--r-xl);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--dur), box-shadow var(--dur);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,175,160,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--dark-border);
}
.footer-logo { height: 38px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 280px;
    margin-bottom: 16px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--dur);
}
.footer-col a:hover { color: var(--teal); }

.footer-eu-card {
    background: rgba(26,175,160,0.08);
    border: 1px solid rgba(26,175,160,0.2);
    border-radius: var(--r-lg);
    padding: 20px;
}
.footer-eu-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 14px;
}
.footer-eu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white);
    padding: 9px 18px;
    border-radius: var(--r-full);
    font-size: 0.84rem;
    font-weight: 700;
    transition: background var(--dur), transform var(--dur);
}
.footer-eu-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--dur); }
.footer-bottom a:hover { color: var(--teal); }

/* ============================================================
   PAGE HEADER (Impressum)
   ============================================================ */
.page-hero {
    background: var(--dark);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--teal), transparent);
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--teal); transition: opacity var(--dur); }
.breadcrumb a:hover { opacity: 0.75; }

/* ============================================================
   LEGAL CONTENT
   ============================================================ */
.legal-wrap {
    max-width: 780px;
    margin: 0 auto;
}
.legal-block {
    padding: 36px 0;
    border-bottom: 1px solid var(--grey-200);
}
.legal-block:last-of-type { border-bottom: none; }
.legal-block h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.legal-block p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 8px;
}
.legal-block a { color: var(--teal); }
.legal-block a:hover { text-decoration: underline; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .wwd-grid,
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .europe-inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 0; }
    .europe-visual-side { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .actions-grid { grid-template-columns: 1fr; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }
    .section { padding: 72px 0; }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--grey-200);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 13px 16px; }
    .nav-cta { margin: 8px 0 0; border-radius: var(--r-md); text-align: center; }
    .nav-burger { display: flex; }

    .hero-content { margin-left: 0; padding: 80px 28px; }
    .hero-actions { flex-direction: column; }
    .btn-lg { padding: 14px 28px; }

    .actions-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-form-wrap { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .section-head { margin-bottom: 48px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 2rem; }
    .eu-banner .container { flex-direction: column; gap: 8px; }
}
