@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --background: hsl(0 0% 98%);
  --foreground: hsl(220 20% 10%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(220 20% 10%);
  --primary: hsl(220 25% 12%);
  --primary-foreground: hsl(0 0% 98%);
  --secondary: hsl(25 95% 60%);
  --secondary-foreground: hsl(0 0% 100%);
  --muted: hsl(220 15% 94%);
  --muted-foreground: hsl(220 10% 45%);
  --accent: hsl(25 95% 60%);
  --accent-foreground: hsl(0 0% 100%);
  --border: hsl(220 15% 90%);
  --radius: 0.75rem;

  --gradient-hero: linear-gradient(135deg, hsl(220 25% 12%) 0%, hsl(220 20% 22%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(25 95% 60%) 0%, hsl(15 90% 55%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(0 0% 98%) 0%, hsl(220 15% 96%) 100%);
  --shadow-card: 0 4px 24px -4px hsl(220 25% 12% / 0.08);
  --shadow-card-hover: 0 12px 32px -8px hsl(220 25% 12% / 0.15);
  --shadow-glow: 0 0 60px -12px hsl(25 95% 60% / 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--background) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.nav-shell {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav,
.nav-actions {
  display: none;
}

.mobile-toggle {
  border: 0;
  background: transparent;
  color: var(--foreground);
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .container {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
}

.nav-link {
  color: var(--muted-foreground);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn-hero {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  box-shadow: 0 8px 24px -10px hsl(25 95% 60% / 0.6);
}

.btn-hero:hover,
.btn-hero:focus-visible {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: color-mix(in srgb, var(--primary-foreground) 38%, transparent);
  color: var(--primary-foreground);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: color-mix(in srgb, var(--primary-foreground) 10%, transparent);
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section p {
  margin: 0;
  color: var(--muted-foreground);
}

.hero {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  display: grid;
  align-items: center;
  background: var(--gradient-hero);
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  background: linear-gradient(to bottom, color-mix(in srgb, var(--primary) 50%, transparent), var(--primary));
}

.hero-body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 7vw, 4.4rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.hero p {
  max-width: 44rem;
  margin: 0 auto;
  color: color-mix(in srgb, var(--primary-foreground) 72%, transparent);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bg-subtle {
  background: var(--gradient-subtle);
}

.grid-3,
.grid-2,
.grid-services {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
}

.icon-badge {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.stat {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card h3 {
  margin: 0.6rem 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.tagline {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.chips {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip {
  border-radius: 999px;
  font-size: 0.75rem;
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 0.3rem 0.7rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .text-link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.contact-band {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-card {
  border: 1px solid color-mix(in srgb, var(--primary-foreground) 15%, transparent);
  border-radius: 1rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--primary-foreground) 8%, transparent);
}

.contact-card p {
  color: color-mix(in srgb, var(--primary-foreground) 70%, transparent);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--background);
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.page-hero {
  padding: 4.5rem 0 3.5rem;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
}

.page-hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
}

.page-hero p,
.page-hero .breadcrumb {
  color: color-mix(in srgb, var(--primary-foreground) 72%, transparent);
}

.breadcrumb {
  font-size: 0.9rem;
}

.content-block {
  padding: 3rem 0;
}

.content-block h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.content-block p,
.content-block li {
  color: var(--muted-foreground);
}

.content-block ul,
.content-block ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 1.25rem;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.notice {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.fade-in {
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (min-width: 768px) {
  .nav-shell {
    height: 5rem;
  }

  .desktop-nav,
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-toggle,
  .mobile-nav {
    display: none !important;
  }

  .section {
    padding: 7rem 0;
  }

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

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

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

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

  .footer-shell {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
