:root {
  --primary: #1f4e79;
  --primary-dark: #163a5a;
  --accent: #3d6f9b;
  --text: #1f2937;
  --muted: #6b7280;
  --light-bg: #f6f8fb;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: #ffffff;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

.brand-logo {
  letter-spacing: 0.03em;
  color: var(--primary);
}

.nav-link {
  color: var(--text);
  font-weight: 500;
}

.nav-link.active, .nav-link:hover {
  color: var(--primary);
}

.btn-primary-custom {
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.btn-outline-custom {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: #fff;
}

.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.eyebrow, .section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.4rem;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 2rem;
}

.hero-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-panel-item + .hero-panel-item {
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.hero-panel-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.hero-panel-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-padding {
  padding: 90px 0;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

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

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle, .section-text {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.offer-card, .mini-card, .module-card, .managed-card, .step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover, .mini-card:hover, .module-card:hover, .managed-card:hover, .step-card:hover {
  transform: translateY(-4px);
}

.offer-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(61, 111, 155, 0.12);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.featured-card {
  border: 2px solid rgba(31, 78, 121, 0.22);
  transform: scale(1.01);
}

.featured-badge {
  background: rgba(31, 78, 121, 0.12);
  color: var(--primary);
}

.offer-card h3, .mini-card h3, .module-card h3, .managed-card h3, .step-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.offer-target {
  font-size: 0.96rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.offer-summary, .module-card p, .managed-card p, .mini-card p, .step-card p {
  color: var(--muted);
}

.offer-list, .module-card ul, .managed-card ul, .mini-card ul {
  padding-left: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.offer-list li, .module-card ul li, .managed-card ul li, .mini-card ul li {
  margin-bottom: 0.6rem;
  color: var(--text);
}

.offer-footer {
  margin-top: auto;
}

.module-link {
  color: var(--primary);
  font-weight: 700;
}

.module-link:hover {
  color: var(--primary-dark);
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(31, 78, 121, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cta-section {
  padding: 90px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-card p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
}

.footer-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-brand {
  font-weight: 800;
  color: var(--primary);
}

.footer-text {
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 70px 0 60px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 991px) {
  .featured-card {
    transform: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 576px) {
  .offer-card, .mini-card, .module-card, .managed-card, .step-card, .intro-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .cta-card {
    padding: 3rem 1.4rem;
  }
}

