:root {
  --primary: #111827;
  --primary-soft: #0b1220;
  --accent: #f97316;
  --accent-soft: #fff4e3;
  --bg-muted: #f5f5fb;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 17px;
  color: var(--text-main);
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", "Times New Roman", serif;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
}

.top-bar {
  background: #020617;
  color: #e5e7eb;
  padding: 0.45rem 0;
  font-size: 0.9rem;
}

.small-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.social-links a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.16);
  color: #e5e7eb;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: #f9fafb;
  color: #0f172a;
  transform: translateY(-1px);
}

.main-navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.main-navbar .navbar-brand {
  color: var(--primary);
  font-size: 1.25rem;
}

.main-navbar .nav-link {
  color: #4b5563;
  font-size: 0.98rem;
  padding-inline: 0.8rem;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-link.active {
  color: var(--accent);
}

.navbar-toggler {
  border-color: rgba(148, 163, 184, 0.7);
}

.hero-section {
  background: radial-gradient(circle at top left, #111827 0, #020617 42%, #0f172a 42%, #f5f5fb 100%);
  color: #e5e7eb;
  padding: 4.2rem 0 3.6rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.7);
  font-size: 0.85rem;
  color: #e5e7eb;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #f9fafb;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.hero-text {
  font-size: 1rem;
  max-width: 540px;
}

.hero-btn {
  border-radius: 999px;
  font-weight: 500;
  padding-inline: 1.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
}

.btn-outline-secondary {
  border-radius: 999px;
  border-color: rgba(209, 213, 219, 0.8);
  color: #e5e7eb;
  background: transparent;
}

.btn-outline-secondary:hover {
  background: #f9fafb;
  color: #111827;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.hero-badge-item i {
  color: var(--accent);
}

.hero-card {
  background: #020617;
  border-radius: 1.4rem;
  padding: 1.7rem 1.8rem;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(75, 85, 99, 0.8);
}

.hero-card-header h2 {
  font-size: 1.35rem;
  color: #f9fafb;
}

.hero-card-header p {
  color: #cbd5f5;
  font-size: 0.95rem;
}

.hero-card-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e5e7eb;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  margin-bottom: 0.6rem;
}

.hero-stats-grid {
  margin-top: 1.2rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  color: #e5e7eb;
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-stat-value {
  font-weight: 600;
}

.hero-stat-pill {
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-stat-pill.positive {
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
}

.hero-stat-pill.neutral {
  background: rgba(59, 130, 246, 0.15);
  color: #dbeafe;
}

.hero-stat-pill.warning {
  background: rgba(234, 179, 8, 0.16);
  color: #fef9c3;
}

.hero-mini-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.mini-item {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0.8rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(55, 65, 81, 0.6);
}

.mini-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #93c5fd;
  margin-bottom: 0.2rem;
}

.mini-item p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-footer-note {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: #9ca3af;
}

.stats-row {
  margin-top: 2.4rem;
}

.stat-card {
  border-radius: 1.1rem;
  background: #ffffff;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.stat-label {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}

.stat-value {
  display: block;
  font-weight: 600;
  margin: 0.3rem 0;
  color: var(--primary);
}

.section-padding {
  padding: 4rem 0;
}

.section-muted {
  background-color: var(--bg-muted);
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.section-text {
  font-size: 1rem;
}

.section-text-center {
  max-width: 620px;
  margin-inline: auto;
}

.pill-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pill-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  border-radius: 1.2rem;
  padding: 0.9rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.pill-item i {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #f97316, #fb923c);
  color: #fefce8;
  font-size: 1.3rem;
}

.pill-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-card {
  border-radius: 1.2rem;
  background: #ffffff;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  height: 100%;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-top: 0.85rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  font-size: 1.1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.step-card {
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  padding: 1.2rem 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  position: relative;
}

.step-number {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.7);
}

.step-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.section-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.section-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
  font-size: 0.97rem;
}

.section-list i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.modules-card {
  border-radius: 1.4rem;
  background: #0b1020;
  color: #e5e7eb;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.modules-card h3 {
  color: #f9fafb;
  margin-bottom: 1rem;
}

.modules-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.module-item {
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.module-label {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fed7aa;
  margin-bottom: 0.2rem;
}

.module-item h4 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
  color: #f9fafb;
}

.module-item p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.module-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: #bfdbfe;
}

.module-link i {
  font-size: 0.8rem;
}

.testimonial-card {
  border-radius: 1.2rem;
  background: #ffffff;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  height: 100%;
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 0.96rem;
  color: var(--text-main);
}

.testimonial-card .author {
  font-size: 0.88rem;
  margin-top: 0.6rem;
  color: var(--text-muted);
}

.cta-section {
  background: radial-gradient(circle at left, #0f172a, #020617 50%, #020617 100%);
  color: #e5e7eb;
}

.cta-title {
  font-size: 1.9rem;
  color: #fefce8;
  margin-bottom: 0.6rem;
}

.cta-text {
  font-size: 1rem;
  max-width: 440px;
}

.cta-form-card {
  border-radius: 1.4rem;
  background: #ffffff;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.form-label {
  font-size: 0.94rem;
  color: var(--text-main);
}

.form-control {
  font-size: 0.96rem;
  border-radius: 0.7rem;
  padding: 0.55rem 0.7rem;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.15rem rgba(249, 115, 22, 0.25);
}

.small-text {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.small-text i {
  color: var(--accent);
}

/* FOOTER */

.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 3rem 0 1.5rem;
}

.footer-title {
  font-size: 1.2rem;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.95rem;
}

.footer-subtitle {
  font-size: 1rem;
  color: #f9fafb;
  margin-bottom: 0.55rem;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.footer-list i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

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

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  margin-top: 2rem;
  padding-top: 0.9rem;
  font-size: 0.86rem;
  color: #9ca3af;
}

.footer-bottom .social-links a {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

/* SUCCESS MODAL */

.success-modal {
  border-radius: 1.4rem;
  border: 1px solid var(--border-soft);
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
  font-size: 1.7rem;
}

.success-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.success-modal p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
  .hero-section {
    background: linear-gradient(180deg, #020617 0, #111827 55%, #f5f5fb 100%);
    padding-top: 3.2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-card {
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    display: none;
  }

  body {
    font-size: 17px;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}
.cookie-banner {
  position: fixed;
  inset: auto 0 1.4rem 0;
  z-index: 1050;
  pointer-events: none;
}

.cookie-banner.cookie-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.cookie-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-inner {
  border-radius: 1.2rem;
  background: #020617;
  color: #e5e7eb;
  padding: 1rem 1.4rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #f97316, #ea580c);
  color: #fefce8;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cookie-text h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
  color: #f9fafb;
}

.cookie-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #e5e7eb;
}

.cookie-text a {
  color: #fde68a;
}

.cookie-text a:hover {
  color: #fbbf24;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

.cookie-btn-secondary {
  border-radius: 999px;
  border-color: rgba(249, 250, 251, 0.35);
  background: transparent;
  padding-inline: 1.1rem;
  font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
  background: #f9fafb;
  color: #111827;
}

.cookie-btn-primary {
  border-radius: 999px;
  padding-inline: 1.2rem;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-banner {
    inset: auto 0 0.8rem 0;
  }
}

