
:root {
  --bg: #fff7f0;
  --bg-alt: #ffffff;
  --primary: #ff7a59;
  --primary-soft: #ffe0d5;
  --primary-deep: #ff5c3b;
  --accent: #5b8def;
  --accent-soft: #e0e9ff;
  --text-main: #1f2933;
  --text-soft: #6b7280;
  --card-radius: 22px;
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.12);
  --shadow-subtle: 0 8px 20px rgba(15, 23, 42, 0.08);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: radial-gradient(circle at top left, #ffe7d8 0, #fff7f0 38%, #fdf2ff 100%);
  color: var(--text-main);
}

h1, h2, h3 {
  text-transform: capitalize;
}

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

header {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  color: #f9fafb;
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 6px 18px rgba(148, 163, 184, 0.6);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
}

.logo span {
  color: #fffbeb;
}

nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  font-size: 0.92rem;
}

nav a {
  color: #fffbfa;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0;
}

nav a.active {
  position: relative;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 3px;
  border-radius: 999px;
  background: #fffbeb;
}

nav a.cta {
  background: #fffbeb;
  color: var(--primary-deep);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

nav a.cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 3.2rem 0 3rem;
}

.hero-inner {
  position: relative;
}

.hero-bubble {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 60% 40% 60% 40%;
  background: radial-gradient(circle at 30% 0, #fff 0, #ffe0d5 40%, #ffc9b8 100%);
  top: -60px;
  right: -40px;
  opacity: 0.6;
  z-index: -1;
  filter: blur(0.2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 2.6rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 251, 235, 0.94);
  color: var(--primary-deep);
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 16px rgba(148, 163, 184, 0.35);
}

.badge span {
  display: inline-flex;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.18);
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  margin-bottom: 0.7rem;
}

.hero h1 span {
  color: var(--primary-deep);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(248, 113, 113, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(248, 113, 113, 0.65);
  text-decoration: none;
}

.btn-outline {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.35);
}

.btn-outline:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), #0b1120);
  padding: 1.6rem 1.5rem;
  border-radius: var(--card-radius);
  color: #e5e7eb;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.78);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0, transparent 60%);
  top: -20px;
  right: -30px;
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.metric {
  padding: 0.6rem 0.7rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.65);
}

.metric span {
  font-size: 0.68rem;
  color: #94a3b8;
}

.metric strong {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.9rem;
}

/* Sections & Cards */
.section {
  padding: 2.9rem 0;
}

.section-header {
  margin-bottom: 1.7rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-soft);
}

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

.card {
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.18) 0, transparent 60%);
  top: -30px;
  right: -20px;
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.pill {
  display: inline-flex;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: var(--primary-soft);
  color: var(--primary-deep);
  margin-bottom: 0.45rem;
}

/* Two-column & Lead Magnet */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.1rem;
  align-items: start;
}

.lead-magnet {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 26px;
  padding: 1.8rem 1.6rem;
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
}

.lead-magnet h2 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.lead-magnet p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.form-row input {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.4);
  background: rgba(15, 23, 42, 0.1);
  color: #f9fafb;
  font-size: 0.9rem;
}

.form-row input::placeholder {
  color: rgba(226, 232, 240, 0.86);
}

/* Lists & Bits */
ul.checklist {
  list-style: none;
  margin: 0.4rem 0 0.6rem 0;
  padding-left: 0;
}

ul.checklist li {
  font-size: 0.9rem;
  color: var(--text-main);
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
}

ul.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.testimonial {
  font-size: 0.9rem;
  color: var(--text-soft);
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
  margin-top: 0.9rem;
}

/* Blog */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.blog-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.blog-item p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Footer */
.footer {
  background: #0b1120;
  color: #9ca3af;
  padding: 2.1rem 0 1.6rem;
  margin-top: 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 2rem;
  font-size: 0.86rem;
}

.footer h4 {
  color: #e5e7eb;
  margin-bottom: 0.7rem;
}

.footer a {
  color: #cbd5f5;
  font-size: 0.85rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  text-align: center;
  color: #6b7280;
}

/* Page layout */
.page-hero {
  padding: 2.6rem 0 2.1rem;
}

.page-hero h1 {
  font-size: 1.85rem;
  margin-bottom: 0.4rem;
}

.page-hero p {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 40rem;
}

.main-content {
  padding: 0.5rem 0 2.7rem;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.2fr);
  gap: 2.4rem;
}

.main-grid article {
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 1.5rem 1.45rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.sidebar {
  background: linear-gradient(145deg, #0b1120, #020617);
  border-radius: var(--card-radius);
  padding: 1.4rem 1.3rem;
  color: #e5e7eb;
}

.sidebar h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.sidebar ul {
  list-style: none;
  font-size: 0.86rem;
}

.sidebar li + li {
  margin-top: 0.35rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.1rem;
}

.contact-form {
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 1.5rem 1.45rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  margin-top: 0.22rem;
  margin-bottom: 0.9rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-aside {
  background: #0b1120;
  border-radius: var(--card-radius);
  padding: 1.4rem 1.3rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.contact-aside p + p {
  margin-top: 0.6rem;
}

/* Alerts */
.alert {
  border-radius: 0.9rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #facc15;
  margin: 0.6rem 0 0.9rem;
}

/* Blog article */
.blog-article {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article h1 {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.blog-article .meta {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.blog-article p {
  font-size: 0.98rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.blog-article h2 {
  font-size: 1.25rem;
  margin: 1.4rem 0 0.5rem;
}

.blog-article h3 {
  font-size: 1.05rem;
  margin: 1rem 0 0.35rem;
}

.blog-article ul {
  margin: 0.3rem 0 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.blog-article li + li {
  margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .main-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .blog-list,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  nav ul {
    display: none;
  }
  .blog-list,
  .grid-3,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 2.3rem;
  }
}
