:root {
  --teal: #00AE9A;
  --red: #D02B2F;
  --orange: #FC5000;
  --yellow: #FDD900;
  --dark: #10211E;
  --dark-2: #17312c;
  --soft: #f5f9f8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #13231f;
  --muted: #51635d;
  --border: rgba(16, 33, 30, 0.1);
  --shadow: 0 24px 60px rgba(16, 33, 30, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 33, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(0, 174, 154, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(253, 217, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbfa 0%, #f4f8f7 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 33, 30, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 30, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent 85%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent 85%);
  z-index: -1;
}

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

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 96px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 33, 30, 0.08);
  background: rgba(247, 251, 250, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 6px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 33, 30, 0.08);
  box-shadow: 0 12px 26px rgba(16, 33, 30, 0.12);
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--dark-2);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.55;
  pointer-events: none;
}

.hero::before {
  width: 300px;
  height: 300px;
  right: -90px;
  top: 0;
  background: radial-gradient(circle, rgba(0, 174, 154, 0.28), transparent 70%);
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(253, 217, 0, 0.22), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 36px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.hero-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  max-width: 11ch;
}

.section-heading h2,
.hero-panel h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 14ch;
}

.hero-text {
  margin: 20px 0 0;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 56ch;
}

.badge,
.section-label,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge {
  padding: 8px 14px;
  color: #4a3a00;
  background: linear-gradient(135deg, rgba(253, 217, 0, 0.85), rgba(255, 236, 143, 0.95));
  box-shadow: 0 10px 22px rgba(253, 217, 0, 0.25);
}

.section-label,
.panel-kicker {
  color: var(--teal);
  margin-bottom: 18px;
}

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

.hero-tags {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 33, 30, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark-2);
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 33, 30, 0.05);
}

.hero-panel {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(16, 33, 30, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 174, 154, 0.16), transparent 72%);
}

.hero-panel h2 {
  margin-bottom: 18px;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--dark-2);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.panel-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 174, 154, 0.12), rgba(253, 217, 0, 0.16));
  color: var(--dark-2);
  font-weight: 700;
  border: 1px solid rgba(16, 33, 30, 0.08);
}

.portal-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(16, 33, 30, 0.04);
  border: 1px solid rgba(16, 33, 30, 0.08);
}

.portal-callout span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 800;
}

.portal-callout p {
  margin: 0;
  color: var(--dark-2);
}

.section {
  padding: 88px 0;
}

.soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(243, 248, 247, 0.95));
}

.section-heading {
  max-width: 760px;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.grid-4,
.contact-grid {
  display: grid;
  gap: 20px;
}

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

.card {
  position: relative;
  background: var(--surface-strong);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 174, 154, 0.28);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: var(--dark);
}

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

.service-grid {
  margin-top: 34px;
}

.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-index {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 174, 154, 0.12);
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.steps-grid {
  margin-top: 34px;
}

.step-card strong {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(208, 43, 47, 0.12);
  color: var(--red);
  letter-spacing: 0.14em;
}

.contact-section {
  background: linear-gradient(180deg, rgba(16, 33, 30, 0.03), rgba(255, 255, 255, 0.92));
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  max-width: 58ch;
}

.contact-methods {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.contact-link span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 800;
}

.contact-link strong {
  color: var(--dark);
  font-size: 1.05rem;
}

.contact-tip {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(253, 217, 0, 0.18);
  color: var(--dark-2);
  font-weight: 700;
}

.form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(16, 33, 30, 0.08);
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-2);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 33, 30, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--dark);
  background: rgba(247, 251, 250, 0.95);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: #7a8a85;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 174, 154, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 174, 154, 0.12);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.contact-link:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(0, 174, 154, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #018d7d);
  color: white;
  box-shadow: 0 16px 30px rgba(0, 174, 154, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(0, 174, 154, 0.3);
}

.btn-outline {
  border-color: rgba(208, 43, 47, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: rgba(208, 43, 47, 0.4);
  background: rgba(208, 43, 47, 0.06);
}

.btn-portal {
  border-color: rgba(16, 33, 30, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark);
}

.btn-portal:hover {
  border-color: rgba(0, 174, 154, 0.28);
  background: rgba(0, 174, 154, 0.06);
}

.btn-small {
  padding: 11px 16px;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

.footer {
  padding: 30px 0 42px;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 18px;
  }

  .header-inner {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .hero-grid,
  .contact-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-tags {
    gap: 10px;
  }

  .hero-tags span {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .hero-panel,
  .form {
    padding: 22px;
    border-radius: 24px;
  }
}
