* {
  box-sizing: border-box;
}

:root {
  --bg: #0b1524;
  --bg-alt: #0f1c30;
  --card: #111d33;
  --glass: rgba(255, 255, 255, 0.08);
  --text: #e8edf5;
  --muted: #b8c2d6;
  --primary: #3ea1ff;
  --primary-strong: #1a7fd6;
  --accent: #ffd166;
  --border: #1d2a42;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(5, 14, 30, 0.4);
  --radius: 14px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(120% 120% at 10% 10%, rgba(62, 161, 255, 0.15), transparent 60%),
              radial-gradient(120% 120% at 80% 0%, rgba(255, 209, 102, 0.12), transparent 45%),
              var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 21, 36, 0.78);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 7vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0b1524;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav a:hover {
  color: var(--text);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transform: scaleX(0.7);
  transition: all 0.2s ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  letter-spacing: 0.01em;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}
.btn:focus-visible,
.lang:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn.outline {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(62, 161, 255, 0.08);
}

.btn.full {
  width: 100%;
}

.lang {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang.muted {
  color: var(--muted);
}

.lang.active {
  background: rgba(62, 161, 255, 0.18);
  border-color: rgba(62, 161, 255, 0.6);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(62, 161, 255, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: center;
  padding: 96px 7vw 56px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  right: 10%;
  top: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(62, 161, 255, 0.22), transparent 65%);
  filter: blur(2px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
}

.lede {
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 20px 0 12px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(62, 161, 255, 0.3);
  background: rgba(17, 29, 51, 0.7);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.hero-image img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(62, 161, 255, 0.25);
  box-shadow: var(--shadow);
  max-height: 420px;
  object-fit: cover;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 26px;
  font-weight: 800;
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
}

.note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 20px 7vw 10px;
}

.stat-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
}

.stat-text {
  color: var(--muted);
}

.section {
  padding: 60px 7vw 20px;
  position: relative;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.section::after {
  content: '';
  position: absolute;
  left: 7vw;
  right: 7vw;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0.6;
}

.section-heading {
  margin-bottom: 26px;
}
.service-visuals,
.clients-visuals,
.contact-visual,
.why-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.service-visuals img,
.clients-visuals img,
.contact-visual img,
.why-visual img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  max-height: 260px;
}

.contact-visual img,
.why-visual img {
  max-height: 320px;
}

.section-heading h2 {
  margin: 6px 0;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service h3 {
  margin-top: 0;
}

.service p {
  color: var(--muted);
}

.services {
  padding-bottom: 60px;
}
.process {
  padding-top: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.process-step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(17, 29, 51, 0.9);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-step h3 {
  margin: 10px 0 6px;
}

.process-step p {
  color: var(--muted);
  margin: 0;
}

.step-number {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(62, 161, 255, 0.2);
  color: var(--text);
  border: 1px solid rgba(62, 161, 255, 0.4);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 161, 255, 0.45);
  box-shadow: 0 16px 30px rgba(5, 14, 30, 0.5);
}
.testimonials {
  padding-top: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(160deg, rgba(17, 29, 51, 0.92), rgba(11, 21, 36, 0.95));
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card p {
  margin: 0 0 14px;
  color: var(--text);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 161, 255, 0.45);
  box-shadow: 0 16px 30px rgba(5, 14, 30, 0.5);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 7vw 0;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb span {
  color: var(--text);
}

.breadcrumb .sep {
  opacity: 0.6;
}
.response-time {
  margin-top: 8px;
  color: var(--accent);
  font-weight: 600;
}

.services .section-heading {
  text-align: center;
}

.services .section-heading .lede {
  margin-left: auto;
  margin-right: auto;
}

.services .service-visuals {
  justify-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  justify-items: center;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(160deg, rgba(17, 29, 51, 0.9), rgba(11, 21, 36, 0.92));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card h3 {
  margin: 0;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 161, 255, 0.45);
  box-shadow: 0 16px 30px rgba(5, 14, 30, 0.5);
}

.service-card .service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(62, 161, 255, 0.9), rgba(255, 209, 102, 0.85));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  color: #0b1524;
}

.service-card .service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card.highlight {
  border-color: rgba(62, 161, 255, 0.6);
  background: linear-gradient(160deg, rgba(62, 161, 255, 0.15), rgba(11, 21, 36, 0.92));
}

.service.highlight {
  border-color: var(--primary);
  background: linear-gradient(160deg, rgba(62, 161, 255, 0.18), rgba(17, 29, 51, 0.95));
}

.clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.client-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 161, 255, 0.5);
}

.client-logo-wrap {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.client-logo {
  width: 100%;
  height: 72px;
  object-fit: contain;
  filter: grayscale(0.1);
}

.client-name {
  text-align: center;
}

.client-name {
  font-weight: 600;
}

.fairs {
  margin-top: 24px;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
}

.contact {
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
}

input, select, textarea {
  background: #0b1524;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(62, 161, 255, 0.15);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

#form-status {
  font-size: 14px;
  min-height: 20px;
  color: var(--accent);
}

.contact-card {
  background: linear-gradient(155deg, rgba(62, 161, 255, 0.15), rgba(11, 21, 36, 0.95));
  border: 1px solid rgba(62, 161, 255, 0.4);
  box-shadow: var(--shadow-soft);
}

.contact-info .contact-line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin: 0;
}

.contact-info .label {
  color: var(--muted);
}

.cta-buttons {
  display: flex;
  gap: 10px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.small {
  color: var(--muted);
  font-size: 13px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 20px 7vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-locations a {
  color: var(--muted);
}

.footer-heading {
  font-weight: 600;
  color: var(--text);
}

.footer-links a {
  color: var(--muted);
}

.footer-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-meta {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 960px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .brand {
    justify-content: center;
    width: 100%;
  }
  .brand > div {
    text-align: center;
  }
  .actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero {
    padding-top: 60px;
  }
  .footer {
    grid-template-columns: 1fr;
  }
}
