:root {
  --bg: #f4f7fd;
  --ink: #0f1626;
  --muted: #60708f;
  --line: rgba(15, 22, 38, 0.12);
  --panel: rgba(255, 255, 255, 0.78);
  --brand: #ff6638;
  --brand-2: #f14486;
  --teal: #00b3c8;
  --shadow: 0 24px 56px rgba(22, 34, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, #ffe4d8 0%, transparent 35%),
    radial-gradient(circle at 85% 18%, #d6f4f8 0%, transparent 33%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

h1,
h2,
h3,
.logo span,
.btn {
  font-family: "Outfit", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(248, 251, 255, 0.72);
  border-bottom: 1px solid rgba(15, 22, 38, 0.06);
}

.nav-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.logo-mark {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 4px rgba(255, 102, 56, 0.2);
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #384b6a;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-cta {
  display: flex;
  gap: 8px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1d5f7c;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1.02;
}

.lead {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
}

.hero-stats strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.26rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.panel-head {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 22, 38, 0.26);
}

.panel-body {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.panel-badge {
  margin: 0;
  display: inline-block;
  width: max-content;
  font-size: 0.72rem;
  font-weight: 700;
  color: #185a48;
  background: rgba(24, 191, 128, 0.14);
  border: 1px solid rgba(24, 191, 128, 0.3);
  border-radius: 999px;
  padding: 4px 8px;
}

.panel-body h3 {
  margin: 2px 0 4px;
  font-size: 1.2rem;
}

label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3a4f6f;
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(15, 22, 38, 0.16);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(255, 102, 56, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 102, 56, 0.2);
}

.logos {
  padding-bottom: 8px;
}

.logos-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #697b97;
}

.logos-row p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #405472;
}

.section {
  padding: 46px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(15, 22, 38, 0.06);
  border-bottom: 1px solid rgba(15, 22, 38, 0.06);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.7vw, 2.8rem);
}

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

.feature-grid article,
.template-card,
.pricing-grid article,
.faq-grid details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.feature-grid article {
  padding: 14px;
}

.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 1.07rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.template-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.check-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #3a4f6f;
  line-height: 1.8;
}

.template-card {
  padding: 14px;
}

.template-card h3 {
  margin: 0 0 10px;
}

.template-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(15, 22, 38, 0.1);
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.template-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.pricing-grid article {
  position: relative;
  padding: 16px;
}

.pricing-grid article.featured {
  border-color: rgba(255, 102, 56, 0.48);
  box-shadow: 0 0 0 3px rgba(255, 102, 56, 0.17), var(--shadow);
}

.tag {
  margin: 0 0 8px;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  background: linear-gradient(110deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  padding: 4px 8px;
}

.price {
  margin: 10px 0;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-grid ul {
  margin: 0 0 12px;
  padding-left: 18px;
  line-height: 1.8;
  color: #3a4f6f;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.faq-grid details {
  padding: 12px;
}

.faq-grid summary {
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.faq-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.cta {
  padding: 46px 0 56px;
}

.cta-box {
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 237, 230, 0.82));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
}

.cta-box p {
  color: var(--muted);
  margin: 10px 0 16px;
}

.site-footer {
  border-top: 1px solid rgba(15, 22, 38, 0.08);
  padding: 16px 0 26px;
}

.footer-row {
  text-align: center;
  color: #6a7c98;
  font-size: 0.85rem;
}

.btn {
  border: 1px solid rgba(15, 22, 38, 0.18);
  border-radius: 11px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(15, 22, 38, 0.14);
}

.btn-primary {
  border: none;
  color: #fff;
  background: linear-gradient(110deg, var(--brand), #ff925f 46%, var(--brand-2));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  color: #29405e;
}

.full {
  width: 100%;
}

@media (max-width: 980px) {
  .nav-row {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .feature-grid,
  .template-wrap,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
