:root {
  --bg: #f5f5f4;
  --bg-soft: #fafaf9;
  --bg-strong: #e7e5e4;
  --card: #ffffff;
  --accent: #15803d;
  --accent-soft: #dcfce7;
  --accent-soft-border: #bbf7d0;
  --accent-text: #064e3b;
  --text: #1f2933;
  --muted: #6b7280;
  --border: #d4d4d4;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fefce8 0, #f5f5f4 45%, #e5e7eb 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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

a:hover {
  text-decoration: none;
}

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

@media (min-width: 960px) {
  .page {
    padding: 28px 0 48px;
  }
}



.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #0f172a;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.8),
    0 6px 18px rgba(15, 23, 42, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-mark img {
  width: 30px;
  height: auto;
  display: block;
}

.brand-text-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.nav-links {
  display: none;
  gap: 14px;
  color: var(--muted);
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.18s ease-out;
}

.nav-links a:hover {
  color: #111827;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-login {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft-border);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: var(--accent-text);
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.12);
}

.nav-login span.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}



.hero {
  background: linear-gradient(135deg, #ffffff, #f5f5f4);
  border-radius: 24px;
  padding: 22px 18px 20px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  margin-bottom: 26px;
}

@media (min-width: 900px) {
  .hero {
    padding: 26px 24px 22px;
  }
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-tagline span {
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr);
  gap: 18px;
}

@media (min-width: 900px) {
  .hero-main {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
  }
}

.hero-title {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: #111827;
}

@media (min-width: 720px) {
  .hero-title {
    font-size: 28px;
  }
}

.hero-lede {
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 16px;
}

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

.btn-primary {
  padding: 9px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #f9fafb;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow:
    0 0 0 1px rgba(21, 128, 61, 0.18),
    0 10px 24px rgba(22, 163, 74, 0.28);
}

.btn-primary span.arrow {
  font-size: 14px;
}

.btn-ghost {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.hero-side {
  padding: 12px 12px 10px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fafaf9;
  font-size: 13px;
}

.hero-side h2 {
  font-size: 14px;
  margin: 0 0 6px;
  color: #111827;
}

.hero-side p {
  margin: 0 0 10px;
  color: var(--muted);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}

.badge {
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #4b5563;
}



section {
  margin-bottom: 26px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.section-title {
  font-size: 17px;
  margin-bottom: 10px;
  color: #111827;
}

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

@media (min-width: 860px) {
  .section-grid.two-cols {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
  .section-grid.three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #111827;
}

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

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

ul li + li {
  margin-top: 4px;
}

.inline-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.inline-list li {
  padding: 3px 8px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 12px;
}



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

@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.price-card {
  position: relative;
}

.price-tag {
  font-size: 20px;
  margin: 0 0 4px;
  color: #111827;
}

.price-tag span {
  font-size: 13px;
  color: var(--muted);
  margin-left: 4px;
}

.plan-label {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ecfdf3;
  color: var(--accent-text);
  border: 1px solid var(--accent-soft-border);
  margin-bottom: 6px;
}

.plan-label.muted {
  background: #f9fafb;
  color: #4b5563;
  border-color: #e5e7eb;
}



.contact {
  margin-top: 4px;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  padding: 16px 14px 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}

.contact h1,
.contact h2 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #111827;
}

.contact p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

@media (min-width: 720px) {
  .form-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

label {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
  color: #4b5563;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #f9fafb;
  color: var(--text);
  padding: 8px 9px;
  font-size: 13px;
  resize: vertical;
}

textarea {
  min-height: 110px;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

button[type="submit"] {
  margin-top: 4px;
}



.terms-block {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  color: var(--muted);
}

.terms-block h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 15px;
  color: #111827;
}

.terms-block h3 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #111827;
}

.terms-block p {
  margin: 0 0 8px;
}

.terms-block ul {
  margin-bottom: 8px;
}



.footer {
  margin-top: 20px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.footer span {
  opacity: 0.9;
}

.footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.banner {
  margin-bottom: 28px;
  border-radius: 24px;
  overflow: hidden;
  height: 220px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

@media (min-width: 900px) {
  .banner {
    height: 260px;
  }
}

.banner-index {
  background-image:
    linear-gradient(to bottom right, rgba(15,23,42,0.30), rgba(15,23,42,0.05)),
    url("https://images.unsplash.com/photo-1509099863731-ef4bff19e808?auto=format&fit=crop&w=1600&q=80");
}

.banner-about {
  background-image:
    linear-gradient(to bottom right, rgba(15,23,42,0.30), rgba(15,23,42,0.05)),
    url("about-banner.png");
  background-size: cover;
  background-position: center;
}

.banner-pricing {
  background-image:
    linear-gradient(to bottom right, rgba(15,23,42,0.32), rgba(15,23,42,0.06)),
    url("https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1600&q=80");
}


/* Mobile navigation (hamburger + drawer) */

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: rgba(248, 250, 252, 0.94);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.10);
  cursor: pointer;
  padding: 0;
  margin-right: 6px;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.16s ease-out, opacity 0.16s ease-out;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }
}

/* Drawer shell */

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.nav-drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.nav-drawer.open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 78%;
  max-width: 320px;
  background: #f9fafb;
  border-left: 1px solid #e5e7eb;
  box-shadow: -18px 0 40px rgba(15, 23, 42, 0.35);
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
  display: flex;
  flex-direction: column;
}

.nav-drawer.open .nav-drawer-panel {
  transform: translateX(0);
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.nav-drawer-close {
  border: none;
  background: #f3f4f6;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 10px 12px 16px;
  gap: 4px;
  font-size: 14px;
}

.nav-drawer-links a {
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
}

.nav-drawer-links a:hover {
  background: #eef2ff;
  border-color: #e5e7eb;
}

.nav-drawer-login {
  margin-top: 4px;
  font-weight: 600;
  color: var(--accent-text);
  background: #ecfdf3;
  border-color: var(--accent-soft-border);
}

/* Hide desktop links on small screens so drawer is primary nav */
@media (max-width: 719.98px) {
  .nav-links {
    display: none;
  }
}

/* Prevent background scroll when drawer open */
body.nav-open {
  overflow: hidden;
}
