/* ============================================================
   maexware it solutions — One-Pager
   ============================================================ */

/* ---------- Fonts (lokal, kein externes Laden) ---------- */
@font-face {
  font-family: 'Manrope';
  src: url('Manrope-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --bg:           #ffffff;
  --bg-soft:      #f7f4ef;
  --bg-warm:      #faf6f0;
  --bg-dark:      #1a1d23;
  --bg-darker:    #111418;

  --text:         #15171c;
  --text-muted:   #555962;
  --text-light:   #8a8e96;
  --text-invert:  #f4f1ec;

  --accent:       #007d96;
  --accent-dark:  #005f73;
  --accent-soft:  #e6f3f6;
  --accent-glow:  rgba(0, 125, 150, 0.14);

  --border:       #ece6dc;
  --border-strong:#d6cec0;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  --container:    1240px;
  --container-sm: 880px;

  --shadow-sm:    0 1px 2px rgba(20,20,30,0.04), 0 2px 8px rgba(20,20,30,0.04);
  --shadow:       0 4px 16px rgba(20,20,30,0.06), 0 8px 32px rgba(20,20,30,0.06);
  --shadow-lg:    0 12px 40px rgba(20,20,30,0.10), 0 24px 60px rgba(20,20,30,0.08);

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

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

.container-sm {
  max-width: var(--container-sm);
  margin-inline: auto;
  padding-inline: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h2 {
  font-size: clamp(36px, 4vw, 52px);
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

p {
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 125, 150, 0.25);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.btn-dark {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-dark:hover {
  background: #000;
  border-color: #000;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  gap: 6px;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  margin-left: auto;
}

.header-nav a {
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s var(--ease);
}

.header-phone:hover {
  background: var(--bg-soft);
}

.header-phone svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* Burger-Button – nur auf kleineren Breiten sichtbar (siehe Media-Query) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background 0.2s var(--ease);
}

.nav-toggle:hover {
  background: var(--bg-soft);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* Aufklappbares Mobil-Menü */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

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

.mobile-nav a:hover {
  background: var(--bg-soft);
  color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(0, 125, 150, 0.08), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(0, 125, 150, 0.05), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--border);
}

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

.hero-content > .eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 800;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}

.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card-main {
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, var(--accent-soft), transparent 60%),
    var(--bg-warm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-values-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  height: 100%;
  align-content: center;
}

.hero-value {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-value-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero-value-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.1;
}

.hero-value-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   SECTION HEADER (re-used)
   ============================================================ */
.section {
  padding: 120px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-invert);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: rgba(244, 241, 236, 0.7);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: end;
}

.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.section-head .lead {
  font-size: 18px;
  line-height: 1.55;
}

.section-head .eyebrow {
  margin-bottom: 20px;
}

/* ============================================================
   CHALLENGES
   ============================================================ */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.challenge {
  position: relative;
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.25s var(--ease);
}

.challenge:hover {
  background: var(--bg-warm);
}

.challenge-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}

.challenge h3 {
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.challenge p {
  font-size: 16px;
  line-height: 1.6;
}

.challenge p + p {
  margin-top: 12px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.section-soft .service {
  background: var(--bg);
}

.service:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service h3 {
  margin-bottom: 14px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.service-list {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.45;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

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

.industry {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.industry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.industry:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,125,150,0.4);
}

.industry:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 28px;
}

.industry h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.industry p {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(244,241,236,0.65);
}

/* ============================================================
   REGION
   ============================================================ */
.region-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.region-text h2 {
  margin-bottom: 24px;
}

.region-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.region-text .lead {
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
}

.region-features {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.region-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
}

.region-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.region-feature-icon svg {
  width: 14px;
  height: 14px;
}

.region-feature strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}

.region-feature span {
  color: var(--text-muted);
}

/* Region map */
.region-map {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 55%),
    var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.region-map::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  opacity: 0.5;
}

.region-pins {
  position: relative;
  width: 100%;
  height: 100%;
}

.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pin-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 125, 150, 0.15);
}

.pin-dot.main {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 6px rgba(0, 125, 150, 0.2),
              0 0 0 12px rgba(0, 125, 150, 0.08);
}

.pin-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.pin-label.main {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  font-weight: 700;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial img {
  max-width: 170px;
  margin-bottom: 20px;
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
  margin-top: -70px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
}

.testimonial-author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT / Ansprechpartner
   ============================================================ */
.contact {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 80% 20%, var(--accent-glow), transparent 50%),
    var(--bg-warm);
}

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

.contact-person {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.person-image-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-warm));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 42px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
  overflow: hidden;
}

.person-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.person-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  color: var(--text);
}

.person-position {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-text h2 {
  margin-bottom: 24px;
}

.contact-text p {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 36px;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}

.contact-method:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 18px;
  height: 18px;
}

.contact-method-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-method-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.contact-method-arrow {
  margin-left: auto;
  color: var(--text-light);
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.contact-method:hover .contact-method-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-darker);
  color: var(--text-invert);
  padding: 80px 0 40px;
}

.footer-brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14.5px;
  color: rgba(244,241,236,0.65);
  max-width: 440px;
  line-height: 1.55;
}

.parent-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

.parent-brand-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(244,241,236,0.6);
  font-weight: 500;
}

.parent-brand-link {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
}

.parent-brand-link:hover {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 56px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(244,241,236,0.5);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 15px;
  color: rgba(244,241,236,0.85);
}

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

.footer-location {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(244,241,236,0.8);
  margin-bottom: 24px;
}

.footer-location strong {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-location a {
  color: var(--accent);
  font-weight: 600;
}

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

.footer-copy {
  font-size: 13.5px;
  color: rgba(244,241,236,0.5);
}

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

.footer-legal a {
  font-size: 13.5px;
  color: rgba(244,241,236,0.6);
}

.footer-legal a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: rgba(244,241,236,0.7);
  transition: all 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .region-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .header-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .mobile-nav.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .container,
  .container-sm {
    padding-inline: 20px;
  }
  .header-inner {
    padding: 14px 0;
  }
  .header-phone span {
    display: none;
  }
  .header-actions .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  .hero {
    padding: 60px 0 80px;
  }
  .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
  }
  .hero-sub {
    font-size: 17px;
  }
  .section {
    padding: 80px 0;
  }
  h2 {
    font-size: clamp(30px, 8vw, 40px);
  }
  .challenges-grid,
  .services-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .challenge {
    padding: 36px 28px;
  }
  .challenge h3 {
    font-size: 24px;
  }
  .contact {
    padding: 80px 0;
  }
  .contact-person {
    padding: 36px 28px;
  }
  .footer {
    padding: 60px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-brand-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
