/* ============================================
   TECHNISCHEVERTALINGEN.EU — Hoofdstylesheet
   DG Translations huisstijl
   ============================================ */

:root {
  --orange:        #D4621A;
  --orange-light:  #E8783A;
  --orange-dark:   #B85215;
  --navy:          #1A2B4A;
  --navy-light:    #2C3E62;
  --text:          #2C2C2C;
  --text-light:    #666666;
  --text-muted:    #999999;
  --bg:            #FAF7F2;
  --bg-dark:       #F2EBE1;
  --white:         #FFFFFF;
  --border:        #E0E0DC;
  --success:       #2E7D32;

  --font-heading:  'Montserrat', 'Segoe UI', sans-serif;
  --font-body:     'Open Sans', 'Segoe UI', sans-serif;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);

  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  --transition:    0.25s ease;
}

/* ============ RESET & BASE ============ */
*, *::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);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

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

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

.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }
.section-orange h2, .section-orange h3 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--orange-light); }
.section-orange .section-label { color: rgba(255,255,255,0.8); }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.75); }
.section-orange .section-sub { color: rgba(255,255,255,0.85); }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 98, 26, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--bg);
  color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-text span {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-mark text {
  font-family: 'Baloo 2', sans-serif;
}
.logo-brand {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
  font-family: var(--font-heading);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange);
  background: rgba(212, 98, 26, 0.08);
}

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-top: 72px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(26,43,74,0.9) 55%, rgba(26,43,74,0.6) 100%);
  z-index: 1;
}

/* Split layout: tekst links, foto rechts */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 0;
}

.hero-content {
  position: relative;
  min-width: 0;
}

/* Hero foto rechts */
.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08);
  width: 100%;
  min-width: 0;
  aspect-ratio: 3/4;
  max-height: 75vh;
  margin-left: auto;
  margin-right: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 6s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

/* Subtiele oranje gloed rondom de foto */
.hero-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, var(--orange) 0%, transparent 60%);
  opacity: 0.35;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,98,26,0.25);
  border: 1px solid rgba(212,98,26,0.5);
  color: var(--orange-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 em {
  color: var(--orange-light);
  font-style: normal;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  max-width: 560px;
}

.hero-joke {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ USP BAR ============ */
.usp-bar {
  background: var(--orange);
  padding: 0;
  border-top: 22px solid white;
  border-bottom: 22px solid white;
}

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

.usp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.usp-item:last-child { border-right: none; }

.usp-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.usp-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}

.usp-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-body { padding: 28px; }
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

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

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

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

/* ============ WHY HUMAN SECTION ============ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1A2B4A 0%, #2C3E62 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.why-image-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.5);
  padding: 40px;
}

.why-image-placeholder .icon { font-size: 4rem; margin-bottom: 12px; }
.why-image-placeholder p { font-size: 0.85rem; }

.problem-list { margin: 24px 0; }

.problem-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.problem-item:last-child { border-bottom: none; }

.problem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.problem-item p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.seinfeld-quote {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 24px 0;
  font-size: 0.95rem;
  font-style: italic;
  position: relative;
}
.seinfeld-quote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(255,255,255,0.25);
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ============ AI + HUMAN SECTION ============ */
.process-steps {
  display: flex;
  gap: 0;
  margin: 48px 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
  background: var(--white);
}

.process-step.highlight .step-number {
  background: var(--orange);
  border-color: var(--orange);
  font-size: 1.8rem;
}

.process-step h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.process-step p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============ PROCESS LIST (verticaal naast foto) ============ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.process-list-item:last-child { border-bottom: none; }

.process-list-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy);
  flex-shrink: 0;
}

.process-list-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.process-list-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.highlight-step h4 { color: var(--orange); }

/* ============ SECTORS ============ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.sector-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(212,98,26,0.15);
  transform: translateY(-3px);
}

.sector-icon { font-size: 2.8rem; margin-bottom: 12px; }
.sector-card h3 { font-size: 0.95rem; color: var(--navy); font-weight: 700; }
.sector-card p { font-size: 0.78rem; color: var(--text-light); margin-top: 6px; }

/* ============ LANGUAGES ============ */
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.lang-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}
.lang-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(212,98,26,0.05);
}

.lang-flag { font-size: 1.1rem; }

/* Flag-icons bibliotheek aanpassing */
.lang-tag .fi {
  width: 1.2em;
  height: 0.9em;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============ TESTIMONIAL / QUOTE ============ */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.quote-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}

.quote-author {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ PRICING ============ */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.pricing-from {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  font-family: var(--font-heading);
  line-height: 1;
  margin: 8px 0;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .check { color: var(--success); font-size: 1.1rem; }

/* ============ BLOG ============ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-card-image svg {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-category {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212,98,26,0.1);
  color: var(--orange);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.4;
}
.blog-card p { font-size: 0.875rem; color: var(--text-light); flex: 1; }

.blog-card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}
.read-more:hover { gap: 10px; }

/* ============ CONTACT ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }

.contact-detail-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail strong { display: block; font-size: 0.85rem; color: var(--navy); }
.contact-detail a, .contact-detail span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title { font-size: 1.3rem; margin-bottom: 24px; color: var(--navy); }

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,98,26,0.1);
}

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

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

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============ ISO BADGE ============ */
.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 12px 20px;
}

.iso-badge .iso-icon { font-size: 1.8rem; }
.iso-badge strong { font-size: 0.9rem; color: var(--navy); display: block; }
.iso-badge span { font-size: 0.75rem; color: var(--text-muted); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

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

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }

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

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange-light); }

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

.footer-bottom p { color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ============ BREADCRUMB ============ */
.page-hero {
  background: var(--navy);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 60%, rgba(212,98,26,0.3) 100%);
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--orange-light); }

.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-top: 12px; max-width: 600px; }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ============ COOKIE CONSENT ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(110%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1 1 420px; font-size: 0.9rem; line-height: 1.6; }
.cookie-banner-text a { color: var(--orange-light); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner-actions .btn { padding: 11px 20px; font-size: 0.875rem; }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.5); }

.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 640px) {
  .cookie-banner { padding: 18px 16px; }
  .cookie-banner .container { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .usp-item:nth-child(even) { border-right: none; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
    min-height: auto;
  }
  .hero-image {
    max-height: 50vw;
    aspect-ratio: 16/9;
    order: -1;
  }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .process-steps { flex-direction: column; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .pricing-card { padding: 32px 24px; }
  .lang-grid { gap: 8px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .usp-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ============ FILE UPLOAD ============ */
.file-upload-area {
  border: 2px dashed var(--orange);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
  background: rgba(212,98,26,0.03);
}
.file-upload-area:hover, .file-upload-area.drag-over {
  background: rgba(212,98,26,0.09);
}
.file-upload-area input[type="file"] { display: none; }
.file-upload-label { font-weight: 600; color: var(--navy); display: block; margin: 10px 0 4px; font-size: 0.95rem; }
.file-upload-hint { font-size: 0.78rem; color: var(--text-muted); }
.file-list { margin-top: 14px; font-size: 0.85rem; color: var(--text-light); list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.file-list li { display: flex; align-items: center; gap: 6px; }

/* ============ CREDENTIALS GRID ============ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 32px;
  margin-top: 40px;
  text-align: left;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
}
.credential-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.credential-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--navy);
}
.credential-item span {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .credentials-grid { grid-template-columns: 1fr; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }
