@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2E45;
  --navy-light: #243B55;
  --emerald: #2A7A5A;
  --emerald-light: #34A376;
  --gold: #C8A96E;
  --gold-light: #D4BC8E;
  --white: #FFFFFF;
  --off-white: #F7F6F3;
  --light-blue: #EEF2F7;
  --text-dark: #0D1B2A;
  --text-mid: #3D5166;
  --text-light: #6B7F94;
  --border: #D8E2EC;
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --section-pad: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  padding: 0 40px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

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

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--gold);
}

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

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.01em;
}

.nav-links > li > a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links > li > a .chevron {
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-links > li:hover > a .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(13,27,42,0.2);
  border: 1px solid var(--border);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  overflow: hidden;
}

.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s;
  border-bottom: 1px solid var(--border);
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: 26px;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200,169,110,0.4) !important;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,122,90,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-sub2 {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,169,110,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.trust-line span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-line span:not(:last-child)::after {
  content: ' | ';
  color: rgba(255,255,255,0.2);
  margin: 0 10px;
}

/* ========== SECTIONS ========== */
section { padding: var(--section-pad) 40px; width: 100%; box-sizing: border-box; overflow: hidden; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--emerald);
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
  background: var(--off-white);
}

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

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
}

.problem-text h2 em { font-style: italic; color: var(--emerald); }

.problem-text p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.problem-text p strong {
  color: var(--navy);
  font-weight: 500;
  display: block;
  margin-top: 20px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--emerald);
  padding: 20px 24px;
  border-radius: 8px;
}

.problem-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== VALUE CARDS ========== */
.value-section { background: var(--white); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--emerald);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.value-card:hover {
  border-color: var(--emerald);
  box-shadow: 0 12px 40px rgba(42,122,90,0.1);
  transform: translateY(-4px);
}

.value-card:hover::before { transform: scaleX(1); }

.icon-wrap {
  width: 52px; height: 52px;
  background: rgba(42,122,90,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--emerald);
}
.services-section .icon-wrap { background: rgba(200,169,110,0.12); color: var(--gold); }
.industry-icon { display: flex; width: 52px; height: 52px; align-items: center; justify-content: center; background: rgba(42,122,90,0.08); border-radius: 12px; color: var(--emerald); margin-bottom: 16px; font-size: 0; }

.value-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ========== SERVICES ========== */
.services-section { background: var(--navy); }

.services-section .section-label { color: var(--gold); }
.services-section .section-title { color: var(--white); }
.services-section .section-title em { color: var(--gold); }
.services-section .section-sub { color: rgba(255,255,255,0.55); }

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-4px);
}

.service-card .icon-wrap {
  margin-bottom: 18px;
  background: rgba(200,169,110,0.12);
  color: var(--gold);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.service-card .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  margin-top: 20px;
}

/* ========== HOW IT WORKS ========== */
.process-section { background: var(--off-white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
  position: relative;
}

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

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 60px; height: 60px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== WHY GEBEN ========== */
.why-section { background: var(--white); }

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

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-dot {
  width: 10px; height: 10px;
  background: var(--emerald);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ========== COUNTRIES ========== */
.countries-section { background: var(--light-blue); }

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.country-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}

.country-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(13,27,42,0.1);
}

.country-flag { font-size: 28px; margin-bottom: 14px; display: block; }

.country-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.country-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing-section { background: var(--navy); }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-label { color: var(--gold); }
.pricing-section .section-sub { color: rgba(255,255,255,0.55); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.pricing-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card .plan-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-card.featured .plan-name { color: var(--navy); }

.pricing-card .plan-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-card.featured .plan-price { color: var(--navy); }

.pricing-card .plan-price small {
  font-size: 14px;
  font-weight: 300;
}

.pricing-card .plan-best {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.pricing-card.featured .plan-best { color: rgba(13,27,42,0.7); }

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card.featured ul li { color: rgba(13,27,42,0.8); }

.pricing-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured ul li::before { color: var(--navy); }

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--emerald);
  text-align: center;
  padding: 100px 40px;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-white {
  background: var(--white);
  color: var(--emerald);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  margin: 0 8px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
  margin: 0 8px;
}

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

/* ========== FOOTER ========== */
footer {
  background: var(--navy);
  padding: 70px 40px 30px;
  border-top: 1px solid rgba(200,169,110,0.2);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ========== INNER PAGE HERO ========== */
.page-hero {
  background: var(--navy);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,122,90,0.12) 0%, transparent 70%);
}

.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover { color: var(--gold); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-hero h1 em { font-style: italic; color: var(--gold); }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

/* ========== CONTENT SECTIONS ========== */
.content-section { padding: 80px 40px; }
.content-section.bg-off { background: var(--off-white); }
.content-section.bg-light { background: var(--light-blue); }
.content-section.bg-navy { background: var(--navy); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.list-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
}

.list-check li::before {
  content: '→';
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== SERVICE DETAIL ========== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}

.detail-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-card h4::before {
  content: '';
  width: 4px; height: 18px;
  background: var(--emerald);
  border-radius: 2px;
}

.detail-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-card ul li {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-card ul li::before {
  content: '·';
  color: var(--emerald);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
}

/* ========== FAQ ========== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-question {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--emerald);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 16px;
}

/* ========== CONTACT FORM ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

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

.form-submit {
  margin-top: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ========== INDUSTRIES ========== */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
}

.industry-card:hover {
  border-color: var(--navy);
  box-shadow: 0 12px 40px rgba(13,27,42,0.08);
  transform: translateY(-3px);
}

.industry-icon { font-size: 32px; margin-bottom: 16px; display: block; }

.industry-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

.industry-card .use-geben {
  font-size: 13px;
  color: var(--emerald);
  font-style: italic;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  section { padding: 60px 20px; }
  nav { padding: 0 20px; }

  .mobile-toggle { 
    display: flex; 
    position: relative; 
    z-index: 999999; 
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 90px 24px 30px;
    background: #0D1B2A;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999998;
    box-sizing: border-box;
  }

  .nav-links.open { 
    display: flex;
  }

  .nav-links > li > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    font-size: 16px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    display: none;
  }

  .nav-links > li.open .dropdown { display: block; }

  .dropdown a { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.06); }

  .hero-inner { padding: 60px 20px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: 120px 20px 60px; }
}

/* ========== PREMIUM SVG ICONS ========== */
.icon-wrap { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px; background: rgba(42,122,90,0.08); margin-bottom: 20px; color: var(--emerald); }
.services-section .icon-wrap { background: rgba(200,169,110,0.1); color: var(--gold); }

/* Service page headline icon */
.service-icon-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 12px;
  opacity: 0.9;
}
h1 .service-icon-inline svg {
  display: inline-block;
}
