:root {
  --blue: #2563EB;
  --green: #2E7D32;
  --light: #F8FAFC;
  --dark: #1F2937;
  --muted: #6B7280;
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

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

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid #eef2f7;
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 22px;
  font-weight: 700;
}

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

.brand-text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand img {
  display: block;
}

.brand .logo-mark {
  height: 52px;
}

.brand .logo-wordmark {
  height: 38px;
}

.brand-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge {
  display: inline-flex;
  align-items: center;
}

.store-badge img {
  height: 48px;
  width: auto;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  flex-wrap: wrap;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  margin-left: 24px;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
}

nav a:hover {
  color: var(--blue);
}

/* HERO */
.hero {
  padding: 100px 40px;
  text-align: center;
  background: radial-gradient(circle at top, rgba(255,255,255,0.25), transparent 55%),
              linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 16px;
}

.hero p {
  max-width: 720px;
  margin: auto;
  font-size: 18px;
  opacity: 0.95;
}

.cta {
  margin-top: 32px;
}

.cta a {
  background: #fff;
  color: var(--blue);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.2);
}

/* SECTIONS */
section {
  padding: 80px 40px;
  /* max-width: 1200px; */
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature h3 {
  margin-bottom: 12px;
  color: var(--blue);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border: 1px solid #eef2f7;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--blue);
}

.pricing-price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.pricing-list {
  list-style: none;
  padding: 0;
}

.pricing-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #374151;
}

.pricing-card.highlight {
  border-color: #c7d2fe;
  box-shadow: 0 12px 26px rgba(37,99,235,0.15);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about div {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

/* FOOTER */
footer {
  background: #111827;
  color: #9CA3AF;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
}

footer strong {
  color: #fff;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a {
  color: #cbd5f5;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-brand .logo-mark {
  height: 32px;
}

.footer-brand .logo-wordmark {
  height: 24px;
}

.brand-text {
  font-weight: 700;
  font-size: 20px;
}

.brand-blue {
  color: var(--blue);
}

.brand-green {
  color: var(--green);
}

.legal-page {
  padding: 60px 20px 40px;
}

.legal-container {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.legal-container h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.legal-section {
  margin-top: 28px;
}

.legal-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--blue);
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  color: #374151;
}

.legal-section ul {
  padding-left: 18px;
  margin-top: 10px;
}

.legal-section li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    gap: 12px;
  }

  .legal-container {
    padding: 28px;
  }

  .legal-container h1 {
    font-size: 28px;
  }
}
