@import url('https://fonts.cdnfonts.com/css/tt-ramillas');

:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f4f6fa;
  accent-color: #00c896;

  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-strong: #eef4ff;
  --text: #111827;
  --muted: #6b7280;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --primary: #0c9f74;
  --primary-dark: #04785f;
  --accent: #2b7dff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 40%, #ffffff 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(12, 159, 116, 0.16);
}

.button-secondary {
  background: rgba(12, 159, 116, 0.24);
  color: #f8fbff;
  border-color: rgba(12, 159, 116, 0.22);
}

.button-secondary:hover {
  background: rgba(12, 159, 116, 0.36);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.brand-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: contain;
}

.brand-title {
  font-family: "TT Ramillas", Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: rgba(12, 159, 116, 0.12);
  color: var(--text);
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.hero,
.page-hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.82));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.5));
}

.hero-content,
.page-hero .hero-content {
  position: relative;
  max-width: 760px;
  padding: 2rem;
  text-align: center;
}

.page-hero-soft {
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.72), rgba(8, 12, 22, 0.94));
}

.hero-content h1,
.page-hero .hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 1rem 0 1rem;
  line-height: 1.05;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #f8fafc;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content p,
.page-hero .hero-content p {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.main-section {
  margin-top: 3rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.intro-grid,
.highlight-grid,
.contact-grid,
.about-grid,
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin: 3rem auto;
}

.intro-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card {
  transition: transform 220ms ease, border-color 220ms ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 159, 116, 0.2);
}

.feature-card h2,
.about-card h2,
.pricing-card h2,
.contact-card h2 {
  margin-top: 0;
}

.feature-card p,
.about-card p,
.pricing-card p,
.contact-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-grid {
  grid-template-columns: minmax(280px, 1.6fr) minmax(220px, 1fr);
  align-items: start;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
}

.pricing-card p {
  margin: 0;
  line-height: 1.5;
}

.pricing-card strong {
  display: block;
  margin: 0;
  margin-top: auto;
  font-size: 1.85rem;
  line-height: 1.1;
}

.pricing-card a.button,
.pricing-card a.button-secondary {
  margin-top: 0.75rem;
}

.pricing-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  border-color: rgba(43, 125, 255, 0.18);
}

.package-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(43, 125, 255, 0.12);
  color: #1e3a8a;
  font-size: 0.85rem;
  font-weight: 700;
}

.pricing-card strong {
  font-size: 2rem;
  color: var(--text);
}

.info-card {
  display: grid;
  gap: 1rem;
}

.info-card h3,
.about-card h3 {
  margin-top: 0;
}

.contact-card label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f9fbff;
  color: var(--text);
  font: inherit;
}

.contact-card textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-card button {
  margin-top: 0.5rem;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-grid div {
  background: var(--surface-soft);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.stat-grid strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.stat-grid span {
  color: var(--muted);
}

.site-footer {
  margin-top: auto;
  padding: 2rem 2rem 2.5rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 840px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content,
  .page-hero .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1,
  .page-hero .hero-content h1 {
    font-size: 2.25rem;
  }

  .site-header {
    padding: 1rem 1.25rem;
  }

  .site-footer,
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
