@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&family=Sora:wght@400;600;700&display=swap');

:root {
  --ink: #0b1220;
  --muted: #556070;
  --accent: #ff7a18;
  --accent-2: #21c7a8;
  --accent-3: #4cc9ff;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --line: #d9e1ee;
  --shadow: 0 18px 45px rgba(11, 18, 32, 0.12);
  --shadow-soft: 0 12px 30px rgba(11, 18, 32, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  letter-spacing: -0.02em;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(76, 201, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(255, 122, 24, 0.16), transparent 60%),
    linear-gradient(180deg, #f5f7fb 0%, #f0f5ff 45%, #f9fbff 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(11, 18, 32, 0.04) 0, rgba(11, 18, 32, 0.04) 1px, transparent 1px, transparent 18px);
  opacity: 0.5;
}

.topbar {
  background: #0b1220;
  color: #e6edf7;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.topbar span {
  color: #8ef7d5;
}

.nav-shell {
  background: rgba(245, 247, 251, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.65rem;
}

.brand-tag {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-link {
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
}

.mobile-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  margin: 0.75rem 0 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(255, 255, 255, 0.85);
}

.pill-accent {
  border-color: rgba(33, 199, 168, 0.4);
  background: rgba(33, 199, 168, 0.12);
  color: #0e7b64;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent-2);
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1.4rem, 3.8rem);
  line-height: 1.05;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
}

.btn-light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.card-soft {
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(11, 18, 32, 0.2);
  border-radius: 1.2rem;
}

.section-title {
  font-size: clamp(1.6rem, 1.2vw + 1.1rem, 2.2rem);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
}

.stat-card {
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
}

.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.stat-value {
  font-weight: 600;
  margin-top: 0.35rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: #0b1220;
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.service-tile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(76, 201, 255, 0.12);
  border: 1px solid rgba(76, 201, 255, 0.4);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: #0b1220;
}

.service-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #f0f5ff;
}

.service-card {
  padding: 1.5rem;
  border-radius: 1.3rem;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.3rem;
  border-top: 4px solid var(--accent);
  pointer-events: none;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guarantee {
  background: linear-gradient(135deg, rgba(76, 201, 255, 0.18), rgba(33, 199, 168, 0.18));
  border: 1px solid rgba(33, 199, 168, 0.3);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.step-card {
  padding: 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.18);
  color: #b85100;
  font-weight: 600;
  font-size: 0.85rem;
}

.review-card {
  padding: 1.6rem;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.review-card::before {
  content: "\201C";
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 122, 24, 0.3);
  font-family: 'Sora', 'Segoe UI', sans-serif;
}

.cta-banner {
  background: linear-gradient(130deg, rgba(255, 122, 24, 0.2), rgba(76, 201, 255, 0.2));
  border: 1px solid rgba(255, 122, 24, 0.3);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.footer-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.75rem 1rem;
  background: #fff;
  font-size: 0.95rem;
}

.field:focus {
  outline: none;
  border-color: rgba(76, 201, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(76, 201, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn {
    transition: none;
  }
}
