:root {
  --brand: #073153;
  --brand-mid: #0e4f82;
  --brand-pale: #f0f5fa;
  --brand-light: #e8f0f7;
  --brand-dark: #020f1c;
  --bg: #ffffff;
  --text: #111111;
  --text-secondary: #555555;
  --border: #e2e2e2;
  --radius: 14px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "system-ui", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-mid);
}
.eyebrow.on-dark { color: #9fc1de; }

h1, h2, h3 { font-weight: 500; margin: 0; }
h2 { font-size: 34px; margin-top: 8px; }
p { color: var(--text-secondary); }

.site-nav {
  position: relative;
  z-index: 100;
  padding-top: 22px;
  margin-bottom: -86px;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-radius: 22px;
  padding: 0 12px 0 28px;
}
.site-nav .btn-primary { border-radius: 14px; padding: 11px 18px; }
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 21px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.site-nav .btn-primary { background: #fff; color: var(--brand); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary.inverse { background: #fff; color: var(--brand); }
.btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-secondary.light { background: transparent; color: var(--brand); border-color: var(--border); }
.nav-toggle { display: none; }

.hero-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 200px 0 210px;
}
.hero-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-wrap::before,
.hero-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-wrap::before {
  width: 480px;
  height: 480px;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(143,214,255,0.35), rgba(143,214,255,0) 70%);
}
.hero-wrap::after {
  width: 380px;
  height: 380px;
  right: 8%;
  bottom: -160px;
  background: radial-gradient(circle, rgba(14,79,130,0.55), rgba(14,79,130,0) 70%);
}
.hero {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: 136px;
  line-height: 0.86;
  margin-top: 22px;
  letter-spacing: -0.03em;
}
.hero h1 .fade {
  color: #8fd6ff;
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 0 22px rgba(143,214,255,0.35);
}
.hero p.lead {
  color: rgba(255,255,255,0.75);
  font-size: 20px;
  margin: 40px auto 0;
  max-width: 560px;
}
.hero p.lead + p.lead { margin-top: 26px; }
.hero-actions { margin-top: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn { min-width: 176px; justify-content: center; }

.page-hero {
  padding: 150px 0 62px;
}
.page-hero .hero p.lead:last-child { margin-bottom: 0; }

.about-hero { text-align: center; max-width: 1040px; margin: 0 auto; }
.about-hero .kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.about-hero h1 {
  font-size: 66px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
}
.about-hero h1 em {
  display: block;
  color: #8fd6ff;
  font-style: italic;
  font-weight: 500;
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  margin: 48px auto 0;
  max-width: 920px;
  text-align: center;
}
.about-cols p {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 700px;
  margin: 0 auto;
}
.team-person { text-align: center; }
.team-person img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  background: var(--brand-mid);
  margin-bottom: 20px;
  filter: grayscale(1);
}
.team-person h3 { color: #8fd6ff; font-size: 18px; font-weight: 600; }
.team-person .role { color: rgba(255,255,255,0.6); font-size: 14px; margin: 4px 0 12px; }
.team-person ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.team-person .badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; justify-content: center; }
.team-person .badges span {
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  padding: 4px 10px;
  border-radius: 999px;
}
.team-person .mail {
  font-size: 13.5px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 900px) {
  .about-hero h1 { font-size: 38px; }
  .about-cols { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
  .team-row { grid-template-columns: 1fr; }
  .team-person img { height: 280px; }
}

.page-hero h1 { font-size: 68px; margin-top: 12px; letter-spacing: -0.02em; }
.page-hero p.lead { font-size: 18px; margin: 16px auto 0; max-width: 640px; }

.marquee-outer {
  position: relative;
  z-index: 2;
  margin: -46px 0 0;
  padding: 0 24px;
}
.marquee-wrap {
  max-width: 1160px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(2,15,28,0.22);
  display: flex;
  align-items: center;
  padding: 4px 28px;
}
.marquee-track {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 92%, transparent);
}
.marquee {
  display: inline-flex;
  gap: 18px;
  padding: 18px 0;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.marquee span::after { content: "•"; color: var(--brand-mid); margin-left: 18px; font-size: 13px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.svc-card:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-3px);
}
.svc-card .title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--brand);
  transition: color 0.25s ease;
}
.svc-card:hover .title { color: #fff; }
.svc-card.cta {
  background: var(--brand);
  border-color: var(--brand);
}
.svc-card.cta .title { color: #fff; }
.svc-card.cta:hover { background: var(--brand-mid); border-color: var(--brand-mid); }
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { min-height: 96px; padding: 20px 16px; }
  .svc-card .title { font-size: 17px; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
}

section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-dark {
  background: linear-gradient(135deg, var(--brand), #0a1f35);
  color: #fff;
}
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark h2 { color: #fff; }
.section-alt { background: var(--brand-pale); }

.grid { display: grid; gap: 20px; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.card h3 { font-size: 17px; color: var(--brand); margin-bottom: 8px; }
.card p { font-size: 14.5px; margin: 0; }

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.stat-card .num { font-size: 30px; font-weight: 700; color: rgba(255,255,255,0.35); }
.stat-card h4 { font-size: 15px; margin: 6px 0 6px; color: #fff; font-weight: 600; }
.stat-card p { font-size: 13.5px; margin: 0; }

.client-band {
  background: var(--brand-pale);
  border-radius: 22px;
  padding: 54px 40px;
  margin-top: 36px;
}
.client-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 12px;
  text-align: center;
}
.client-card img {
  height: 130px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
  opacity: 0.75;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.client-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .client-band { padding: 36px 20px; }
  .client-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .client-card img { height: 88px; }
}

.quote-slider { margin-top: 34px; }
.quote-stage { display: grid; }
.quote-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  max-width: 820px;
}
.quote-slide.active { opacity: 1; visibility: visible; transform: translateY(0); }
.quote-slide .body {
  color: #fff;
  font-size: 21px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.02em;
}
.quote-slide .who { margin-top: 26px; }
.quote-slide .who .n { color: #fff; font-size: 14.5px; font-weight: 500; }
.quote-slide .who .r { color: rgba(255,255,255,0.55); font-size: 13px; }

.quote-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}
.quote-controls button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.quote-controls button:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.quote-dots { display: flex; gap: 7px; margin-left: 12px; }
.quote-dots span {
  width: 9px;
  height: 3px;
  border-radius: 9px;
  background: rgba(255,255,255,0.3);
  transition: width 0.3s ease, background 0.3s ease;
}
.quote-dots span.on { width: 24px; background: #8fd6ff; }
@media (max-width: 900px) {
  .quote-slide .body { font-size: 19px; }
}

.cta-banner {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 22px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h3 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  max-width: 620px;
}
.cta-banner p { color: rgba(255,255,255,0.7); margin: 0; font-size: 16px; }
.cta-banner .btn { font-size: 16px; padding: 16px 30px; border-radius: 16px; }
@media (max-width: 900px) {
  .cta-banner { padding: 44px 28px; }
  .cta-banner h3 { font-size: 30px; }
}

.faq-item { border-top: 1px solid var(--border); padding: 18px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: 15.5px;
}
.faq-a { display: none; margin-top: 10px; font-size: 14.5px; color: var(--text-secondary); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-q .chev { transition: transform 0.15s ease; color: var(--brand); font-size: 20px; }

.section-dark .faq-item { border-top-color: rgba(255,255,255,0.16); }
.section-dark .faq-item:last-child { border-bottom-color: rgba(255,255,255,0.16); }
.section-dark .faq-q { color: #fff; }
.section-dark .faq-q .chev { color: #8fd6ff; }
.section-dark .faq-a { color: rgba(255,255,255,0.7); }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-secondary); display: block; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: none; border-bottom: 1px solid var(--border);
  padding: 8px 2px; font-size: 15px; font-family: inherit; background: transparent;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); }
.field textarea { resize: vertical; min-height: 90px; }

.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-item .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--brand);
  color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 22px;
}
.contact-info-item .ic svg { width: 22px; height: 22px; }
.contact-info-item .label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-secondary); font-weight: 700; }
.contact-info-item .val { font-size: 15px; font-weight: 600; color: var(--brand); }

.legal .updated {
  font-size: 13px;
  color: var(--text-secondary);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}
.legal h2 {
  font-size: 22px;
  color: var(--brand);
  margin: 38px 0 12px;
}
.legal p { font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 20px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.9; }
.legal a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

footer {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: rgba(255,255,255,0.7);
  padding: 34px 0;
}
footer .container { display: block; }
footer .foot-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .foot-logo { display: block; height: 32px; width: auto; margin: 0 auto; }
footer .foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
footer .foot-tag {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.6;
  margin: 20px auto 0;
  max-width: 260px;
}
footer .foot-tag em { color: #8fd6ff; font-style: italic; }
footer .foot-col h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin: 0 0 18px;
}
footer .foot-col a {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  transition: color 0.15s ease;
}
footer .foot-col a:hover { color: #8fd6ff; }
footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.service-page {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 10px 0 20px;
}
.service-row { border-bottom: 1px solid rgba(255,255,255,0.14); }
.service-row:last-child { border-bottom: none; }
.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  transition: padding-left 0.25s ease;
}
.service-row:hover .service-head { padding-left: 10px; }
.service-title {
  font-size: 30px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  line-height: 1.15;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}
.service-row.open .service-title,
.service-row:hover .service-title { color: #fff; }
.service-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin-left: auto;
  padding-right: 22px;
}
.service-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.service-row.open .service-toggle {
  background: #8fd6ff;
  border-color: #8fd6ff;
  color: var(--brand);
  transform: rotate(45deg);
}
.service-desc {
  display: none;
  padding: 0 0 34px;
  max-width: 720px;
}
.service-row.open .service-desc { display: block; }
.service-desc p {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.service-tags span {
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 15px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 900px) {
  .service-title { font-size: 21px; }
  .service-label { display: none; }
  .service-head { padding: 20px 0; }
}

.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-step { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 16px; }
.process-step .n { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: #8fd6ff; }
.process-step h4 { font-size: 16px; margin: 10px 0 8px; color: #fff; font-weight: 600; }
.process-step p { font-size: 13.5px; margin: 0; color: rgba(255,255,255,0.65); line-height: 1.6; }
@media (max-width: 1000px) { .process { grid-template-columns: repeat(2, 1fr); } }

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 900px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 56px; }
  .page-hero h1 { font-size: 44px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid.cols-4, .grid.cols-3 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}

.form-status { margin: 14px 0 0; font-size: 14px; min-height: 20px; }
.form-status.ok { color: var(--brand-mid); }
.form-status.error { color: #b3261e; }

/* ==========================================================
   FARSIMAVAENT: valmynd og fingerd fyrir minni skjai
   ========================================================== */
.site-nav .container { position: relative; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.6px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav { padding-top: 14px; margin-bottom: -78px; }
  .site-nav .container { height: 60px; padding: 0 10px 0 18px; }
  .site-nav .btn-primary { padding: 10px 14px; font-size: 13px; }
  .nav-right { gap: 10px; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    background: rgba(4, 25, 44, 0.96);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(2,15,28,0.35);
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 13px 22px;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
  }
  .nav-links a.active { color: #8fd6ff; }
}

@media (max-width: 900px) {
  section { padding: 52px 0; }
  .container { padding: 0 20px; }
  .hero-wrap { padding: 140px 0 120px; }
  .hero h1 { font-size: clamp(38px, 13vw, 84px); line-height: 0.95; margin-top: 16px; }
  .hero p.lead { font-size: 16.5px; margin-top: 26px; }
  .page-hero { padding: 118px 0 48px; }
  .page-hero h1 { font-size: 34px; line-height: 1.15; }
  .page-hero p.lead { font-size: 16px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  h2 { font-size: 26px; }
  .section-head { margin-bottom: 28px; }

  .marquee-outer { margin-top: -34px; padding: 0 16px; }
  .marquee-wrap { padding: 2px 14px; border-radius: 18px; }
  .marquee span { font-size: 13px; }

  .cta-banner { padding: 38px 24px; text-align: left; }
  .cta-banner h3 { font-size: 26px; }
  .cta-banner .btn { font-size: 15px; padding: 14px 24px; }

  .quote-slide .body { font-size: 17px; line-height: 1.65; }
  .quote-controls { margin-top: 26px; }

  .about-hero h1 { font-size: 34px; }
  .about-hero h1 em { display: inline; }

  .service-desc p { font-size: 15px; }
  .service-tags span { font-size: 11.5px; padding: 6px 12px; }

  .form-card { padding: 22px 18px; }
  .legal h2 { font-size: 19px; margin-top: 30px; }
  .legal p, .legal ul { font-size: 15px; }

  footer { padding: 30px 0; }
  footer .foot-top { grid-template-columns: 1fr 1fr; gap: 26px; padding-bottom: 28px; }
  footer .foot-brand { grid-column: 1 / -1; }
  footer .foot-logo { height: 26px; }
  footer .foot-tag { margin-top: 14px; font-size: 14px; }
  footer .foot-col a { font-size: 14px; margin-bottom: 10px; }
  footer .foot-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .hero-wrap { padding: 124px 0 96px; }
  .hero h1 { font-size: clamp(38px, 16vw, 64px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero h1 { font-size: 29px; }
  .about-hero h1 { font-size: 29px; }
  h2 { font-size: 23px; }
  .service-title { font-size: 19px; }
  .client-band { padding: 26px 16px; }
  .client-row { gap: 10px; }
  .client-card { padding: 8px 4px; }
  .client-card img { height: 68px; }
  .cta-banner h3 { font-size: 23px; }
  .cta-banner .btn { width: 100%; justify-content: center; }
  .stat-card { padding: 20px 18px; }
  footer .foot-top { grid-template-columns: 1fr; gap: 22px; }
  footer .foot-col { text-align: center; }
}
