:root {
  --color-primary: #f6a000;
  --color-primary-dark: #dd7600;
  --color-secondary: #ffd200;
  --color-text: #333333;
  --color-muted: #6d6d6d;
  --color-bg: #ffffff;
  --color-light: #fff8ee;
  --color-cream: #fff2d5;
  --color-deep: #18202d;
  --color-green: #138a61;
  --color-line: rgba(51, 51, 51, 0.12);
  --shadow-sm: 0 12px 30px rgba(24, 32, 45, 0.08);
  --shadow-md: 0 18px 48px rgba(24, 32, 45, 0.14);
  --shadow-lg: 0 24px 70px rgba(246, 160, 0, 0.22);
  --radius: 8px;
  --radius-lg: 12px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::selection {
  color: #111111;
  background: rgba(255, 210, 0, 0.65);
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

h1 {
  margin: 18px 0;
  font-size: clamp(2.35rem, 6vw, 4.75rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.section-pad {
  padding: 96px 0;
}

.light-band {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 210, 0, 0.23), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(19, 138, 97, 0.08), transparent 26%),
    var(--color-light);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-title p {
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(246, 160, 0, 0.28);
  border-radius: 999px;
  color: #9d5700;
  background: rgba(255, 248, 238, 0.88);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.btn {
  --bs-btn-border-radius: 8px;
  --bs-btn-font-family: "Poppins", sans-serif;
  --bs-btn-font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  box-shadow: none;
}

.btn-lg {
  min-height: 56px;
  padding-inline: 24px;
  font-size: 1rem;
}

.btn-sm {
  min-height: 40px;
  padding-inline: 16px;
}

.btn-primary-gradient {
  color: #201306;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary) 52%, var(--color-primary-dark));
  box-shadow: 0 16px 35px rgba(246, 160, 0, 0.33);
}

.btn-primary-gradient:hover,
.btn-primary-gradient:focus {
  color: #120b04;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(246, 160, 0, 0.42);
}

.btn-soft {
  color: #10291f;
  background: #ffffff;
  border: 1px solid rgba(19, 138, 97, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn-soft:hover,
.btn-soft:focus {
  color: #ffffff;
  background: var(--color-green);
  transform: translateY(-2px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: 4px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary), var(--color-green));
}

.site-header {
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(24, 32, 45, 0.1);
}

.navbar {
  min-height: var(--header-height);
  padding: 10px 0;
}

.navbar-brand {
  margin: 0;
}

.navbar-brand strong,
.footer-brand strong {
  display: block;
  color: var(--color-text);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.navbar-brand small,
.footer-brand span {
  display: block;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--color-text);
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 14px;
}

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

.navbar-toggler {
  border: 0;
  padding: 8px;
  box-shadow: none !important;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 70px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 248, 238, 0.96) 0%, rgba(255, 248, 238, 0.74) 48%, rgba(255, 210, 0, 0.32) 100%),
    radial-gradient(circle at top right, rgba(246, 160, 0, 0.34), transparent 32%),
    #ffffff;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.62;
  animation: floatShape 7s ease-in-out infinite;
}

.shape-one {
  top: 14%;
  left: 5%;
  width: 82px;
  height: 82px;
  background: rgba(255, 210, 0, 0.4);
}

.shape-two {
  right: 9%;
  bottom: 20%;
  width: 110px;
  height: 110px;
  background: rgba(246, 160, 0, 0.22);
  animation-delay: 1.4s;
}

.shape-three {
  right: 40%;
  top: 16%;
  width: 48px;
  height: 48px;
  background: rgba(19, 138, 97, 0.16);
  animation-delay: 2.2s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

.hero-lead {
  max-width: 630px;
  color: #4d4d4d;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 600;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(246, 160, 0, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: #3b3023;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(24, 32, 45, 0.06);
  backdrop-filter: blur(12px);
}

.hero-checks i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--color-green);
  font-size: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.seat-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #9d5700;
  font-weight: 800;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.contact-inline a {
  color: #4a4a4a;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-inline a:hover {
  color: var(--color-primary-dark);
}

.coach-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.coach-card {
  position: relative;
  width: min(440px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 238, 0.56));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.coach-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 0;
  border: 1px solid rgba(255, 210, 0, 0.4);
  border-radius: var(--radius);
}

.coach-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.coach-nameplate {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(24, 32, 45, 0.84);
  backdrop-filter: blur(15px);
}

.coach-nameplate span,
.coach-nameplate strong {
  display: block;
  color: #ffffff;
}

.coach-nameplate span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
}

.coach-nameplate strong {
  margin-top: 4px;
  color: var(--color-secondary);
  font-size: 0.88rem;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(246, 160, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #362516;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  animation: chipFloat 4.5s ease-in-out infinite;
}

.floating-chip i {
  color: var(--color-primary-dark);
}

.chip-sales {
  top: 80px;
  left: 2px;
}

.chip-team {
  right: -2px;
  top: 220px;
  animation-delay: 1s;
}

.chip-system {
  left: 48px;
  bottom: 112px;
  animation-delay: 1.7s;
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid rgba(246, 160, 0, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.trust-bar div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.64);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  color: var(--color-primary-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.trust-bar span {
  color: #4b4b4b;
  font-weight: 700;
}

.problem-card,
.bonus-card,
.testimonial-card,
.registration-form,
.stat-box,
.growth-step,
.comparison-column,
.countdown-panel,
.coach-profile-frame {
  border-radius: var(--radius-lg);
}

.problem-card {
  height: 100%;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(246, 160, 0, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.problem-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: #d9472b;
}

.problem-card h3 {
  margin-bottom: 10px;
}

.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 34px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--color-primary), var(--color-green));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding: 22px 0;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 6px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-green));
  box-shadow: var(--shadow-sm);
}

.timeline-item > div:last-child {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.coach-section {
  background:
    linear-gradient(135deg, rgba(24, 32, 45, 0.96), rgba(50, 45, 32, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(246, 160, 0, 0.35), transparent 30%);
}

.coach-section h2,
.coach-section .lead-text,
.coach-section p {
  color: #ffffff;
}

.coach-section .lead-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
}

.coach-profile-frame {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.coach-profile-frame img {
  width: 100%;
  border-radius: var(--radius);
}

.coach-points {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.coach-points div,
.registration-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 16px;
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  font-weight: 700;
}

.coach-points i,
.registration-points i {
  color: var(--color-secondary);
}

blockquote {
  position: relative;
  margin: 0;
  padding: 26px 28px;
  border-left: 5px solid var(--color-secondary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-family: "Poppins", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
}

blockquote i {
  margin-right: 8px;
  color: var(--color-secondary);
}

.growth-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.growth-step {
  position: relative;
  min-height: 205px;
  padding: 24px;
  border: 1px solid rgba(246, 160, 0, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.growth-step::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 210, 0, 0.22);
}

.growth-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.growth-step i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #1c1306;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.stats-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 210, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #18202d, #263142 58%, #1e2d28);
}

.stats-section .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.stat-box {
  min-height: 190px;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.stat-box strong {
  display: block;
  color: var(--color-secondary);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.stat-box span:last-child {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-weight: 700;
}

.custom-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.custom-accordion .accordion-item {
  margin-bottom: 14px;
  border: 1px solid rgba(246, 160, 0, 0.16);
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.custom-accordion .accordion-button {
  padding: 20px 22px;
  color: var(--color-text);
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #1c1306;
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.35), rgba(246, 160, 0, 0.18));
}

.custom-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.2rem rgba(246, 160, 0, 0.18);
}

.custom-accordion .accordion-body {
  color: var(--color-muted);
  background: #ffffff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.comparison-column {
  padding: 30px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.comparison-column.highlighted {
  border-color: rgba(246, 160, 0, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 210, 0, 0.2), rgba(255, 255, 255, 0.92)),
    #ffffff;
  box-shadow: var(--shadow-md);
}

.comparison-column h3 {
  margin-bottom: 18px;
}

.comparison-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: #444444;
  font-weight: 700;
}

.comparison-column.muted i {
  color: #aa4e3d;
}

.comparison-column.highlighted i {
  color: var(--color-green);
}

.testimonial-slider {
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.testimonial-card {
  min-height: 310px;
  padding: 42px 64px;
  border: 1px solid rgba(246, 160, 0, 0.16);
  background:
    radial-gradient(circle at top left, rgba(255, 210, 0, 0.2), transparent 30%),
    #ffffff;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  max-width: 650px;
  margin: 20px auto;
  color: #3d3d3d;
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-card strong {
  color: var(--color-primary-dark);
  font-family: "Poppins", sans-serif;
}

.stars {
  color: var(--color-primary);
  letter-spacing: 0;
}

.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  border-radius: 50%;
  background: var(--color-deep);
  opacity: 1;
}

.testimonial-slider .carousel-control-prev {
  left: -18px;
}

.testimonial-slider .carousel-control-next {
  right: -18px;
}

.testimonial-slider .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.testimonial-slider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.bonus-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 210, 0, 0.26), transparent 30%),
    linear-gradient(135deg, #18202d, #3c2f18);
}

.bonus-section h2,
.bonus-section p {
  color: #ffffff;
}

.bonus-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bonus-card {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.bonus-card i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #1b1205;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.bonus-card h3 {
  color: #ffffff;
  font-size: 1.08rem;
}

.countdown-section {
  background: #ffffff;
}

.countdown-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(246, 160, 0, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.96), rgba(255, 255, 255, 0.96)),
    #ffffff;
  box-shadow: var(--shadow-md);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown-grid div {
  min-height: 112px;
  padding: 18px 10px;
  border: 1px solid rgba(246, 160, 0, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.countdown-grid strong,
.countdown-grid span {
  display: block;
}

.countdown-grid strong {
  color: var(--color-primary-dark);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1;
}

.countdown-grid span {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.registration-section {
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.8), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 20% 10%, rgba(255, 210, 0, 0.2), transparent 28%);
}

.lead-text {
  font-size: 1.12rem;
  font-weight: 600;
}

.registration-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.registration-points div {
  color: #2d2d2d;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.registration-points i {
  color: var(--color-primary-dark);
}

.registration-form {
  padding: 30px;
  border: 1px solid rgba(246, 160, 0, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.form-label {
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid rgba(51, 51, 51, 0.14);
  border-radius: var(--radius);
  color: #333333;
  font-weight: 600;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.22rem rgba(246, 160, 0, 0.16);
}

.privacy-text {
  margin-top: 12px;
  color: #6b6b6b;
  font-size: 0.9rem;
  text-align: center;
}

.form-alert {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-alert.is-success {
  display: block;
  color: #0f5132;
  background: #d1e7dd;
}

.form-alert.is-error {
  display: block;
  color: #842029;
  background: #f8d7da;
}

.final-cta-section {
  padding: 84px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(246, 160, 0, 0.95), rgba(255, 210, 0, 0.9)),
    var(--color-primary);
}

.final-cta-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-content h2,
.final-cta-content p {
  color: #ffffff;
}

.final-cta-content p {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  font-weight: 700;
}

.final-cta-content .btn-light {
  color: #2d1a05;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(24, 32, 45, 0.16);
}

.site-footer {
  padding: 58px 0 26px;
  background: #111722;
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1.04rem;
}

.site-footer p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--color-secondary);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a,
.float-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.social-links a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: #201306;
  background: var(--color-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  gap: 12px;
}

.float-btn {
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(24, 32, 45, 0.22);
}

.float-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.call {
  background: var(--color-primary-dark);
}

.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  display: none;
  grid-template-columns: 1fr 1fr 1.25fr;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: #111722;
  box-shadow: 0 -10px 28px rgba(24, 32, 45, 0.16);
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 58px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.mobile-sticky-cta .register {
  color: #201306;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}
