:root {
  --bg: #f8f9fa;
  --bg-soft: #eef2f7;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #7496ee;
  --accent-2: #ff7e79;
  --card: #ffffff;
  --stroke: #e0e0e0;
  --shadow: 0 20px 50px rgba(20, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 249, 250, 0.9);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 15px 30px rgba(116, 150, 238, 0.35);
}

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

.btn-ghost {
  border: 1px solid var(--stroke);
  background: #fff;
}

.hero {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 460px;
  background: radial-gradient(circle at 30% 25%, rgba(116, 150, 238, 0.28), transparent 55%),
    radial-gradient(circle at 70% 55%, rgba(255, 126, 121, 0.25), transparent 60%);
  opacity: 0.9;
  animation: pulse-glow 9s ease-in-out infinite;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg,
    rgba(116, 150, 238, 0.18),
    rgba(255, 126, 121, 0.12),
    rgba(116, 150, 238, 0.18)
  );
  opacity: 0.22;
  mix-blend-mode: multiply;
  animation: sweep 16s linear infinite;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.card-header h2 {
  font-family: "Lora", serif;
  margin-bottom: 6px;
}

.card-header p {
  color: var(--muted);
  margin-bottom: 18px;
}

.input-grid {
  display: grid;
  gap: 12px;
}

.fake-input {
  border: 2px dashed var(--accent);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
}

.input-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.input-value {
  font-weight: 600;
}

.card-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(116, 150, 238, 0.35), transparent 70%);
  right: -120px;
  top: 40px;
  filter: blur(10px);
  z-index: -1;
}

.stats {
  background: var(--bg-soft);
  padding: 24px 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 90px 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.section-copy h2 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.section-copy p {
  color: var(--muted);
}

.service-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-list li::before {
  content: "*";
  color: var(--accent);
  margin-right: 8px;
}

.service-cards {
  display: grid;
  gap: 16px;
}

.service-cards article {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.06);
}

.workflow {
  background: #fff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.workflow-card {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
}

.workflow-card h2 {
  font-family: "Lora", serif;
  margin: 12px 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 16px;
}

.timeline-step span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.coverage {
  background: var(--bg-soft);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.map-card {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.node {
  height: 70px;
  border-radius: 16px;
  border: 2px dashed var(--accent);
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.map-caption h3 {
  font-family: "Lora", serif;
  margin: 8px 0;
}

.coverage-copy h2 {
  font-family: "Lora", serif;
  margin-bottom: 12px;
}

.coverage-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.coverage-list h4 {
  font-weight: 600;
}

.pricing .section-head {
  text-align: center;
  margin-bottom: 40px;
}

.pricing .section-head h2 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.page-hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
  border-bottom: 1px solid var(--stroke);
}

.page-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
}

.page-section {
  padding: 70px 0;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.page-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.06);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill-list span {
  border: 1px solid var(--stroke);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #fff;
}

.timeline-compact {
  display: grid;
  gap: 12px;
}

.timeline-compact div {
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed var(--accent);
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.blog-card .tag {
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.price-card ul {
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
}

.price-note {
  color: var(--muted);
}

.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 18px 40px rgba(116, 150, 238, 0.2);
}

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.faq-grid h2 {
  font-family: "Lora", serif;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list div {
  background: var(--bg-soft);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
}

.contact {
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fb 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: center;
}

.contact-form {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 2px dashed var(--accent);
  font-family: inherit;
}

.contact-meta {
  margin-top: 18px;
  color: var(--muted);
}

.site-footer {
  background: #191919;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translateY(12px) scale(1.05);
    opacity: 1;
  }
}

@keyframes sweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }
}
