/* ============ TOKENS ============ */
:root {
  /* Strict business palette: deep navy + warm cream + accent gold */
  --bg: #f6f4ef;
  --bg-alt: #eeeae0;
  --surface: #ffffff;
  --ink: #0e1a2b;          /* deep navy (primary text) */
  --ink-2: #2b3a52;
  --ink-3: #5a6a80;
  --ink-4: #8a94a5;
  --line: #d9d5ca;
  --line-2: #e8e4d9;
  --navy: #0e1a2b;
  --navy-2: #132a48;
  --accent: #b8893a;        /* warm muted gold/bronze */
  --accent-ink: #8c6527;
  --ok: #2d6a4f;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(14,26,43,.05), 0 1px 1px rgba(14,26,43,.03);
  --shadow: 0 10px 30px -12px rgba(14,26,43,.15), 0 2px 6px rgba(14,26,43,.05);
  --shadow-lg: 0 30px 60px -20px rgba(14,26,43,.25);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --ff-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-display: 'Unbounded', 'Manrope', sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, p { overflow-wrap: break-word; word-wrap: break-word; }
img, svg { display: block; max-width: 100%; height: auto; }
svg { flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 24px; height: 1.5px;
  background: currentColor;
}
.section-label-light { color: #d9bd87; }
.section-label-light::before { background: #d9bd87; }

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
}
.section-lead {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 640px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 0 0 rgba(0,0,0,.15), var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 0 rgba(0,0,0,.15), var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(14,26,43,.04);
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.logo-mark { width: 36px; height: 36px; flex: 0 0 36px; color: var(--navy); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.logo-sub {
  margin-top: 3px;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.15s;
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 10%, rgba(184,137,58,0.08), transparent 70%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(14,26,43,0.04), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ok);
  position: relative;
}
.eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--ok);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.5); opacity: 0.5; } 100% { transform: scale(1.8); opacity: 0; } }

.hero-content h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 18ch;
}
.h1-accent {
  color: var(--accent-ink);
  font-style: normal;
  position: relative;
  display: inline-block;
}
.h1-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: rgba(184,137,58,0.18);
  z-index: -1;
}
.hero-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge strong {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.badge span {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}
.hero-card-head { margin-bottom: 20px; }
.hero-card-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero-card-sub { font-size: 13px; color: var(--ink-3); }
.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.check {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(184,137,58,0.14);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 6px; top: 3px;
  width: 6px; height: 10px;
  border: solid var(--accent-ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hero-card-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
}

.hero-strip {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--bg-alt);
  padding: 22px 0;
}
.hero-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.hero-strip-inner > span:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--ink-4);
}
.strip-items {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.strip-items i { display: none; }
.strip-items span {
  color: var(--ink-2);
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12.5px;
}

/* ============ SERVICES ============ */
.services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-ink);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.price {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-ink);
  transition: color 0.15s, transform 0.15s;
}
.service-link:hover {
  color: var(--ink);
  transform: translateX(2px);
}
.services-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.services-note p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============ PROCESS ============ */
.process {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.process-step {
  background: var(--surface);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
}
.process-step h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============ CASES ============ */
.cases { padding: 100px 0; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: rgba(184,137,58,0.1);
  padding: 6px 10px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 16px;
}
.case-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.case-text {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.case-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  font-size: 13.5px;
  color: var(--ink-2);
}
.case-meta strong { color: var(--ink); font-weight: 600; }

/* ============ REVIEWS ============ */
.reviews {
  padding: 110px 0 100px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review blockquote {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  font-style: normal;
  flex-grow: 1;
}
.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.review figcaption strong {
  font-family: var(--ff-display);
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.review figcaption span {
  font-size: 13px;
  color: var(--ink-3);
}

/* ============ ABOUT ============ */
.about { padding: 100px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16.5px;
  color: var(--ink-2);
  margin-bottom: 16px;
  line-height: 1.65;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stats strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about-stats span {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.about-card h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--ink);
}
.region-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.region-list li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.region-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1.5px;
  background: var(--accent);
}

/* ============ CONTACT ============ */
.contact {
  background: var(--navy);
  color: #e7ecf3;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,137,58,0.14), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(184,137,58,0.06), transparent 50%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 20px;
}
.contact-text p {
  color: #c4ccd8;
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-ico {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(184,137,58,0.15);
  color: #d9bd87;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.contact-list strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.contact-list a, .contact-list span {
  font-size: 15px;
  color: #c4ccd8;
  transition: color 0.15s;
}
.contact-list a:hover { color: #fff; }

.contact-form {
  background: #fff;
  color: var(--ink);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.15s, background 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232b3a52' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.consent input {
  width: auto;
  margin: 3px 0 0;
  flex: 0 0 auto;
}
.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
}
.form-error {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(196, 56, 56, 0.08);
  border: 1px solid rgba(196, 56, 56, 0.3);
  border-radius: var(--radius-sm);
  color: #b13838;
  font-size: 14px;
  line-height: 1.5;
}
.form-success {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(45,106,79,0.1);
  border: 1px solid rgba(45,106,79,0.3);
  border-radius: var(--radius-sm);
  color: var(--ok);
  font-size: 14px;
  font-weight: 500;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0a1420;
  color: #a8b2c1;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .logo { color: #fff; margin-bottom: 18px; }
.footer-brand .logo-mark { color: #d9bd87; }
.footer-brand .logo-sub { color: #a8b2c1; }
.footer-desc {
  font-size: 14px;
  color: #8a94a5;
  line-height: 1.6;
  max-width: 360px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-size: 14px;
  color: #a8b2c1;
  transition: color 0.15s;
}
.footer-col a:hover { color: #d9bd87; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12.5px;
  color: #6b7485;
  flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { position: static; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; }
  .hero { padding-top: 48px; }
  .hero-inner { padding-bottom: 56px; }
  .services, .process, .cases, .reviews, .about, .contact { padding: 64px 0; }
  .hero-content h1 { font-size: clamp(28px, 8vw, 38px); }
  .section-head h2 { font-size: clamp(24px, 6vw, 32px); }
  .about-text h2, .contact-text h2 { font-size: clamp(24px, 6vw, 32px); }
  .hero-badges { grid-template-columns: 1fr; gap: 18px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { justify-content: flex-start; }
  .contact-form { padding: 24px; }
  .hero-strip-inner { font-size: 12px; }
  .eyebrow { font-size: 12px; padding: 6px 12px; }
  .btn { padding: 12px 18px; font-size: 14px; }
}

/* ============ FLOATING CONTACTS ============ */
.float-contacts {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.12);
  transition: transform .15s, box-shadow .2s;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.float-btn svg { width: 24px !important; height: 24px !important; flex: 0 0 24px; max-width: 24px; max-height: 24px; }
.float-wa { background: #25d366; }
.float-tel { background: var(--navy); }
.float-label { white-space: nowrap; }
@media (max-width: 680px) {
  .float-contacts { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { padding: 12px; }
  .float-label { display: none; }
}

/* ============ MOBILE NAV ============ */
body.nav-open .nav {
  display: flex;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  flex-direction: column;
  padding: 40px var(--gutter);
  gap: 8px;
  z-index: 40;
}
body.nav-open .nav a {
  padding: 16px 0;
  font-size: 20px;
  font-family: var(--ff-display);
  border-bottom: 1px solid var(--line-2);
}

/* ============ FAQ ============ */
.faq {
  padding: 110px 0 100px;
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}
.faq-list {
  max-width: 880px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--navy);
  box-shadow: 0 6px 24px rgba(11,28,58,.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: var(--navy);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s, background .2s;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--accent);
  color: #fff;
}
.faq-item summary:hover { color: var(--accent); }
.faq-answer {
  padding: 0 26px 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.faq-answer p + p,
.faq-answer p + ul { margin-top: 12px; }
.faq-answer ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-answer li { line-height: 1.65; }
@media (max-width: 680px) {
  .faq { padding: 70px 0 60px; }
  .faq-item summary { padding: 18px 50px 18px 18px; font-size: 16px; }
  .faq-item summary::after { right: 14px; width: 24px; height: 24px; font-size: 18px; }
  .faq-answer { padding: 0 18px 20px; font-size: 15px; }
}

/* ============ FOOTER LINK ============ */
.footer-link {
  color: rgba(255,255,255,.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
  transition: color .15s;
}
.footer-link:hover { color: #fff; }
.consent a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent a:hover { color: var(--accent); }
