/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top left, #0ea5e9 0, #0f172a 40%, #020617 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.15), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(34, 197, 94, 0.16), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.9), #020617 60%, #000 100%);
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}

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

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

ul {
  list-style: none;
}

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

main {
  padding-top: 96px;
}

/* Header & navigation */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.25), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e5e7eb;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: conic-gradient(from 160deg, #22c55e, #0ea5e9, #e11d48, #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #020617;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 10px 25px rgba(15, 23, 42, 0.8);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding: 0.3rem 0.1rem;
  color: #e5e7eb;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0f172a;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  box-shadow:
    0 12px 25px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(15, 23, 42, 0.6);
  transition:
    transform 0.1s ease-out,
    box-shadow 0.1s ease-out,
    filter 0.1s ease-out,
    background 0.2s ease-out;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.7),
    0 0 0 1px rgba(15, 23, 42, 0.7);
}

.btn:active {
  transform: translateY(0);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.7),
    0 0 0 1px rgba(15, 23, 42, 0.7);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.btn-small {
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
}

.btn-fullwidth {
  width: 100%;
}

/* Hero section */
.hero {
  padding-block: 4.5rem 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(2.1rem, 2.4vw + 1.6rem, 2.7rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #f9fafb;
  text-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.hero-content p {
  color: #e5e7eb;
  max-width: 34rem;
  line-height: 1.6;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-block: 1.6rem 1.4rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.meta-value {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
  border-radius: 1.6rem;
  padding: 1.8rem 1.7rem 1.6rem;
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-card h2 {
  color: #f9fafb;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.hero-card p {
  color: #e5e7eb;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.check-list {
  margin-bottom: 1.1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #e5e7eb;
  font-size: 0.87rem;
  margin-bottom: 0.4rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  font-size: 0.78rem;
  color: #22c55e;
}

.small-note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.6rem;
}

/* Generic sections */
.section {
  padding-block: 3.2rem;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 12%;
  bottom: 12%;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
  opacity: 0.95;
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.6rem;
  color: #f9fafb;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: #cbd5f5;
  font-size: 0.9rem;
}

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

.card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border-radius: 1.4rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(55, 65, 81, 0.85);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.95);
}

.feature-card h3 {
  font-size: 1rem;
  color: #f9fafb;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: #e5e7eb;
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.section-split h2 {
  color: #f9fafb;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.section-split p {
  color: #e5e7eb;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.bullet-list {
  margin-bottom: 1.1rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
}

.info-panel {
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.12), rgba(15, 23, 42, 0.98));
  border-radius: 1.3rem;
  padding: 1.4rem 1.35rem;
  border: 1px solid rgba(248, 113, 113, 0.35);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.98),
    0 0 0 1px rgba(15, 23, 42, 0.98);
}

.info-panel h3 {
  color: #fecaca;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.info-panel p {
  color: #fee2e2;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  font-size: 3rem;
  line-height: 1;
  color: rgba(56, 189, 248, 0.35);
  top: -0.6rem;
  left: 0.1rem;
}

.testimonial-card .quote {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.6;
}

.testimonial-card .author {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* CTA band */
.cta-band {
  padding-block: 2.8rem 3.4rem;
}

.cta-inner {
  border-radius: 1.8rem;
  padding: 1.7rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.96),
    0 0 0 1px rgba(15, 23, 42, 0.96);
}

.cta-inner h2 {
  font-size: 1.4rem;
  color: #f9fafb;
  margin-bottom: 0.15rem;
}

.cta-inner p {
  color: #e5e7eb;
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(55, 65, 81, 0.95);
  background: radial-gradient(circle at top center, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 1));
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr;
  gap: 1.8rem;
  padding-block: 1.9rem;
  font-size: 0.86rem;
  color: #9ca3af;
}

.footer-col h3 {
  color: #f9fafb;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.footer-col h4 {
  color: #e5e7eb;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.footer-col ul li {
  margin-bottom: 0.25rem;
}

.footer-col a {
  color: #d1d5db;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.95);
  padding-block: 0.7rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Layout for inner pages */
.page-hero {
  padding-block: 3.2rem 2.2rem;
}

.page-hero h1 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.9rem;
  color: #f9fafb;
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: #e5e7eb;
  font-size: 0.92rem;
  max-width: 34rem;
}

.page-layout {
  padding-bottom: 3.5rem;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.18rem 0.65rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #d1d5db;
  margin-bottom: 0.7rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #15803d);
}

.card-soft {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border-radius: 1.3rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.96),
    0 0 0 1px rgba(15, 23, 42, 0.96);
}

.card-soft h2,
.card-soft h3 {
  color: #f9fafb;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card-soft p,
.card-soft li {
  color: #e5e7eb;
  font-size: 0.9rem;
}

.card-soft + .card-soft {
  margin-top: 1.2rem;
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.75rem;
  color: #e5e7eb;
}

/* Tables (e.g. prices) */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.6rem;
  font-size: 0.88rem;
}

.table thead {
  background: rgba(15, 23, 42, 0.9);
}

.table th,
.table td {
  padding: 0.65rem 0.7rem;
  text-align: left;
}

.table th {
  font-weight: 500;
  color: #e5e7eb;
}

.table td {
  color: #d1d5db;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
}

.table tr:nth-child(even) td {
  background: rgba(15, 23, 42, 0.85);
}

.table-label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.3rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field label {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.field input,
.field textarea,
.field select {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.9rem;
  border: 1px solid rgba(55, 65, 81, 0.95);
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  color: #e5e7eb;
  outline: none;
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.95);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #22c55e;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-hint {
  font-size: 0.75rem;
  color: #9ca3af;
}

.map-placeholder {
  border-radius: 1.3rem;
  padding: 1.3rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: #e5e7eb;
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.96),
    0 0 0 1px rgba(15, 23, 42, 0.96);
}

.map-placeholder h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.map-placeholder p {
  font-size: 0.88rem;
}

.map-box {
  margin-top: 0.7rem;
  border-radius: 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  padding: 0.9rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* Timeline / steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: flex-start;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #0f766e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #022c22;
  box-shadow:
    0 12px 24px rgba(5, 46, 22, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.step-title {
  font-size: 0.93rem;
  color: #f9fafb;
  margin-bottom: 0.1rem;
}

.step-text {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.alert-box {
  border-radius: 1.1rem;
  padding: 0.9rem 0.95rem;
  font-size: 0.86rem;
  border: 1px solid rgba(248, 113, 113, 0.5);
  color: #fee2e2;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.18), rgba(15, 23, 42, 0.98));
  margin-top: 0.7rem;
}

.alert-box strong {
  color: #fecaca;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.chip {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: #d1d5db;
  background: rgba(15, 23, 42, 0.96);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner,
  .section-split,
  .page-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 80px;
  }

  .header-inner {
    padding-block: 0.6rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset-inline: 0.9rem;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
    border-radius: 1.2rem;
    padding: 0.6rem 0.7rem;
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(31, 41, 55, 0.95);
    box-shadow:
      0 24px 50px rgba(15, 23, 42, 0.98),
      0 0 0 1px rgba(15, 23, 42, 0.98);
    transition: max-height 0.2s ease-out;
  }

  .nav-links.open {
    max-height: 360px;
  }

  .nav-links li {
    padding: 0.25rem 0.2rem;
  }

  .nav-links a {
    padding-block: 0.4rem;
    display: block;
  }

  .nav-links a::after {
    display: none;
  }

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-block: 3rem 2.6rem;
  }

  .section {
    padding-block: 2.4rem;
  }

  .cta-band {
    padding-block: 2.3rem 2.7rem;
  }

  .footer-inner {
    padding-block: 1.6rem;
    grid-template-columns: minmax(0, 1fr);
  }
}

