:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --accent: #f97316;
  --accent-strong: #ea580c;
  --cta: #0ea5a4;
  --line: #dbe3ec;
  --shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -10%, #ffe7cf 0%, transparent 34%),
    radial-gradient(circle at 92% 6%, #d2f6f4 0%, transparent 30%),
    var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.background-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.26;
  pointer-events: none;
  z-index: -1;
}

.shape-one {
  width: 460px;
  height: 460px;
  background: #ffcfa7;
  top: -160px;
  left: -170px;
}

.shape-two {
  width: 380px;
  height: 380px;
  background: #9de7e7;
  right: -120px;
  bottom: 4%;
}

.hero {
  width: min(1120px, 94%);
  margin: 0 auto;
  padding: 1.4rem 0 3.2rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(219, 227, 236, 0.8);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.brand {
  font-family: "Teko", sans-serif;
  font-size: clamp(1.7rem, 3.8vw, 2.2rem);
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
}

.hero-content {
  margin-top: 3.3rem;
  max-width: 760px;
  animation: fade-up 700ms ease both;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0f766e;
  margin-bottom: 1rem;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-family: "Teko", sans-serif;
  font-size: clamp(3rem, 7.6vw, 5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

p, li {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  margin: 1rem 0 1.3rem;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  max-width: 680px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}

.hero-points span {
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  font-size: 0.9rem;
  color: #334155;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-call {
  background: var(--cta);
  color: #fff;
}

main {
  width: min(1040px, 94%);
  margin: 0 auto 3rem;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.quick-stats article {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.stat-value {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  color: #0f766e;
  letter-spacing: 0.02em;
}

.stat-label {
  margin: 0.25rem 0 0;
  line-height: 1.45;
}

.panel {
  background: linear-gradient(160deg, var(--surface), var(--surface-soft));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2.5vw, 2.1rem);
  margin-bottom: 1.1rem;
}

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

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

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

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact form {
  display: grid;
  gap: 0.65rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.contact-aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

label {
  font-weight: 700;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid #fed7aa;
  border-color: var(--accent);
}

.form-status {
  min-height: 1.2rem;
  margin: 0.35rem 0 0;
  font-weight: 500;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cta), #0d9488);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

footer {
  text-align: center;
  padding: 0.7rem 1rem 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .quick-stats,
  .two-col,
  .cards,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-top: 2.2rem;
  }
}

@media (max-width: 560px) {
  .nav {
    border-radius: 16px;
    padding: 0.6rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    line-height: 1;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .floating-call {
    width: 58px;
    height: 58px;
    font-size: 0.9rem;
  }
}
