/* ============================================================
   EWO 2000 – Technical Service Authority
   Global Stylesheet
   ============================================================ */

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

:root {
  --graphite:      #1c1f24;
  --graphite-mid:  #252930;
  --graphite-light:#2e333b;
  --steel:         #3a6ea5;
  --steel-light:   #4d84c0;
  --steel-pale:    #d6e4f5;
  --signal:        #e8a020;
  --signal-red:    #c0392b;
  --off-white:     #f4f5f6;
  --white:         #ffffff;
  --text-main:     #1c1f24;
  --text-muted:    #5a6170;
  --text-light:    #8a93a0;
  --border:        #dde2e8;
  --border-dark:   #3a3f48;
  --radius:        4px;
  --radius-lg:     8px;
  --font:          'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:     'Courier New', Courier, monospace;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.18);
  --transition:    .2s ease;
}

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

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--graphite);
  color: var(--text-light);
  font-size: .8rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--border-dark);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 24px;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.topbar__info { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__item { display: flex; align-items: center; gap: 6px; }
.topbar__item .icon { width: 14px; height: 14px; fill: var(--steel-light); flex-shrink: 0; }
.topbar__cta {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--signal);
  border: 1px solid var(--signal);
  padding: 4px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.topbar__cta:hover { background: var(--signal); color: var(--graphite); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
  height: 64px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--graphite);
  text-transform: uppercase;
}
.logo__sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--steel); background: var(--steel-pale); }

.btn-nav {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--steel);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  display: inline-block;
}
.btn-nav:hover { background: var(--steel-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav__link {
  font-size: .9rem;
  padding: 10px 12px;
  display: block;
}
.mobile-nav .btn-nav { margin-top: 8px; text-align: center; display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel);
  padding: 14px 28px;
  font-size: .9rem;
}
.btn--primary:hover { background: var(--steel-light); border-color: var(--steel-light); }
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  padding: 14px 28px;
  font-size: .9rem;
}
.btn--secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--outline {
  background: transparent;
  color: var(--steel);
  border-color: var(--steel);
  padding: 12px 24px;
  font-size: .85rem;
}
.btn--outline:hover { background: var(--steel); color: var(--white); }
.btn--signal {
  background: var(--signal);
  color: var(--graphite);
  border-color: var(--signal);
  padding: 14px 28px;
  font-size: .9rem;
}
.btn--signal:hover { background: #d4911c; border-color: #d4911c; }
.btn--dark {
  background: var(--graphite);
  color: var(--white);
  border-color: var(--graphite);
  padding: 14px 28px;
  font-size: .9rem;
}
.btn--dark:hover { background: var(--graphite-mid); }
.btn--sm { padding: 9px 18px; font-size: .78rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--graphite);
  color: var(--white);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.hero__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--signal);
}
.hero__h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero image placeholder */
.hero__img-placeholder {
  background: var(--graphite-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text-light);
  font-size: .8rem;
  line-height: 1.5;
}
.hero__img-placeholder .ph-icon {
  width: 40px;
  height: 40px;
  fill: var(--border-dark);
  margin-bottom: 12px;
}
.hero__img-placeholder strong {
  display: block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 6px;
}

/* Route panel */
.hero__panel {
  background: var(--graphite-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 8px;
}
.hero__panel-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dark);
}
.route-list { display: flex; flex-direction: column; gap: 6px; }
.route-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--graphite-light);
  border: 1px solid var(--border-dark);
  font-size: .88rem;
  font-weight: 600;
  color: var(--off-white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.route-item:hover { background: var(--steel); border-color: var(--steel); color: var(--white); }
.route-item .ri-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--steel-light);
  flex-shrink: 0;
}
.route-item:hover .ri-dot { background: var(--white); }

/* Hero bottom strip */
.hero__strip {
  background: var(--graphite-mid);
  border-top: 1px solid var(--border-dark);
  margin-top: 48px;
  padding: 16px 0;
}
.hero__strip-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.strip-item strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 72px 0; }
.section--dark { background: var(--graphite); color: var(--white); }
.section--grey { background: var(--off-white); }
.section--mid { background: var(--graphite-mid); color: var(--white); }

.section__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.section__lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.section--dark .section__lead,
.section--mid .section__lead { color: rgba(255,255,255,.65); }
.section--dark .section__title,
.section--mid .section__title { color: var(--white); }

/* ============================================================
   TRUST CARDS
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card {
  background: var(--graphite-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
}
.trust-card__accent {
  width: 32px;
  height: 3px;
  background: var(--steel);
  border-radius: 2px;
  margin-bottom: 16px;
}
.trust-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.trust-card__text {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ============================================================
   SERVICE ROUTE CARDS
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--steel-pale); }
.service-card__tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  background: var(--steel-pale);
  padding: 3px 8px;
  border-radius: 2px;
  align-self: flex-start;
}
.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.3;
}
.service-card__text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-card__meta {
  font-size: .78rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card__meta::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

/* ============================================================
   DIFFERENTIATION / PROCESS
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.diff-text h2 { margin-bottom: 20px; }
.diff-text p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.bullet-list { display: flex; flex-direction: column; gap: 12px; }
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-main);
  font-weight: 500;
}
.bullet-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Process steps */
.process-block { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  bottom: -16px;
  background: var(--border);
}
.process-step + .process-step { margin-top: 16px; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--steel-pale);
  color: var(--steel);
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--steel);
  position: relative;
  z-index: 1;
}
.step-body { padding-top: 8px; }
.step-body p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* Checklist */
.checklist-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
}
.checklist-box__title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.checklist { display: flex; flex-direction: column; gap: 8px; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-main);
  font-weight: 500;
}
.checklist-item::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--steel);
  border-radius: 3px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%233a6ea5' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-main);
  gap: 16px;
  user-select: none;
}
.faq-question:hover { color: var(--steel); }
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--text-light);
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); fill: var(--steel); }
.faq-item.open .faq-question { color: var(--steel); }
.faq-answer {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 0 18px;
  display: none;
  max-width: 680px;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--graphite);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-section__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
}
.cta-section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section__text {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-section__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cta-section__contact {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
.cta-section__contact a { color: rgba(255,255,255,.7); }
.cta-section__contact a:hover { color: var(--white); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item__icon {
  width: 36px;
  height: 36px;
  background: var(--steel-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 16px; height: 16px; fill: var(--steel); }
.contact-item__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item__value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-main);
}
.contact-item__value a { color: var(--steel); }
.contact-item__value a:hover { text-decoration: underline; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text-main);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(58,110,165,.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Map placeholder */
.map-placeholder {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  font-size: .82rem;
  gap: 8px;
  margin-top: 32px;
}
.map-placeholder svg { width: 32px; height: 32px; fill: var(--border); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--graphite);
  color: var(--white);
  padding: 56px 0;
  border-bottom: 3px solid var(--steel);
}
.page-hero__breadcrumb {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.55); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero__h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   INFO TABLE
   ============================================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table th {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--off-white);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { font-weight: 600; color: var(--text-main); }
.info-table td:last-child { color: var(--text-muted); }

/* ============================================================
   NOTICE BOX
   ============================================================ */
.notice-box {
  background: var(--steel-pale);
  border-left: 4px solid var(--steel);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: .88rem;
  color: var(--graphite);
  line-height: 1.6;
}
.notice-box strong { color: var(--steel); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--graphite);
  color: rgba(255,255,255,.5);
  border-top: 1px solid var(--border-dark);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo__name { font-size: 1.2rem; color: var(--white); }
.footer-brand .logo__sub { color: var(--steel-light); }
.footer-brand p {
  font-size: .82rem;
  line-height: 1.65;
  margin-top: 12px;
  color: rgba(255,255,255,.45);
}
.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}
.footer-col address a { color: rgba(255,255,255,.55); }
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-center .section__lead { margin-left: auto; margin-right: auto; }
.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; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img-placeholder { display: none; }
}

@media (max-width: 768px) {
  .nav, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 48px 0 0; }
  .hero__h1 { font-size: 1.9rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; }
  .diff-grid, .how-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero__strip-inner { gap: 16px; }
  .section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .topbar__cta { display: none; }
  .topbar__info { gap: 12px; }
  .container { padding: 0 16px; }
}
