/* =========================================================
   Bodago — dark static build
   ========================================================= */

:root {
  /* Brand */
  --brand: #3b82f6;
  --brand-600: #2563eb;
  --brand-050: rgba(59, 130, 246, .12);
  --accent: #22d3ee;

  /* Surfaces (dark) */
  --bg:        #070b14;
  --bg-2:      #0b1221;
  --surface:   #111a2e;
  --surface-2: #18243c;
  --surface-hi:#1e2b46;

  /* Ink */
  --ink:   #f3f6fb;
  --ink-2: #c8d1e0;
  --muted: #7a88a3;

  /* Lines */
  --line:        rgba(255, 255, 255, .07);
  --line-strong: rgba(255, 255, 255, .14);

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

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .35);
  --shadow:    0 20px 50px -20px rgba(0, 0, 0, .6);
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, .7);

  --container: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .18s var(--ease); }

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .4em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p  { margin: 0 0 1em; color: var(--ink-2); }
em { font-style: normal;
  background: linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ==== Labels & tags ==== */
.section-label {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-size: .78rem;
  color: var(--brand);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.accent-text {
  background: linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: .88rem; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 36px -12px rgba(59, 130, 246, .55);
}
.btn-primary:hover {
  background: var(--brand-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -10px rgba(59, 130, 246, .75);
}

.btn-ghost {
  background: rgba(255, 255, 255, .03);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

/* ==== Background decoration ==== */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.blob-a {
  width: 560px; height: 560px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(59, 130, 246, .55), transparent 65%);
  opacity: .7;
}
.blob-b {
  width: 420px; height: 420px;
  top: 38%; left: -180px;
  background: radial-gradient(circle, rgba(34, 211, 238, .4), transparent 65%);
  opacity: .55;
}
.blob-c {
  width: 500px; height: 500px;
  bottom: -200px; right: 15%;
  background: radial-gradient(circle, rgba(99, 102, 241, .35), transparent 65%);
  opacity: .5;
}

/* ==== Header ==== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .25s var(--ease), backdrop-filter .25s var(--ease), box-shadow .25s var(--ease), padding .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 11, 20, .7);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .6);
  padding: 8px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  height: 44px; width: auto;
  border-radius: 8px;
}

.primary-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.primary-nav a {
  display: inline-block;
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 16px;
  border-radius: 999px;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.primary-nav a:hover { color: var(--ink); background: rgba(255, 255, 255, .06); }
.primary-nav a.is-active { color: var(--brand); background: var(--brand-050); }

.header-cta { margin-left: 4px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 6px 6px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
  font: inherit;
  cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.lang-trigger:hover,
.lang-switch.is-open .lang-trigger {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
  color: var(--ink);
}
.flag {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .25) inset;
}
.chev {
  width: 12px;
  height: 12px;
  opacity: .7;
  transition: transform .2s var(--ease);
}
.lang-switch.is-open .chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: rgba(11, 18, 33, .96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  list-style: none;
  margin: 0;
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 60;
}
.lang-switch.is-open .lang-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.lang-menu li { margin: 0; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--ink-2);
  font: inherit;
  font-size: .93rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.lang-menu button:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
}
.lang-menu button.is-current {
  background: var(--brand-050);
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .04);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(8px);
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), opacity .25s var(--ease), top .25s var(--ease);
}
.nav-toggle span:first-child { top: calc(50% - 5px); }
.nav-toggle span:last-child  { top: calc(50% + 5px); }
.nav-toggle.is-open span:first-child { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.is-open span:last-child  { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }

/* ==== Hero ==== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats dt {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-stats dd {
  margin: 4px 0 0;
  font-size: .85rem;
  color: var(--muted);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -14px -14px -14px 14px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: var(--radius-lg);
  transform: rotate(-3deg);
  z-index: 0;
  opacity: .8;
}
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.badge-card {
  position: absolute;
  left: -24px; bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  animation: float 6s var(--ease) infinite;
}
.badge-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-050);
}
.badge-icon img { width: 24px; height: 24px; border-radius: 6px; }
.badge-card strong { display: block; font-size: .9rem; color: var(--ink); }
.badge-card span   { display: block; font-size: .78rem; color: var(--muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .82rem;
  color: var(--muted);
}
.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .18s var(--ease);
}
.hero-contact:hover { color: var(--ink); }
.hero-contact img {
  filter: brightness(0) invert(1);
  opacity: .5;
}

/* ==== Section base ==== */
.section { padding: 120px 0; position: relative; }
.section-head {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-sub { color: var(--muted); margin-top: 12px; }

/* ==== About ==== */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-sticker {
  position: absolute;
  right: -18px; bottom: 32px;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -12px rgba(59, 130, 246, .5);
  text-align: center;
}
.about-sticker strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.about-sticker span {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .75rem;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-2);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-050) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/12px no-repeat;
}

/* ==== Services ==== */
.services { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(59, 130, 246, .35), transparent 70%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  background: var(--surface-2);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.service-card:hover::after { opacity: 1; }
.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .08em;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--brand-050);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.service-icon img {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.service-card:hover .service-icon {
  background: var(--brand);
  transform: scale(1.05);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .94rem; margin: 0 0 20px; color: var(--ink-2); }
.card-link {
  position: relative;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .8rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
.card-link:hover { color: var(--accent); }

/* ==== Contact ==== */
.contact-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .6), rgba(34, 211, 238, .6), transparent);
}
.contact-inner {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.contact-inner::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, .28), transparent 60%);
  top: -140px; right: -120px;
  filter: blur(20px);
  pointer-events: none;
}
.contact-heading { position: relative; text-align: center; margin-bottom: 36px; }
.contact-heading h3 { font-size: 1.5rem; margin-bottom: 4px; }
.contact-heading .muted { margin: 0; }

.contact-list {
  list-style: none; padding: 0; margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.contact-list li {
  display: flex; gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-list li:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .04);
}
.contact-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--brand-050);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-ico img {
  filter: brightness(0) invert(1);
  opacity: .85;
}
.contact-list strong {
  display: block;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.contact-list a, .contact-list span {
  display: block;
  color: var(--ink-2);
  font-size: .95rem;
}
.contact-list a:hover { color: var(--brand); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 8px;
  position: relative;
}

/* ==== Footer ==== */
.site-footer {
  background: var(--bg-2);
  color: var(--ink-2);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59, 130, 246, .18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.site-footer .container { position: relative; }
.site-footer a { color: var(--ink-2); }
.site-footer a:hover { color: var(--ink); }
.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--muted); max-width: 360px; margin: 0; font-size: .95rem; }
.footer-logo {
  margin-bottom: 20px;
  border-radius: 8px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .95rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: .85rem;
  color: var(--muted);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { margin: 0; color: inherit; }

/* ==== Back to top ==== */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -8px rgba(59, 130, 246, .55);
  z-index: 40;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
body:has(.site-header.is-scrolled) .to-top {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover { background: var(--brand-600); }

/* ==== Reveal animation ==== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .badge-card, * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ==== Responsive ==== */
@media (max-width: 960px) {
  html { scroll-padding-top: 80px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }

  .hero { padding: 130px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-image-wrap { max-width: 360px; margin: 0 auto; }
  .hero-stats { gap: 28px; }
  .hero-stats dt { font-size: 1.6rem; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 440px; margin: 0 auto; }

  .contact-list { grid-template-columns: 1fr; }
  .contact-inner { padding: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }

  .lang-trigger { padding: 5px 7px 5px 5px; }
  .flag { width: 20px; height: 14px; }

  .primary-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    background: rgba(7, 11, 20, .92);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .primary-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav ul { flex-direction: column; gap: 2px; }
  .primary-nav a {
    display: block;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
  }
  .hero-stats dt { font-size: 1.4rem; }
  .hero-contacts { margin-top: 48px; gap: 12px 20px; font-size: .75rem; }

  .contact-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .hero { padding: 120px 0 40px; }

  .contact-inner { padding: 28px 20px; }
  .service-card { padding: 28px 24px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .btn { padding: 12px 20px; font-size: .9rem; }

  .to-top { right: 16px; bottom: 16px; }
}
