:root {
  color-scheme: dark;
  --bg: #07080D;
  --surface: #0D101B;
  --surface-soft: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #F4F7FB;
  --muted: #A6B1D3;
  --accent: #00D4AA;
  --accent-soft: rgba(0,212,170,0.16);
  --shadow: 0 24px 80px rgba(0,0,0,0.18);
  font-family: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top right, rgba(0,212,170,0.12), transparent 22%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

button {
  border: 0;
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 130px;
  gap: 0.5rem;
}

.brand img {
  height: 130px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.site-footer .brand img {
  height: 100px;
  max-width: 150px;
}

.brand span:first-child {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button-primary {
  background: var(--accent);
  color: #060707;
}

.button-primary:hover {
  transform: translateY(-1px);
  background: #00f4c6;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(0,212,170,0.45);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: rgba(0,212,170,0.1);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  display: grid;
  gap: 1.4rem;
}

.hero-panel {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.hero-panel h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero-panel p {
  color: var(--text);
  margin: 1rem 0 0;
  line-height: 1.85;
}

.trust-bar {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.trust-track {
  display: flex;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  animation: marquee 20s linear infinite;
}

.trust-item {
  min-width: 140px;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section {
  padding: 5rem 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-header p {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.value-grid,
.featured-grid,
.service-grid,
.case-grid,
.team-grid {
  display: grid;
  gap: 1.5rem;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid label {
  display: grid;
  gap: 0.65rem;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.featured-card,
.service-card,
.case-card,
.team-card,
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  background: rgba(255,255,255,0.03);
  padding: 2rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-card:hover,
.featured-card:hover,
.service-card:hover,
.case-card:hover,
.team-card:hover,
.faq-item.open {
  transform: translateY(-6px);
  border-color: rgba(0,212,170,0.3);
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

.value-card strong,
.featured-card strong,
.service-card strong,
.case-card strong {
  color: var(--text);
}

.value-card h3,
.service-card h3,
.case-card h3,
.team-card h3 {
  margin: 1.2rem 0 0.9rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.value-card p,
.service-card p,
.case-card p,
.team-card p,
.section-copy,
.timeline-copy,
.faq-answer {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.featured-grid {
  grid-template-columns: 1.35fr 0.9fr;
  align-items: stretch;
}

.featured-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(0,212,170,0.12);
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.featured-card h3 {
  font-size: 2rem;
  margin-top: 1.5rem;
}

.featured-card p {
  margin: 1.35rem 0 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-wrapper {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-copy {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
}

.testimonial-author {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform 180ms ease, background-color 180ms ease;
}

.control-dot.active {
  transform: scale(1.25);
  background: var(--accent);
}

.final-push {
  margin-top: 4rem;
  padding: 2.5rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0,212,170,0.16), rgba(255,255,255,0.04));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.final-push h2 {
  margin: 0;
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
}

.final-push p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(7, 8, 13, 0.96);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1220px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand p {
  max-width: 320px;
  color: var(--muted);
}

.footer-sitemap,
.footer-legal {
  display: grid;
  gap: 0.75rem;
}

.footer-sitemap a,
.footer-legal a {
  color: var(--muted);
  font-size: 0.95rem;
}

.newsletter-form {
  display: grid;
  gap: 0.85rem;
}

.newsletter-form input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.newsletter-form button {
  width: 100%;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: var(--accent);
  color: #060707;
  font-weight: 700;
}

.newsletter-message {
  color: var(--accent);
  font-size: 0.92rem;
}

.footer-legal {
  align-self: end;
}

.footer-legal p {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-legal a {
  display: inline-block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

@media (max-width: 960px) {
  .hero-grid,
  .featured-grid,
  .case-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 1.25rem;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    padding-top: 4rem;
  }

  .trust-track {
    animation-duration: 24s;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-push {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  transition: max-height 260ms ease;
}

.faq-item.open .faq-answer {
  padding-bottom: 1.4rem;
}

.map-panel {
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  min-height: 320px;
  position: relative;
}

.map-graphic {
  position: absolute;
  inset: 1.75rem;
  background: linear-gradient(180deg, rgba(0,212,170,0.08), rgba(255,255,255,0.02));
  border-radius: 24px;
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(0,212,170,0.35);
}

.pin-1 { top: 30%; left: 24%; }
.pin-2 { top: 58%; left: 50%; }
.pin-3 { top: 44%; left: 78%; }

@media (max-width: 560px) {
  .map-panel {
    min-height: 260px;
  }
}
