/* =============================================
   EIGEN CONSULTANCY — SHARED STYLESHEET
   ============================================= */

/* =====================
   ROOT VARIABLES
   ===================== */
:root {
  --bg: #f9f6f0;
  --bg-alt: #f2ede5;
  --navy: #0f1e2e;
  --navy-light: #1a3048;
  --gold: #e8c97a;
  --gold-dark: #c9a84c;
  --sage: #b8d4a8;
  --sage-dark: #6a9e54;
  --text: #2c2c2c;
  --text-mid: #4b5563;
  --text-light: #6b7280;
  --white: #ffffff;
  --border: #e5e0d8;
  --shadow: 0 4px 24px rgba(15, 30, 46, 0.07);
  --shadow-lg: 0 12px 40px rgba(15, 30, 46, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.28s ease;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -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; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.22;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { font-size: 1rem; color: var(--text-mid); }

.lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
}

strong { font-weight: 600; }

/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; }

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-dark .section-label { color: var(--gold); }

.grid-2 { display: grid; grid-template-columns: 1fr 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; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,30,46,0.2); }

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 600; }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

.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.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* =====================
   NAVIGATION
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249,246,240,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(15,30,46,0.08); }

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

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

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

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

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  min-height: 44px;
  white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--navy); background: var(--bg-alt); }
.nav-links > li > a.active { font-weight: 600; }

.has-dropdown { position: relative; }
.has-dropdown > a .arrow { font-size: 0.75rem; transition: transform var(--transition); opacity: 0.6; }
.has-dropdown:hover > a .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dropdown li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  min-height: 44px;
  transition: all var(--transition);
}
.dropdown li a:hover { background: var(--bg-alt); color: var(--navy); }

.nav-cta > a {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 20px !important;
}
.nav-cta > a:hover { background: var(--navy-light) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--navy);
  padding: 80px 0 36px;
}

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

.footer-brand .logo-mark { background: rgba(255,255,255,0.08); color: var(--gold); margin-bottom: 18px; }
.footer-brand .logo-name { font-family: 'Playfair Display',serif; font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.55); }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.92rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li span { color: rgba(255,255,255,0.4); font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
.footer-kvk { display: flex; gap: 24px; font-size: 0.82rem; color: rgba(255,255,255,0.38); }

/* =====================
   HERO — HOME
   ===================== */
.hero {
  padding: 110px 0 90px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,201,122,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,212,168,0.06) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 { color: var(--white); margin-bottom: 26px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { color: rgba(255,255,255,0.72); margin-bottom: 44px; }

.hero-cards { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(232,201,122,0.3); }
.hero-card-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.hero-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; font-family: 'DM Sans',sans-serif; font-weight: 600; }
.hero-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.55; }

/* =====================
   PAGE HERO (sub-pages)
   ===================== */
.page-hero {
  padding: 80px 0 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,201,122,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 580px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; font-size: 0.7rem; }

/* =====================
   CARDS
   ===================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.card-icon { width: 52px; height: 52px; background: var(--bg-alt); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card p { font-size: 0.93rem; line-height: 1.65; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.client-card:hover { box-shadow: var(--shadow); border-color: rgba(184,212,168,0.5); }
.client-flag { font-size: 2.2rem; margin-bottom: 14px; line-height: 1; }

.client-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.status-active { background: rgba(106,158,84,0.12); color: #2d6a1f; }
.status-active::before { content: ''; width: 6px; height: 6px; background: #2d6a1f; border-radius: 50%; display: inline-block; }
.status-upcoming { background: rgba(201,168,76,0.15); color: #8a6500; }
.status-upcoming::before { content: ''; width: 6px; height: 6px; background: #c9a84c; border-radius: 50%; display: inline-block; }

.client-industry { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.client-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.client-card p { font-size: 0.9rem; line-height: 1.65; }

/* =====================
   STATS
   ===================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item { background: var(--white); padding: 44px 32px; text-align: center; }
.stat-number { font-family: 'Playfair Display',serif; font-size: 3.2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.stat-number .accent { color: var(--gold-dark); }
.stat-label { font-size: 0.88rem; color: var(--text-light); font-weight: 500; line-height: 1.4; }

/* =====================
   FAQ ACCORDION
   ===================== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow); }
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--bg-alt); }
.accordion-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem; line-height: 1;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  color: var(--navy);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--navy); border-color: var(--navy); color: var(--white); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body-inner { padding: 0 28px 26px; color: var(--text-mid); line-height: 1.75; font-size: 0.97rem; }
.accordion-item.open .accordion-body { max-height: 600px; }

/* =====================
   CONTACT FORM
   ===================== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 0.87rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  min-height: 48px;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(15,30,46,0.06); }
.form-group textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* =====================
   PROCESS STEPS
   ===================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, var(--sage) 100%);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-number {
  width: 54px; height: 54px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display',serif;
  font-size: 1.25rem; font-weight: 700;
  margin: 0 auto 22px;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--navy);
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; font-family: 'DM Sans',sans-serif; font-weight: 600; }
.process-step p { font-size: 0.87rem; line-height: 1.6; }

/* =====================
   TECH TAGS
   ===================== */
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tech-tag { display: inline-block; padding: 5px 13px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 20px; font-size: 0.83rem; font-weight: 500; color: var(--navy); }

/* =====================
   BADGES
   ===================== */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.badge-navy  { background: var(--navy); color: var(--gold); }
.badge-gold  { background: var(--gold); color: var(--navy); }
.badge-sage  { background: rgba(184,212,168,0.3); color: #1f5c14; }
.badge-dev   { background: rgba(232,201,122,0.22); color: #8a6500; border: 1px solid rgba(201,168,76,0.35); }
.badge-soon  { background: rgba(107,114,128,0.12); color: var(--text-light); border: 1px solid var(--border); }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonial {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-top: 24px;
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial-author {
  margin-top: 14px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.testimonial-author::before { content: '— '; color: var(--gold-dark); }

/* =====================
   PORTFOLIO CARDS
   ===================== */
.port-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.port-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.port-card-header {
  background: var(--navy);
  padding: 30px 28px 26px;
  position: relative;
  overflow: hidden;
}
.port-card-header::before {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,201,122,0.08) 0%, transparent 70%);
}
.port-card-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; position: relative; z-index: 1; }
.port-card-header p { color: rgba(255,255,255,0.6); font-size: 0.88rem; position: relative; z-index: 1; }
.port-card-body { padding: 26px 28px 30px; }

/* =====================
   CONTACT INFO CARD
   ===================== */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 44px 36px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 5px; font-weight: 600; }
.contact-detail-text span, .contact-detail-text a { color: rgba(255,255,255,0.82); font-size: 0.93rem; transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--gold); }

/* =====================
   DIVIDERS & ACCENTS
   ===================== */
.divider { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin: 18px 0 26px; }
.divider-center { margin: 18px auto 26px; }

/* =====================
   HIGHLIGHT / CTA BOX
   ===================== */
.highlight-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,201,122,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.highlight-box h2 { color: var(--white); margin-bottom: 18px; position: relative; z-index: 1; }
.highlight-box p { color: rgba(255,255,255,0.68); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.highlight-box .btn-group { justify-content: center; position: relative; z-index: 1; }

/* =====================
   PROFILE / ABOUT
   ===================== */
.profile-photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed var(--border);
  color: var(--text-light); gap: 12px;
}
.profile-photo .photo-icon { font-size: 3.5rem; opacity: 0.3; }
.profile-photo p { font-size: 0.82rem; color: var(--text-light); text-align: center; padding: 0 24px; opacity: 0.65; }

.values-list { list-style: none; margin-top: 8px; }
.values-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid); font-size: 0.95rem; line-height: 1.55;
}
.values-list li:last-child { border-bottom: none; }
.values-list li::before { content: ''; width: 7px; height: 7px; background: var(--gold-dark); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }

/* =====================
   NOTICE BOX
   ===================== */
.notice {
  background: rgba(184,212,168,0.14);
  border: 1px solid rgba(106,158,84,0.25);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 24px;
  display: flex; gap: 12px; align-items: flex-start;
}
.notice-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* =====================
   LANGUAGE TOGGLE
   ===================== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  cursor: pointer;
  padding: 5px 7px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  min-height: 32px;
  line-height: 1;
}
.lang-btn.active {
  color: var(--navy);
  background: var(--bg-alt);
}
.lang-btn:hover { color: var(--navy); }
.lang-divider { color: var(--border); font-size: 0.75rem; user-select: none; }

/* Language visibility */
.lang-en { display: none; }

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* =====================
   UTILITIES
   ===================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.mb-8  { margin-bottom: 8px; }  .mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.mt-12 { margin-top: 12px; }    .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }    .mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch;
    padding: 12px; gap: 2px;
    max-height: calc(100vh - 72px); overflow-y: auto;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 16px; font-size: 0.97rem; min-height: 50px; }
  .has-dropdown .arrow { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: var(--bg-alt); padding: 4px 0 4px 12px; margin: 2px 0; }
  .nav-cta { margin-top: 8px; }
  .nav-cta > a { justify-content: center; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .hero-cards { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .highlight-box { padding: 44px 28px; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
}
