:root {
  --df-primary: #1f3b4d;
  --df-primary-soft: #e1edf7;
  --df-accent: #f97316; /* яркий оранжевый */
  --df-accent-soft: #fff4e6;
  --df-bg-soft: #f5f5fb;
  --df-text-main: #111827;
  --df-text-muted: #6b7280;
  --df-footer-bg: #0b1724;
  --df-border-subtle: #dde3ee;
}

/* Base */

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

body {
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--df-text-main);
  background-color: #ffffff;
}

/* Helpers */

.text-accent {
  color: var(--df-accent) !important;
}

/* Navbar */

.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-link {
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--df-accent), var(--df-primary));
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--df-primary) !important;
}

/* Hero */

.hero-section {
  padding-top: 6.5rem;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(circle at 10% 0%, #fff7ed 0, transparent 45%),
    radial-gradient(circle at 90% 0%, #e0f2fe 0, transparent 50%),
    linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--df-text-muted);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--df-border-subtle);
}

.hero-kicker i {
  color: var(--df-accent);
}

.hero-title {
  font-size: 2.35rem;
  line-height: 1.2;
  margin-top: 0.9rem;
  margin-bottom: 0.75rem;
}

.hero-text {
  font-size: 1.02rem;
  color: var(--df-text-muted);
  max-width: 34rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tag {
  font-size: 0.86rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--df-border-subtle);
  color: var(--df-text-muted);
}

.hero-tag i {
  color: var(--df-accent);
}

.hero-card {
  border-radius: 1.25rem;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-image-wrap {
  height: 230px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-card-body {
  padding: 1.4rem 1.6rem 1.6rem;
}

.hero-card-title {
  font-size: 1.18rem;
  margin-bottom: 0.4rem;
}

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

.hero-card-list {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--df-text-muted);
}

/* Sections */

.section {
  padding: 4.5rem 0;
}

.section-divider {
  border-top: 1px solid #edf1f7;
}

.section-white {
  background-color: #ffffff;
}

.section-soft {
  background: linear-gradient(
    135deg,
    #f6f7ff 0%,
    #f4f7f3 45%,
    #fff4e6 100%
  );
}

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

.section-text {
  color: var(--df-text-muted);
}

/* WHY */

.why-image-card {
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid var(--df-border-subtle);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.why-image {
  width: 100%;
  object-fit: cover;
}

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

.why-card {
  border-radius: 1.1rem;
  border: 1px solid var(--df-border-subtle);
  background-color: #ffffff;
  padding: 1rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.12),
    transparent 40%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-title {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.why-title i {
  color: var(--df-accent);
}

.why-text {
  font-size: 0.92rem;
  color: var(--df-text-muted);
}

/* PROGRAM */

.program-pills {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.program-pill {
  border-radius: 1.1rem;
  background-color: #ffffff;
  border: 1px solid var(--df-border-subtle);
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.program-pill::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--df-accent-soft), transparent);
  opacity: 0.7;
}

.program-label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--df-text-muted);
}

.program-name {
  font-weight: 600;
  margin: 0.15rem 0 0.25rem;
}

.program-text {
  font-size: 0.93rem;
  color: var(--df-text-muted);
}

.program-image-card {
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid var(--df-border-subtle);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.program-image {
  width: 100%;
  object-fit: cover;
}

.program-caption {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--df-text-muted);
  background: linear-gradient(
    90deg,
    rgba(31, 59, 77, 0.08),
    rgba(249, 115, 22, 0.06)
  );
}

/* BEYOND */

.benefit-list {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 0;
  color: var(--df-text-muted);
}

.benefit-list li {
  margin-bottom: 0.3rem;
}

.benefit-list i {
  color: var(--df-accent);
}

.beyond-image-card {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--df-border-subtle);
  background-color: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.beyond-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* AUDIENCE & VALUE */

.audience-card {
  border-radius: 1.2rem;
  background-color: #ffffff;
  border: 1px solid var(--df-border-subtle);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0 0,
    rgba(249, 115, 22, 0.08),
    transparent 55%
  );
  pointer-events: none;
}

.audience-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.audience-text {
  font-size: 0.94rem;
  color: var(--df-text-muted);
}

.audience-list {
  padding-left: 1.1rem;
  font-size: 0.93rem;
  color: var(--df-text-muted);
  margin-bottom: 0.7rem;
}

.audience-list li + li {
  margin-top: 0.2rem;
}

.value-card {
  border-radius: 1.1rem;
  border: 1px solid var(--df-border-subtle);
  background-color: #ffffff;
  padding: 1.1rem 1.2rem;
  height: 100%;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.value-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--df-accent-soft), #ffffff);
  color: var(--df-accent);
  margin-bottom: 0.4rem;
}

.value-title {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.value-text {
  font-size: 0.93rem;
  color: var(--df-text-muted);
}

/* CONTACT */

.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
  color: var(--df-text-main);
}

.contact-list li + li {
  margin-top: 0.3rem;
}

.contact-list a {
  color: var(--df-primary);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-card {
  border-radius: 1.2rem;
  background-color: #ffffff;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* Links & buttons */

.link-more {
  font-weight: 500;
  color: var(--df-primary);
  text-decoration: none;
}

.link-more:hover {
  text-decoration: underline;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--df-primary) 0%,
    #102536 40%,
    #0f172a 100%
  );
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline-secondary {
  border-color: #9ca3af;
  color: #374151;
}

.btn-outline-secondary:hover {
  background-color: #f3f4f6;
  border-color: #6b7280;
}

.btn-accent {
  background: linear-gradient(
    135deg,
    var(--df-accent) 0%,
    #fb923c 45%,
    #fed7aa 100%
  );
  border-color: transparent;
  color: #1f2933;
}

.btn-accent:hover {
  filter: brightness(1.05);
  color: #111827;
}

/* Footer */

.footer {
  background-color: var(--df-footer-bg);
  color: #d1d5db;
  padding: 2.8rem 0 1.6rem;
  margin-top: 2rem;
}

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

.footer-text {
  font-size: 0.92rem;
  max-width: 19rem;
}

.footer-heading {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #e5e7eb;
}

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

.footer-links li + li {
  margin-top: 0.25rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.92rem;
}

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

.footer-bottom {
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-copy,
.footer-location {
  white-space: nowrap;
}

/* Cookie modal centered */

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.8rem 1.9rem 1.6rem;
  max-width: 560px;
  margin: 1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.cookie-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--df-accent-soft);
  color: var(--df-accent);
  margin-bottom: 0.5rem;
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.cookie-text {
  font-size: 0.94rem;
  color: var(--df-text-muted);
  margin-bottom: 0.9rem;
}

.cookie-text a {
  color: var(--df-primary);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

/* Bootstrap modal */

.modal-content {
  border-radius: 1rem;
}

/* Responsive */

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 5.5rem;
  }
}

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

  .footer-copy,
  .footer-location {
    white-space: normal;
  }

  .cookie-modal {
    padding: 1.5rem 1.4rem 1.4rem;
  }
}
