/* ================================================================
   Thalassa Consulting GmbH — Main Stylesheet
   ================================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:        #0B1F2A;
  --navy-mid:    #162F3D;
  --navy-light:  #1E3F52;
  --cyan:        #00A8B5;
  --cyan-dark:   #008F9A;
  --cyan-faint:  #E6F7F8;
  --bg:          #F7F9FB;
  --bg-white:    #FFFFFF;
  --heading:     #0B1F2A;
  --text-dark:   #0B1F2A;
  --text-mid:    #3A5464;
  --text-light:  #6B8A9A;
  --border:      #D5E3EB;
  --border-light:#EAF0F4;
  --shadow-sm:   0 1px 4px rgba(11,31,42,0.06);
  --shadow-md:   0 4px 16px rgba(11,31,42,0.10);
  --shadow-lg:   0 8px 32px rgba(11,31,42,0.13);
  --radius:      6px;
  --radius-lg:   10px;
  --transition:  0.2s ease;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --navy:        #07141C;
  --navy-mid:    #10212C;
  --navy-light:  #173747;
  --cyan-faint:  #0D2A34;
  --bg:          #08131B;
  --bg-white:    #10202B;
  --heading:     #F3F9FC;
  --text-dark:   #EAF2F6;
  --text-mid:    #C3D2DB;
  --text-light:  #92A7B5;
  --border:      #294250;
  --border-light:#18303D;
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.22);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.24);
  --shadow-lg:   0 16px 40px rgba(0,0,0,0.30);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; color-scheme: light; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family:    'Inter', system-ui, sans-serif;
  color:          var(--heading);
  line-height:    1.2;
  font-weight:    700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }
p { color: var(--text-mid); max-width: 68ch; }
.lead { font-size: 1.125rem; line-height: 1.7; }
.small { font-size: 0.875rem; }
.caption { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 600; }

/* --- Layout --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.section { padding: 80px 0; }
.section--lg { padding: 100px 0; }
.section--sm { padding: 56px 0; }
.section--navy { background: var(--navy); }
.section--white { background: var(--bg-white); }
.section--faint { background: var(--cyan-faint); }
.section-header { margin-bottom: 48px; }
.section-header .caption { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--cyan);
  color: #fff;
}
.btn--primary:hover {
  background: var(--cyan-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,168,181,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}
.btn--outline:hover {
  background: var(--cyan);
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.875rem; }

/* --- Cards --- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card--navy {
  background: var(--navy-mid);
  border-color: var(--navy-light);
  color: #fff;
}
.card--navy h3, .card--navy h4 { color: #fff; }
.card--navy p { color: rgba(255,255,255,0.72); }

/* --- Divider --- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.navbar__logo-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.2rem;
  color: var(--heading);
  line-height: 1.2;
}
.navbar__logo-sub {
  font-size: 0.675rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 500;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.navbar__link {
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.navbar__link:hover, .navbar__link.active {
  color: var(--heading);
  background: var(--border-light);
}
.navbar__theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--heading);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
}
.navbar__theme-toggle:hover {
  background: var(--border-light);
  border-color: var(--cyan);
  transform: translateY(-1px);
}
.navbar__theme-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar__theme-icon svg {
  width: 16px;
  height: 16px;
}
.navbar__cta {
  margin-left: 12px;
  padding: 8px 20px;
  background: var(--cyan);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.navbar__cta:hover {
  background: var(--cyan-dark);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,168,181,0.3);
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.25s;
}
.navbar__mobile {
  display: none;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 4px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile .navbar__link { padding: 10px 12px; }
.navbar__mobile .navbar__cta {
  margin-left: 0;
  margin-top: 8px;
  text-align: center;
  display: block;
  padding: 10px 20px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background:
    linear-gradient(90deg, rgba(11,31,42,0.82) 0%, rgba(11,31,42,0.68) 42%, rgba(11,31,42,0.52) 100%),
    url('../assets/images/hero-office-background.webp') center center / cover no-repeat;
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,31,42,0.18) 0%, rgba(11,31,42,0.34) 100%),
    radial-gradient(circle at 78% 24%, rgba(0,168,181,0.14) 0%, transparent 34%);
  pointer-events: none;
  z-index: -1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.hero h1 { color: #fff; max-width: 720px; margin-bottom: 20px; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__badges {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero__badge-item { }
.hero__badge-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.hero__badge-number span { color: var(--cyan); }
.hero__badge-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

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

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.problem { }
.problem__intro { margin-bottom: 48px; }
.problem__items { }
.problem-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.problem-item:last-child { border-bottom: none; }
.problem-item__number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.problem-item__content h3 { margin-bottom: 8px; }
.problem-item__content p { max-width: 100%; }

/* ================================================================
   SERVICE OVERVIEW (HOME)
   ================================================================ */
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-top: 3px solid var(--cyan);
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-faint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 22px; height: 22px; color: var(--cyan); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
}
.service-card__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ================================================================
   TRUST SECTION
   ================================================================ */
.trust { background: var(--navy); }
.trust h2 { color: #fff; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.trust__item {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust__item:last-child { border-right: none; }
.trust__number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.trust__number span { color: var(--cyan); }
.trust__label { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.trust__text {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.trust__text-item h4 { color: #fff; margin-bottom: 8px; }
.trust__text-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 100%; }

/* ================================================================
   CASE PREVIEWS
   ================================================================ */
.case-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cyan);
  background: var(--cyan-faint);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.case-card h3 { margin-bottom: 12px; }
.case-card p { font-size: 0.9rem; }
.case-card__result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.case-card__result-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.6rem;
  color: var(--cyan);
  line-height: 1;
}
.case-card__result-label { font-size: 0.85rem; color: var(--text-mid); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); margin: 0 auto 36px; max-width: 560px; }
.cta-section__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
}
.page-hero .caption { color: var(--cyan); margin-bottom: 12px; }
.page-hero h1 { color: #fff; max-width: 640px; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; }

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.service-detail {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}
.service-detail__meta .caption { margin-bottom: 12px; }
.service-detail__meta h2 { margin-bottom: 0; }
.service-detail__body h3 { margin-bottom: 12px; color: var(--heading); }
.service-detail__body p { margin-bottom: 20px; max-width: 100%; }
.service-detail__list { margin-top: 24px; }
.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-mid);
}
.service-detail__list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--cyan-faint);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300A8B5'%3E%3Cpath d='M13.5 3.5L6 11 2.5 7.5l-1 1L6 13l8.5-8.5-1-1z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ================================================================
   APPROACH PAGE
   ================================================================ */
.approach-phase {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}
.approach-phase:last-child { border-bottom: none; }
.approach-phase__meta { }
.approach-phase__number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 3.5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}
.approach-phase__duration {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cyan);
}
.approach-phase__body h3 { margin-bottom: 12px; }
.approach-phase__body p { max-width: 100%; }
.approach-phase__deliverables {
  margin-top: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.approach-phase__deliverables h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.approach-phase__deliverables ul { display: flex; flex-direction: column; gap: 6px; }
.approach-phase__deliverables li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.approach-phase__deliverables li::before {
  content: '→';
  color: var(--cyan);
  font-weight: 700;
}

/* ================================================================
   CASE EXAMPLES PAGE
   ================================================================ */
.case-full {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.case-full__header {
  padding: 32px 40px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.case-full__body { padding: 40px; }
.case-full__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.case-full__result-item { text-align: center; }
.case-full__result-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.2rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.case-full__result-label { font-size: 0.875rem; color: var(--text-mid); }

/* ================================================================
   INSIGHTS PAGE
   ================================================================ */
.insight-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.insight-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cyan);
  background: var(--cyan-faint);
  padding: 3px 10px;
  border-radius: 20px;
}
.insight-card__date { font-size: 0.8rem; color: var(--text-light); }
.insight-card h3 { margin-bottom: 12px; }
.insight-card p { font-size: 0.9rem; flex-grow: 1; }
.insight-card__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.insight-card__read {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Article Page */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.article-body { }
.article-body h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}
.article-body h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.article-body p {
  margin-bottom: 20px;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.75;
}
.article-body ul, .article-body ol {
  margin: 16px 0 24px 0;
  padding-left: 20px;
}
.article-body li {
  margin-bottom: 8px;
  color: var(--text-mid);
  font-size: 0.9375rem;
  list-style: disc;
}
.article-body ol li { list-style: decimal; }
.article-body blockquote {
  border-left: 3px solid var(--cyan);
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--cyan-faint);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--heading);
  margin-bottom: 0;
}
.article-sidebar { position: sticky; top: 88px; }
.article-sidebar-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.article-sidebar-box h4 { margin-bottom: 16px; font-size: 1rem; }
.article-sidebar-box p { font-size: 0.875rem; max-width: 100%; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.article-meta__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cyan);
  background: var(--cyan-faint);
  padding: 3px 10px;
  border-radius: 20px;
}
.article-meta__date, .article-meta__read { font-size: 0.85rem; color: var(--text-light); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-values { }
.value-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.value-item:last-child { border-bottom: none; }
.value-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--cyan-faint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item__icon svg { width: 22px; height: 22px; color: var(--cyan); }
.value-item h3 { margin-bottom: 6px; }
.value-item p { font-size: 0.9rem; max-width: 100%; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.industry-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { max-width: 100%; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--cyan-faint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail__icon svg { width: 18px; height: 18px; color: var(--cyan); }
.contact-detail__label { font-size: 0.8rem; color: var(--text-light); margin-bottom: 2px; }
.contact-detail__value { font-size: 0.9375rem; font-weight: 500; color: var(--text-dark); }
.contact-form-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-box h3 { margin-bottom: 8px; }
.contact-form-box > p { font-size: 0.9rem; margin-bottom: 28px; max-width: 100%; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group label span { color: var(--cyan); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--bg-white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--cyan);
}
.booking-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.booking-section h3 { margin-bottom: 8px; }
.booking-section > p { font-size: 0.9rem; color: var(--text-mid); max-width: 100%; margin-bottom: 20px; }
.calendly-embed-placeholder {
  background: var(--bg);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}
.calendly-embed-placeholder p { color: var(--text-light); font-size: 0.9rem; margin: 8px auto 0; }

/* ================================================================
   LEGAL PAGE
   ================================================================ */
.legal-section { margin-bottom: 48px; }
.legal-section h2 { margin-bottom: 20px; }
.legal-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-section p { max-width: 100%; margin-bottom: 14px; font-size: 0.9375rem; }
.legal-section ul { padding-left: 20px; margin-bottom: 14px; }
.legal-section ul li { list-style: disc; font-size: 0.9375rem; color: var(--text-mid); margin-bottom: 4px; }

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 2px solid var(--cyan);
  padding: 20px 0;
  display: none;
  box-shadow: 0 -4px 24px rgba(11,31,42,0.2);
}
.cookie-banner.visible { display: block; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { color: rgba(255,255,255,0.8); font-size: 0.875rem; max-width: 640px; }
.cookie-banner__text a { color: var(--cyan); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn--accept { background: var(--cyan); color: #fff; border: none; }
.cookie-btn--accept:hover { background: var(--cyan-dark); }
.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-btn--decline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand { }
.footer__brand-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}
.footer__brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__brand-desc { font-size: 0.875rem; line-height: 1.65; max-width: 280px; }
.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-copy { font-size: 0.8rem; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust__text { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .service-detail__inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
  .hero { padding: 72px 0 64px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .navbar__nav { display: none; }
  .navbar__actions { gap: 10px; }
  .navbar__theme-toggle { padding: 8px 10px; }
  .navbar__hamburger { display: flex; }
  .approach-phase { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .case-full__header { flex-direction: column; }
  .case-full__results { grid-template-columns: 1fr; }
  .hero__badges { gap: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}
