:root {
  --bg: #07111f;
  --bg-soft: #0d1a2b;
  --panel: rgba(14, 28, 46, 0.88);
  --panel-strong: #10243d;
  --line: rgba(156, 187, 218, 0.16);
  --text: #edf4fb;
  --muted: #aabdd0;
  --accent: #ff7a18;
  --accent-2: #ffd166;
  --teal: #4fe0d0;
  --shadow: 0 30px 80px rgba(1, 8, 20, 0.42);
  --radius: 28px;
  --radius-sm: 20px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 224, 208, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.15), transparent 28%),
    linear-gradient(180deg, #06101d 0%, #091728 34%, #06111e 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
}

body::before {
  top: -90px;
  left: -100px;
  background: rgba(79, 224, 208, 0.14);
}

body::after {
  right: -100px;
  bottom: 12%;
  background: rgba(255, 122, 24, 0.14);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(4, 11, 21, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
    background: unset;
    width: 80px;
    height: 80px;
    padding: 0px;
  box-shadow: 0 14px 35px rgba(255, 122, 24, 0.24);
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #dce8f4;
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone {
  color: var(--accent-2);
  font-weight: 700;
  white-space: nowrap;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.button {
  color: #07111f;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 40px rgba(255, 122, 24, 0.25);
}

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

.button:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

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

.hero,
.page-hero {
  position: relative;
  padding: 36px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: stretch;
}

.slider {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(10, 27, 47, 0.98), rgba(9, 19, 34, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  padding: 72px 56px;
  display: grid;
  align-items: end;
  background-size: cover;
  background-position: center;
}

.slide::before,
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 13, 24, 0.24), rgba(6, 13, 24, 0.84)),
    linear-gradient(120deg, rgba(79, 224, 208, 0.12), transparent 48%),
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.18), transparent 24%);
}

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

.slide-1 {
  background-image:
    linear-gradient(135deg, rgba(9, 26, 47, 0.9), rgba(11, 24, 41, 0.75)),
    url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?auto=format&fit=crop&w=1400&q=80");
}

.slide-2 {
  background-image:
    linear-gradient(135deg, rgba(9, 26, 47, 0.9), rgba(11, 24, 41, 0.75)),
    url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1400&q=80");
}

.slide-3 {
  background-image:
    linear-gradient(135deg, rgba(9, 26, 47, 0.9), rgba(11, 24, 41, 0.75)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1400&q=80");
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dbe9f5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.slide-content,
.page-banner-content {
  position: relative;
  z-index: 1;
}

.slide-content h1,
.page-banner h1,
.hero-copy h1 {
  margin: 18px 0 14px;
  max-width: 16ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.96;
}

.slide-content p,
.page-banner p,
.hero-copy p,
.section-head p,
.lead,
.copy,
.card-copy,
.timeline p,
.list-copy {
  color: var(--muted);
  line-height: 1.82;
}

.slide-content p,
.page-banner p,
.hero-copy p {
  max-width: 60ch;
  margin: 0 0 28px;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.slider-nav {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 3;
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.dot.active {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  transform: scale(1.15);
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.hero-side,
.stack {
  display: grid;
  gap: 22px;
}

.glass-card,
.panel,
.service-card,
.value-card,
.contact-card,
.timeline-card,
.faq-item,
.metric-card,
.feature-card,
.form-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 38, 63, 0.92), rgba(8, 20, 35, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.glass-card::before,
.panel::before,
.service-card::before,
.value-card::before,
.contact-card::before,
.timeline-card::before,
.metric-card::before,
.feature-card::before,
.form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

.hero-visual {
  min-height: 280px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(79, 224, 208, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(17, 38, 63, 0.9), rgba(8, 20, 35, 0.96));
}

.hero-visual img {
  width: min(88%, 320px);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
  animation: float 4.5s ease-in-out infinite;
}

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

.stats,
.metric-grid,
.service-grid,
.grid-3,
.grid-4,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.stat,
.metric-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat strong,
.metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-2);
  font-size: 1.8rem;
}

section {
  padding: 84px 0;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 14px 0 0;
  max-width: 22ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 3vw, 3.7rem);
  line-height: 1.02;
}

.section-head p {
  margin: 0;
  max-width: 72ch;
}

.split,
.two-col,
.about-grid,
.faq-wrap,
.contact-layout,
.page-hero-grid,
.process-grid,
.cta-band {
  display: grid;
  gap: 24px;
}

.split,
.about-grid,
.faq-wrap,
.contact-layout,
.page-hero-grid {
  grid-template-columns: 1fr 1fr;
}

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

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

.copy-card,
.panel-soft {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
}

.impact-list,
.bullet-list,
.timeline {
  display: grid;
  gap: 16px;
}

.impact-item,
.bullet-item,
.timeline-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.impact-index,
.bullet-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07111f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.service-icon,
.value-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  background: rgba(79, 224, 208, 0.12);
}

.service-card h3,
.value-card h3,
.contact-card h3,
.feature-card h3,
.timeline-card h3 {
  margin: 18px 0 12px;
  font-size: 1.2rem;
}

.page-banner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
  padding: 56px;
}

.page-banner.about-banner {
  background-image:
    linear-gradient(135deg, rgba(9, 26, 47, 0.9), rgba(11, 24, 41, 0.75)),
    url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1400&q=80");
}

.page-banner.services-banner {
  background-image:
    linear-gradient(135deg, rgba(9, 26, 47, 0.9), rgba(11, 24, 41, 0.75)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1400&q=80");
}

.page-banner.contact-banner {
  background-image:
    linear-gradient(135deg, rgba(9, 26, 47, 0.9), rgba(11, 24, 41, 0.75)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80");
}

.page-banner h1 {
  max-width: 12ch;
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dbe9f5;
}

.timeline {
  margin-top: 20px;
}

.timeline-card {
  padding: 24px;
  border-radius: 22px;
}

.timeline-card strong {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item h3 {
  margin: 0 0 10px;
}

.contact-card span,
.label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.contact-list,
.footer-links,
.socials {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li,
.footer-links li,
.socials li {
  margin-bottom: 12px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: 1fr 1fr;
}

input,
textarea,
select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

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

.cta-band {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(79, 224, 208, 0.14), rgba(255, 122, 24, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 18, 0.82);
}

.footer-grid {
  grid-template-columns: 1.15fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-base {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #85a0b9;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .about-grid,
  .faq-wrap,
  .contact-layout,
  .page-hero-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .grid-3,
  .contact-grid,
  .footer-grid,
  .metric-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-cta {
    width: 100%;
    display: none;
  }

  .nav-links.open,
  .nav-cta.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .slider,
  .page-banner {
    min-height: 560px;
  }

  .slide,
  .page-banner {
    padding: 56px 28px 110px;
  }

  .slider-nav {
    left: 28px;
    right: 28px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 68px 0;
  }

  .service-grid,
  .grid-3,
  .contact-grid,
  .footer-grid,
  .metric-grid,
  .grid-4,
  .stats,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .slide-content h1,
  .hero-copy h1,
  .page-banner h1,
  .section-head h2 {
    max-width: 100%;
  }
}
