/* =====================================================
   sofort-firma.de — Shared Stylesheet
   MDFU GmbH · Version 1.0
===================================================== */

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --navy:      #0c1f3f;
  --navy-mid:  #152d55;
  --navy-light:#1e3d6e;
  --gold:      #c9a84c;
  --gold-light:#e8c96a;
  --white:     #ffffff;
  --gray-100:  #f4f6fa;
  --gray-200:  #e8ecf3;
  --gray-400:  #9aa5b8;
  --gray-700:  #4a5568;
  --gray-900:  #1a202c;
  --green:     #38a169;
  --red:       #e53e3e;

  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.18);

  --transition: 200ms ease;
  --max-width: 1200px;
}

/* ===========================
   BASE RESET
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--gray-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   LAYOUT
=========================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--gray-100); }
.section--navy { background: var(--navy); color: var(--white); }

.section__label {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
  color: var(--navy); margin-bottom: 16px;
}
.section--navy .section__title { color: var(--white); }
.section__subtitle { font-size: 1.05rem; color: var(--gray-700); max-width: 640px; line-height: 1.7; }
.section--navy .section__subtitle { color: var(--gray-400); }
.section__header { margin-bottom: 48px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,.4); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--sm { padding: 9px 18px; font-size: .84rem; }

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.header__inner { display: flex; align-items: center; height: 88px; gap: 24px; }

.header__brand { display: flex; flex-direction: column; flex-shrink: 0; }
.header__logo { flex-shrink: 0; display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.header__logo-main { font-size: 1.35rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.header__logo-main span { color: var(--gold); }
.header__logo-sub { font-size: .62rem; font-weight: 500; color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.header__logo-trust { font-size: .68rem; font-weight: 600; color: var(--gold); margin-top: 4px; white-space: nowrap; text-decoration: none; display: block; }
.header__logo-trust:hover { opacity: .8; }

.nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-size: .85rem; font-weight: 600;
  color: var(--white); border-radius: var(--radius-sm);
  transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.nav__link:hover, .nav__item:hover > .nav__link { color: var(--white); background: rgba(255,255,255,.07); }
.nav__link--active { color: var(--gold) !important; }
.nav__link svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform var(--transition); }
.nav__item:hover > .nav__link svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 230px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100; border: 1px solid var(--gray-200);
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-link { display: block; padding: 9px 14px; font-size: .84rem; color: var(--navy); border-radius: var(--radius-sm); transition: var(--transition); }
.nav__dropdown-link:hover, .nav__dropdown-link--active { color: var(--navy); background: var(--gray-100); font-weight: 600; }
.nav__dropdown-divider { height: 1px; background: var(--gray-200); margin: 4px 0; }
.nav__dropdown-group { padding: 4px 14px 2px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); margin-top: 4px; }

/* Mini flags */
.mini-flag { display:inline-block; width:16px; height:11px; border-radius:1px; vertical-align:middle; margin-right:5px; flex-shrink:0; position:relative; overflow:hidden; }
.mini-flag--de { background:linear-gradient(to bottom, #000 33.33%, #CC0000 33.33%, #CC0000 66.66%, #FFCE00 66.66%); }
.mini-flag--ch { width:11px; height:11px; border-radius:1px; background:#FF0000; }
.mini-flag--ch::before { content:''; position:absolute; background:#fff; top:28%; bottom:28%; left:42%; right:42%; }
.mini-flag--ch::after  { content:''; position:absolute; background:#fff; left:28%; right:28%; top:42%; bottom:42%; }
.mini-flag--gb { background:#fff; border:1px solid #e0e0e0; }
.mini-flag--gb::before { content:''; position:absolute; background:#CC0000; top:38%; bottom:38%; left:0; right:0; }
.mini-flag--gb::after  { content:''; position:absolute; background:#CC0000; top:0; bottom:0; left:38%; right:38%; }
.mini-flag--fr { background:linear-gradient(to right,#002395 33.33%,#ededed 33.33%,#ededed 66.66%,#ED2939 66.66%); }
.mini-flag--es { background:linear-gradient(to bottom,#AA151B 25%,#F1BF00 25%,#F1BF00 75%,#AA151B 75%); }
.mini-flag--ru { background:linear-gradient(to bottom,#fff 33.33%,#0039A6 33.33%,#0039A6 66.66%,#D52B1E 66.66%); }
.mini-flag--sa { background:#006C35; }
.mini-flag--sa::before { content:''; position:absolute; background:rgba(255,255,255,.6); top:42%; bottom:42%; left:8%; right:8%; }
.mini-flag--cn { background:#DE2910; }
.mini-flag--cn::before { content:''; position:absolute; background:#FFDE00; top:18%; bottom:45%; left:7%; right:68%; }

.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.header__cta { padding: 9px 18px; font-size: .84rem; }
.header__trust { font-size: .72rem; color: var(--gold); font-weight: 600; white-space: nowrap; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 56px; position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.page-hero .container { width: 100%; }
.page-hero::after {
  content: ''; position: absolute; right: -150px; top: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,.4); transition: var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px; padding: 5px 14px;
  font-size: .73rem; font-weight: 600; color: var(--gold-light);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px;
}
.page-hero__title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.page-hero__title em { font-style: normal; color: var(--gold); }
.page-hero__sub { font-size: 1rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 600px; margin-bottom: 28px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sub-nav for parent pages */
.subnav { background: var(--white); border-bottom: 2px solid var(--gray-200); position: sticky; top: 72px; z-index: 100; }
.subnav__inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__link { display: block; padding: 14px 20px; font-size: .85rem; font-weight: 500; color: var(--gray-700); white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.subnav__link:hover { color: var(--navy); }
.subnav__link--active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }

/* ===========================
   GEO ANSWER BLOCK
=========================== */
.geo-block {
  border-left: 4px solid var(--gold); padding: 18px 28px;
  background: var(--navy-mid); border-radius: 0 var(--radius) var(--radius) 0;
}
.geo-block--page { margin-bottom: 48px; }
.geo-block__label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.geo-block__text { font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.65; }

/* Homepage GEO pullup */
.geo-block--pullup { margin: -36px 0 0; position: relative; z-index: 10; }

/* ===========================
   STATS BAR
=========================== */
.stats { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: 36px 0; }
.stats__item { text-align: center; padding: 0 20px; border-right: 1px solid var(--gray-200); }
.stats__item:last-child { border-right: none; }
.stats__number { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 5px; }
.stats__number span { color: var(--navy); }
.stats__label { font-size: .8rem; color: var(--gray-400); font-weight: 500; }

/* ===========================
   CONTENT + SIDEBAR
=========================== */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.content-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 32px 0 12px; line-height: 1.3; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.content-body p { font-size: .95rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 14px; }
.content-body p strong { color: var(--navy); }
.content-body p:last-child { margin-bottom: 0; }
.content-body a { color: var(--navy); text-decoration: underline; }

.usp-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.usp-list__item { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: var(--gray-700); line-height: 1.55; }
.usp-list__icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.usp-list__icon svg { width: 12px; height: 12px; color: var(--gold); }

.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--gray-100); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-card--navy { background: var(--navy); color: var(--white); }
.sidebar-card__title { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.sidebar-card--navy .sidebar-card__title { color: var(--gold); }
.sidebar-card__text { font-size: .83rem; color: var(--gray-700); line-height: 1.65; margin-bottom: 16px; }
.sidebar-card--navy .sidebar-card__text { color: rgba(255,255,255,.65); }
.sidebar-card__price { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.sidebar-card--navy .sidebar-card__price { color: var(--white); }
.sidebar-card__price-from { font-size: .75rem; color: var(--gray-400); }
.sidebar-card__price-note { font-size: .72rem; color: var(--gray-400); margin-top: 4px; margin-bottom: 16px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav__link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: .84rem; color: var(--gray-700); border-radius: var(--radius-sm); border: 1px solid transparent; transition: var(--transition); }
.sidebar-nav__link:hover { color: var(--navy); background: var(--white); border-color: var(--gray-200); }
.sidebar-nav__link--active { color: var(--navy); background: var(--white); border-color: var(--gold); font-weight: 600; }

.sidebar-trustpilot { display: flex; align-items: center; gap: 8px; padding: 14px 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); }
.sidebar-trustpilot__stars { color: #00b67a; font-size: 1.1rem; letter-spacing: 1px; }
.sidebar-trustpilot__text { font-size: .78rem; color: var(--gray-700); line-height: 1.4; }
.sidebar-trustpilot__text strong { color: var(--gray-900); }

/* ===========================
   USP CARDS
=========================== */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.usp-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); position: relative; overflow: hidden; }
.usp-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.usp-card:hover { border-color: var(--gray-400); box-shadow: var(--shadow); }
.usp-card:hover::before { transform: scaleX(1); }
.usp-card--featured { background: var(--navy); border-color: var(--navy); }
.usp-card--featured::before { transform: scaleX(1); }
.usp-card__icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--gray-100); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.usp-card--featured .usp-card__icon { background: rgba(201,168,76,.15); }
.usp-card__icon svg { width: 22px; height: 22px; color: var(--navy); }
.usp-card--featured .usp-card__icon svg { color: var(--gold); }
.usp-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.usp-card--featured .usp-card__title { color: var(--white); }
.usp-card__text { font-size: .85rem; color: var(--gray-700); line-height: 1.6; }
.usp-card--featured .usp-card__text { color: rgba(255,255,255,.65); }

/* ===========================
   TEAM CARDS
=========================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow); border-color: var(--gray-400); }
.team-card__avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.team-card__name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: .78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.team-card__text { font-size: .83rem; color: var(--gray-700); line-height: 1.6; }

/* ===========================
   PILLARS (Konzept)
=========================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar { border-radius: var(--radius-lg); padding: 32px 28px; }
.pillar--1 { background: var(--navy); }
.pillar--2 { background: var(--navy-mid); }
.pillar--3 { background: var(--navy-light); }
.pillar__number { font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 16px; opacity: .6; }
.pillar__title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.pillar__text { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ===========================
   CUSTOMER TYPES
=========================== */
.customer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.customer-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 26px; transition: var(--transition); }
.customer-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.customer-card__icon { font-size: 2rem; margin-bottom: 14px; }
.customer-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.customer-card__text { font-size: .85rem; color: var(--gray-700); line-height: 1.65; }

/* ===========================
   TRUSTPILOT RANKINGS
=========================== */
.tp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.tp-badge { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; text-align: center; transition: var(--transition); }
.tp-badge:hover { border-color: #00b67a; box-shadow: 0 4px 16px rgba(0,182,122,.1); }
.tp-badge__rank { font-size: 2rem; font-weight: 900; color: #00b67a; line-height: 1; margin-bottom: 4px; }
.tp-badge__cat { font-size: .78rem; color: var(--gray-700); font-weight: 500; }
.tp-badge__date { font-size: .7rem; color: var(--gray-400); margin-top: 6px; }

.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px; }
.review-card__stars { color: #00b67a; font-size: .95rem; margin-bottom: 10px; }
.review-card__text { font-size: .875rem; color: var(--gray-700); line-height: 1.65; font-style: italic; margin-bottom: 12px; }
.review-card__author { font-size: .75rem; color: var(--gray-400); font-weight: 600; }

/* ===========================
   COMPARE TABLE
=========================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare__col { border-radius: var(--radius-lg); overflow: hidden; }
.compare__header { padding: 18px 24px; font-weight: 700; font-size: .95rem; }
.compare__col--others .compare__header { background: var(--gray-200); color: var(--gray-700); }
.compare__col--us .compare__header { background: var(--navy); color: var(--white); }
.compare__col--us .compare__header span { color: var(--gold); }
.compare__list { border: 1px solid var(--gray-200); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; }
.compare__col--us .compare__list { border-color: var(--navy); }
.compare__row { display: flex; align-items: flex-start; gap: 12px; padding: 13px 20px; border-bottom: 1px solid var(--gray-200); font-size: .875rem; }
.compare__col--us .compare__row { border-bottom-color: rgba(255,255,255,.06); background: var(--navy-mid); color: rgba(255,255,255,.82); }
.compare__row:last-child { border-bottom: none; }
.compare__icon { flex-shrink: 0; width: 17px; height: 17px; margin-top: 2px; }
.compare__icon--no { color: var(--red); }
.compare__icon--yes { color: var(--green); }

/* ===========================
   PROCESS STEPS
=========================== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 27px; left: calc(12.5% + 14px); right: calc(12.5% + 14px); height: 2px; background: linear-gradient(to right, var(--gold), var(--navy-light)); }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-step__number { width: 54px; height: 54px; border-radius: 50%; background: var(--navy); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--gold); position: relative; z-index: 1; margin-bottom: 18px; }
.process-step__title { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step__text { font-size: .81rem; color: var(--gray-400); line-height: 1.6; }

/* ===========================
   FAQ
=========================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-size: .92rem; font-weight: 600; color: var(--navy); background: var(--white); cursor: pointer; border: none; text-align: left; transition: background var(--transition); }
.faq-item__question:hover { background: var(--gray-100); }
.faq-item.open .faq-item__question { background: var(--gray-100); }
.faq-item__icon { width: 20px; height: 20px; flex-shrink: 0; background: var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-item__icon { background: var(--gold); transform: rotate(45deg); }
.faq-item__icon svg { width: 12px; height: 12px; color: var(--navy); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.faq-item.open .faq-item__answer { max-height: 600px; }
.faq-item__answer-inner { padding: 16px 22px 20px; font-size: .875rem; color: var(--gray-700); line-height: 1.72; border-top: 1px solid var(--gray-200); }
.faq-item__answer-inner a { color: var(--navy); text-decoration: underline; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 70%); }
.cta-section__inner { position: relative; z-index: 1; }
.cta-section__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: -.02em; }
.cta-section__title span { color: var(--gold); }
.cta-section__sub { font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-section__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-section__note { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ===========================
   FOOTER
=========================== */
.footer { background: #080f1e; color: rgba(255,255,255,.55); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer__brand-name { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.footer__brand-name span { color: var(--gold); }
.footer__brand-sub { font-size: .7rem; color: rgba(255,255,255,.3); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; }
.footer__brand-text { font-size: .8rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,.4); }
.footer__langs { display: flex; flex-wrap: wrap; gap: 5px; }
.footer__lang { font-size: .7rem; padding: 3px 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 4px; color: rgba(255,255,255,.38); cursor: pointer; transition: var(--transition); }
.footer__lang:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.28); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__link { font-size: .81rem; color: rgba(255,255,255,.45); transition: var(--transition); }
.footer__link:hover { color: var(--gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: .76rem; flex-wrap: wrap; gap: 12px; }
.footer__bottom > span { font-size: .60rem; }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,.3); transition: var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-steps::before { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .tp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header__actions .btn { display: none; }
  .header__trust { display: none; }
  .hamburger { display: flex; }
  .nav.open { display: flex; flex-direction: column; position: fixed; inset: 88px 0 0; background: var(--navy); overflow-y: auto; padding: 16px; z-index: 999; }
  .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.05); border: none; padding: 4px 0 4px 12px; display: none; }
  .nav__item.open .nav__dropdown { display: block; }
  .nav__dropdown-link { color: rgba(255,255,255,.65); }
  .nav__dropdown-link:hover { color: var(--white); background: transparent; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-bottom: 1px solid var(--gray-200); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3), .stats__item:nth-child(4) { border-bottom: none; }
  .usp-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .customer-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .tp-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .section { padding: 52px 0; }
}
