/* Fonts */
@font-face {
  font-display: swap;
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Lora-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Lora";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Lora-Bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SourceSansPro-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/SourceSansPro-Semibold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/SourceSansPro-Bold.ttf") format("truetype");
}

/* Base Styles */

:root {
  --color-light: #eeeeee;
  --color-bg: #f5f5f5;
  --color-bg-secondary: lightgray;
  --color-main: #ffffff;

  --color-brand-primary: #ef6910;
  --color-brand-dark: #541803;
  --color-brand-hover: #120605;
  --color-brand-secondary: #fc961d;
  --color-brand-muted: #888282;
  --color-brand-light: #10ef1f;
  --color-brand-bright: #ef108b;
  --color-check: #4caf50;
  --color-checkmark-hover: #ccc;

  --font-family: "Lora", sans-serif;
  --font-family-secondary: "Source Sans Pro", sans-serif;

  --hero-gradient-overlay:
    radial-gradient(
      circle 500px at -5% 20%,
      rgba(239, 105, 16, 0.85) 15%,
      rgba(189, 83, 13, 0.65) 30%,
      rgba(137, 60, 9, 0.35) 50%,
      rgba(137, 60, 9, 0.15) 68%,
      transparent 78%
    ),
    radial-gradient(
      circle 550px at 110% 50%,
      rgba(239, 105, 16, 0.65) 15%,
      rgba(189, 83, 13, 0.45) 40%,
      rgba(137, 60, 9, 0.25) 58%,
      rgba(137, 60, 9, 0.12) 68%,
      transparent 90%
    ),
    linear-gradient(0deg, var(--color-brand-hover) 0%, rgba(18, 6, 5, 0.48) 70%);
}

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

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-brand-primary);
  border-radius: 10px;
  border: 3px solid var(--color-light);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-brand-secondary);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-brand-primary) var(--color-light);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-brand-hover);
  background-color: var(--color-main);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  display: inline-block;
  text-decoration: none;
}

address {
  font-style: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

section {
  width: 100%;
  position: relative;
}

.section-bg-title {
  font-family: var(--font-family);
  font-size: 132px;
  font-weight: 700;
  color: var(--color-main);
  text-transform: uppercase;
  letter-spacing: 15.84px;
  text-align: center;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.section-bg-title.course,
.section-bg-title.reviews,
.section-bg-title.footer-contacts {
  opacity: 0.4;
}

.section-bg-title.course {
  top: 36px;
}

.section-bg-title.academy,
.section-bg-title.faq {
  top: 5px;
}

.section-bg-title.program {
  top: 10px;
}

.section-bg-title.reviews {
  top: 7px;
}

.section-bg-title.footer-contacts {
  top: 8px;
}

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

section[id] {
  scroll-margin-top: 100px;
}

footer[id] {
  scroll-margin-top: 100px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

/* --- Hero Section Styles --- */

.hero-section {
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: 780px;
  padding-bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  transition: background-image 0.45s ease-in-out;
  will-change: background-image;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 539px;
  height: 539px;
  bottom: 0;
  left: -94px;
  transform: scaleY(-1);
  background-image: url("../images/decor-hero-leaves.webp");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0px -2px 6px rgba(0, 0, 0, 0.15));
  z-index: 1;
  pointer-events: none;
}

.hero-slide-1 {
  background-image:
    var(--hero-gradient-overlay), url("../images/hero-bg-main.webp");
}

.hero-slide-2 {
  background-image:
    var(--hero-gradient-overlay), url("../images/hero-slide-01.webp");
}

.hero-slide-3 {
  background-image:
    var(--hero-gradient-overlay), url("../images/hero-slide-02.webp");
}

.hero-slide-4 {
  background-image:
    var(--hero-gradient-overlay), url("../images/hero-slide-03.webp");
}

#hero-title,
#hero-desc {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.hero-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 780px;
}

.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 120px;
  position: relative;
  z-index: 5;
}

.sticky-header-clone {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  width: 1440px;
  max-width: 100%;
  padding: 24px 120px;
  justify-content: space-between;
  align-items: center;
  background: var(--color-main);
  z-index: 9999;
  box-shadow:
    0 100px 80px 0 rgba(0, 0, 0, 0.07),
    0 41.778px 33.422px 0 rgba(0, 0, 0, 0.05),
    0 22.336px 17.869px 0 rgba(0, 0, 0, 0.04),
    0 12.522px 10.017px 0 rgba(0, 0, 0, 0.04),
    0 6.65px 5.32px 0 rgba(0, 0, 0, 0.03),
    0 2.767px 2.214px 0 rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sticky-header-clone.is-visible {
  transform: translate(-50%, 0);
}

.sticky-header-clone .hero-logo,
.sticky-header-clone .hero-section_menu li a {
  color: var(--color-brand-hover) !important;
  opacity: 1 !important;
}

.sticky-header-clone .hero-section_button {
  color: var(--color-brand-primary) !important;
  border-color: var(--color-brand-primary) !important;
  background-color: transparent !important;
}

.sticky-header-clone .hero-section_menu li a:hover {
  color: var(--color-brand-primary) !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}

.sticky-header-clone .hero-section_button:hover {
  background-color: var(--color-brand-primary) !important;
  color: var(--color-main) !important;
  border-color: transparent !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(239, 105, 16, 0.3);
}

.sticky-header-clone .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-logo {
  width: 82px;
  height: 48px;
  flex-shrink: 0;
  font-family: var(--font-family);
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  line-height: 100%;
  color: var(--color-main);
}

.logo-accent {
  color: var(--color-brand-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
}

.hero-section_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.hero-section_menu li a {
  color: var(--color-main);
  font-family: var(--font-family-secondary);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.3s;
}

.hero-section_menu li a:hover {
  opacity: 0.8;
}

.hero-section_button {
  display: flex;
  width: 164px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  gap: 10px;
  flex-shrink: 0;
  border: 2px solid var(--color-brand-primary);
  border-radius: 100px;
  background-color: transparent;
  color: var(--color-main);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-section_button:hover {
  background-color: var(--color-brand-primary);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 5;
  padding-top: 124px;
}

.hero-subtitle {
  font-family: var(--font-family);
  font-size: 66px;
  font-weight: 700;
  line-height: 68px;
  color: var(--color-main);
  margin-bottom: 6px;
  text-align: center;
  text-transform: uppercase;
}

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

.hero-subheading {
  font-family: var(--font-family);
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 74px;
  color: var(--color-main);
  text-transform: capitalize;
  margin-bottom: 0;
}

.hero-text {
  font-family: var(--font-family-secondary);
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 32px;
  margin-top: 16px;
}

.hero-text_span {
  font-weight: 700;
}

.hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  width: 200px;
  height: 64px;
  border: none;
  border-radius: 100px;
  background-color: var(--color-brand-primary);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--color-main);
  text-transform: capitalize;
  cursor: pointer;
  transition: transform 0.2s;
}

.hero-button:hover {
  transform: scale(1.05);
}

.hero-button svg {
  flex-shrink: 0;
}

.hero-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-brand-muted);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot:hover,
.hero-dot.active {
  background-color: var(--color-brand-primary);
  transform: scale(1.1);
}

.hero-section_features {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 1200px;
  transform: translate(-50%, 50%);
  z-index: 20;
}

.feature-card {
  display: flex;
  align-items: center;
  background-color: var(--color-main);
  border-radius: 24px;
  flex: 1;
  min-width: 200px;
  padding: 24px;
  transition: all 0.4s ease;
  gap: 16px;
  box-shadow:
    0 12.5px 10px 0 rgba(0, 0, 0, 0.04),
    0 6.6px 5.3px 0 rgba(0, 0, 0, 0.03),
    0 2.7px 2.2px 0 rgba(0, 0, 0, 0.02);
}

.feature-card.active {
  border: 1px solid var(--color-brand-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(239, 105, 16, 0.2);
}

.card-number {
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-brand-muted);
  line-height: 1;
  text-transform: capitalize;
}

.card-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-hover);
  line-height: 1.2;
}

/* --- Course Section Styles --- */

.course-section {
  background-color: var(--color-light);
  width: 100%;
  padding: 125px 0 100px;
  position: relative;
  z-index: 1;
}

.course-subtitle {
  font-family: var(--font-family);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-brand-hover);
  text-align: center;
  margin: 0;
  text-transform: capitalize;
}

.course-span {
  font-family: var(--font-family);
  color: var(--color-brand-primary);
}

.course-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.course-block {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 56px 120px;
}

.course-media {
  flex: 1;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  max-width: 588px;
  height: 350px;
  background: var(--color-brand-hover);
}

.course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  object-position: center top;
  filter: brightness(60%);
}

.play-icon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s;
}

.play-icon-wrapper:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.about-course {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-title {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brand-hover);
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-hover);
  line-height: 1.2;
}

.about-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding: 10px 16px;
  width: 200px;
  height: 56px;
  border: none;
  border-radius: 100px;
  background-color: var(--color-brand-primary);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  cursor: pointer;
  transition: opacity 0.3s;
}

.about-button:hover {
  opacity: 0.9;
}

.about-button svg {
  flex-shrink: 0;
}

.course-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 120px;
}

.info-card {
  display: flex;
  width: 100%;
  align-items: center;
  background-color: var(--color-main);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.info-media {
  flex-shrink: 0;
  margin-right: 32px;
  border-radius: 24px;
  overflow: hidden;
}

.info-image {
  width: 148px;
  height: 148px;
  object-fit: cover;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  margin-right: 48px;
}

.info-title {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brand-hover);
  line-height: 1;
  text-transform: capitalize;
  margin: 0;
}

.info-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-brand-hover);
  margin: 0;
}

.vertical-line {
  background: var(--color-brand-muted);
  width: 1px;
  height: 120px;
  opacity: 0.32;
  margin-right: 48px;
  flex-shrink: 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.info-list li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-hover);
  line-height: 1.2;
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-brand-light);
  border-radius: 50%;
}

/* --- About Academy Styles --- */

.about-section {
  position: relative;
  width: 100%;
  padding: 95px 0 100px;
  background:
    radial-gradient(
      circle 500px at -6% 55%,
      rgba(239, 105, 16, 0.6) 0%,
      rgba(189, 83, 13, 0.4) 30%,
      rgba(137, 60, 9, 0.2) 60%,
      transparent 80%
    ),
    radial-gradient(
      circle 400px at 100% 95%,
      rgba(239, 105, 16, 0.6) 0%,
      rgba(189, 83, 13, 0.4) 35%,
      rgba(137, 60, 9, 0.2) 60%,
      transparent 90%
    ),
    var(--color-brand-hover);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  bottom: 0;
  right: -115px;
  background-image: url("../images/decor-instructor-plant.webp");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.5));
  z-index: 1;
  pointer-events: none;
}

.academy-subtitle {
  font-family: var(--font-family);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.highlighted {
  color: var(--color-brand-primary);
}

.academy-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-muted);
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
}

.info-academy {
  display: flex;
  align-items: flex-start;
  padding-top: 72px;
  padding-left: 120px;
  gap: 126px;
}

.instructor {
  background-color: var(--color-brand-dark);
  flex-shrink: 0;
  position: relative;
  width: 486px;
  height: 486px;
  border-radius: 32px;
  box-shadow: 0 100px 80px 0 rgba(0, 0, 0, 0.07);
}

.instructor img {
  position: absolute;
  bottom: 0;
  left: 67%;
  transform: translateX(-50%);
  width: auto;
  max-width: none;
  border-radius: 0 0 32px 32px;
  height: 110%;
  z-index: 1;
}

.instructor-title {
  position: absolute;
  left: 60px;
  bottom: 40px;
  margin: 0;
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-brand-primary);
  text-transform: uppercase;
  letter-spacing: 10.88px;
  transform-origin: bottom left;
  transform: rotate(-90deg);
  white-space: nowrap;
  z-index: 10;
}

.about-instructor {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 153px;
  width: 555px;
}

.instructor-subtitle {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-main);
  text-transform: capitalize;
  margin: 0 0 16px 0;
}

.instructor-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-main);
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0.9;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.timeline-item {
  display: flex;
  gap: 12px;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  gap: 6px;
  height: auto;
  min-height: 100%;
}

.dot {
  width: 30px;
  height: 30px;
  background: rgba(16, 239, 31, 0.32);
  border-radius: 100px;
  flex-shrink: 0;
  position: relative;
}

.dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-brand-light);
  border-radius: 50%;
}

.line {
  width: 1px;
  background: rgba(255, 255, 255, 0.24);
  flex-grow: 1;
}

.timeline-item:last-child .line {
  display: none;
}

.timeline-content {
  padding-bottom: 24px;
}
.timeline-item:last-child .timeline-content {
  padding-bottom: 0;
}

.instructor-highlighted {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.instructor-info {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-main);
  line-height: 1.2;
  margin: 0;
  opacity: 0.8;
}

.instructor-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  padding: 10px 16px;
  height: 56px;
  border: none;
  border-radius: 100px;
  background-color: var(--color-brand-primary);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  cursor: pointer;
  transition: opacity 0.3s;
}

.instructor-button:hover {
  opacity: 0.9;
}

/* --- Order Section Styles --- */

.order-section {
  position: relative;
  width: 100%;
  padding: 100px 120px;
  background-color: var(--color-light);
  overflow: hidden;
}

.order-title {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  font-family: var(--font-family);
  font-size: 132px;
  font-weight: 700;
  color: var(--color-bg);
  text-align: center;
  letter-spacing: 15.84px;
  text-transform: uppercase;
}

.booking {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  min-height: 372px;
  background:
    linear-gradient(180deg, rgba(18, 6, 5, 0.88) 0%, rgba(18, 6, 5, 0.32) 100%),
    url(../images/order-bg-kitchen.webp);
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  padding: 85px 40px 60px;
}

.booking img {
  position: absolute;
  top: 32px;
  width: 150px;
  height: auto;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.order-subtitle {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-main);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  text-align: center;
  text-transform: capitalize;
  line-height: 1.4;
  margin-top: 60px;
  margin-bottom: 24px;
}

.order-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 200px;
  height: 56px;
  padding: 10px 16px;
  border-radius: 100px;
  border: none;
  background: var(--color-brand-primary);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  transition: background-color 0.3s;
}

.order-button:hover {
  transform: scale(1.05);
}

.order-button:active {
  transform: scale(0.98);
}

.order-button svg {
  fill: var(--color-main);
}

/* Course Program Section Styles */

.program-section {
  position: relative;
  width: 100%;
  padding: 70px 0;
  background:
    radial-gradient(
      circle 600px at -10% 4%,
      rgba(239, 105, 16, 0.85) 0%,
      rgba(189, 83, 13, 0.65) 25%,
      rgba(137, 60, 9, 0.35) 58%,
      rgba(137, 60, 9, 0.15) 68%,
      transparent 88%
    ),
    radial-gradient(
      circle 400px at 100% 90%,
      rgba(239, 105, 16, 0.6) 0%,
      rgba(189, 83, 13, 0.4) 30%,
      rgba(137, 60, 9, 0.2) 60%,
      transparent 88%
    ),
    var(--color-brand-hover, #111);
  overflow: hidden;
  padding: 100px 120px;
}

.program-section::before {
  content: "";
  position: absolute;
  width: 551px;
  height: 551px;
  bottom: 0;
  left: -160px;
  transform: scaleY(-1);
  background-image: url("../images/decor-hero-leaves.webp");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0px -2px 6px rgba(0, 0, 0, 0.15));
  z-index: 1;
  pointer-events: none;
}

.program-subtitle {
  font-family: var(--font-family);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
  padding-bottom: 16px;
  margin: 0 auto;
  position: relative;
}

.program-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-muted, #ccc);
  text-align: center;
  padding-bottom: 56px;
  margin: 0 auto;
}

.course-plans {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.card-plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 300px;
  max-width: 384px;
  padding: 32px 24px;
  border-radius: 32px;
  border: 1px solid var(--color-brand-dark);
  background-color: var(--color-brand-hover);
}

.card-plan.pro-plan {
  background-color: var(--color-brand-dark);
  border-color: transparent;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.logo-plans {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.plan-title {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-main);
  text-transform: capitalize;
  margin: 0;
}

.logo-button {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border: none;
  border-radius: 12px;
  background-color: var(--color-brand-bright);
  color: var(--color-main);
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.plans-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 20px;
  min-height: 48px;
}

hr {
  border: none;
  background: rgba(255, 255, 255, 0.24);
  height: 1px;
  width: 100%;
  max-width: 336px;
  margin: 0 0 24px 0;
}

.plan-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-list-items li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-main);
  line-height: 1.3;
}

.plan-list-items li svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  fill: var(--color-check);
}

.empty-item span {
  display: block;
  margin-left: 7px;
  opacity: 0.6;
  font-weight: 700;
  color: var(--color-main);
}

.price-block {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.pay-button,
.pro-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 24px;
  flex-grow: 1;
  border-radius: 100px;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pay-button {
  background: transparent;
  border-color: var(--color-brand-primary);
  color: var(--color-main);
}

.pay-button:hover {
  background: var(--color-brand-primary);
  color: var(--color-main);
}

.pay-button svg,
.pro-button svg {
  transition: transform 0.3s ease;
}

.pay-button:hover svg,
.pro-button:hover svg {
  transform: translate(2px, -2px);
}

.pro-button {
  background: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  color: var(--color-main);
}

.pro-button:hover {
  background: transparent;
  box-shadow: 0 4px 12px rgba(239, 105, 16, 0.3);
  transform: translateY(-2px);
}

.plan-price {
  font-family: var(--font-family-secondary);
  color: var(--color-main);
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
}

.course-program {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 56px;
}

.course-program-title {
  font-family: var(--font-family);
  font-size: 36px;
  color: var(--color-main);
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  margin: 0 auto;
}

.course-program-sections {
  display: flex;
  gap: 24px;
  width: 100%;
  padding: 32px 24px;
  border-radius: 32px;
  border: 1px solid var(--color-brand-dark);
  background: var(--color-brand-hover);
}

.program-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.program-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.program-item:last-child {
  border-bottom: none;
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.course-program-subtitle {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  color: var(--color-main);
  font-weight: 700;
  margin: 0;
  padding-right: 10px;
}

.course-program-highlighted {
  color: var(--color-brand-primary);
}

.program-icon-plus {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-main);
}

.program-icon {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-brand-muted);
}

.course-program-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
  padding-left: 24px;
  opacity: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.3s ease;
}

.course-program-list li {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  color: var(--color-main);
  opacity: 0.8;
  list-style-type: none;
}

.program-item.open .course-program-list {
  display: flex;
  max-height: 1000px;
  opacity: 1;
  margin-top: 24px;
  transition:
    max-height 0.5s ease-in-out,
    opacity 0.5s ease;
}

.program-icon-plus {
  transition: color 0.3s ease;
  cursor: pointer;
  color: var(--color-main);
}

.program-item.open .program-icon-plus {
  color: var(--color-brand-muted);
}

/* Reviews Section */

.reviews-section {
  position: relative;
  width: 100%;
  padding: 105px 0;
  background-color: var(--color-light);
  overflow: hidden;
  padding: 100px 120px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.reviews-subtitle {
  font-family: var(--font-family);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-brand-hover);
  margin: 0;
}

.reviews-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-muted);
  margin: 0;
}

.highlighted {
  color: var(--color-brand-primary);
}

.scrollbar-container {
  display: none;
}

.scrollbar-track {
  width: 100%;
  height: 2px;
  background-color: rgba(136, 130, 130, 0.2);
  position: relative;
  border-radius: 10px;
}

.scrollbar-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background-color: var(--color-brand-primary);
  border-radius: 10px;
  cursor: grab;
  transition:
    height 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 10;
}

.scrollbar-container:hover .scrollbar-thumb,
.scrollbar-thumb:active {
  height: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.scrollbar-thumb:active {
  cursor: grabbing;
}

.reviews-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 calc(50% - 250px);
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
  flex: 0 0 auto;
  scroll-margin-left: 0;
  background: var(--color-main);
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  transform: scale(0.9) translateY(20px);
  opacity: 0.6;
  transition: 0.4s ease;
}

.review-card.is-active {
  transform: scale(1) translateY(0);
  opacity: 1;
  z-index: 2;
}

.review-card.first-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card:hover {
  transform: scale(0.92) translateY(10px);
}

.review-card.is-active:hover {
  transform: scale(1.03) translateY(-5px);
}

.review-card:first-child {
  box-shadow: none;
  overflow: visible;
  width: 486px;
  padding-bottom: 0;
  background: transparent;
}

.review-card:not(:first-child) {
  width: 333px;
}

.review-media {
  width: 100%;
  height: 264px;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.review-card:first-child .review-media {
  border-radius: 32px;
  background: var(--color-brand-hover);
}

.review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-image {
  border-radius: 32px;
}

.video-wrapper .review-img {
  filter: brightness(0.7);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s;
}

.play-icon:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.review-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border-radius: 0;
  padding: 24px;
  flex-grow: 1;
}

.review-card:first-child .review-content {
  background: var(--color-main);
  border-radius: 32px;
  padding-top: 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.stats-content {
  justify-content: center;
  gap: 24px;
}

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

.review-count-block {
  text-align: left;
}

.count-number {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-brand-hover);
  margin: 0;
  line-height: 1;
}

.count-label {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-hover);
  display: block;
  margin-top: 4px;
}

.review-line {
  width: 1px;
  height: 44px;
  background: var(--color-light);
  margin: 0 18px;
}

.avatars-group {
  display: flex;
  align-items: center;
}

.avatars-group img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--color-main);
  margin-left: -20px;
  object-fit: cover;
}

.avatars-group img:first-child {
  margin-left: 0;
}

.stats-divider {
  border: none;
  border-top: 1px solid var(--color-brand-muted);
  opacity: 0.4;
  margin: 0;
  width: 100%;
  max-width: 438px;
}

.stats-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.stars-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}

.rating-text {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-hover);
  margin: 0;
}

.rating-span {
  font-weight: 600;
}

.review-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  width: 200px;
  height: 56px;
  background-color: var(--color-brand-primary);
  border: none;
  border-radius: 100px;
  color: var(--color-main);
  font-family: var(--font-family-secondary);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

.review-button:hover {
  opacity: 0.9;
}

.student-quote {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-brand-hover);
  margin: 0;
}

.student-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.student-profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.student-info h3 {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: var(--color-brand-hover);
}

.student-info p {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-brand-hover);
  margin: 0;
}

.reviews-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.reviews-arrow {
  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: none;

  background: var(--color-main);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

  font-size: 22px;
  cursor: pointer;

  transition: 0.25s;
}

.reviews-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* FAQ Styles */

.faq-section {
  position: relative;
  width: 100%;
  padding: 95px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(
      circle 600px at 0% 15%,
      rgba(239, 105, 16, 0.6) 0%,
      rgba(189, 83, 13, 0.4) 30%,
      rgba(137, 60, 9, 0.2) 60%,
      transparent 80%
    ),
    radial-gradient(
      circle 600px at 100% 80%,
      rgba(239, 105, 16, 0.6) 0%,
      rgba(189, 83, 13, 0.4) 30%,
      rgba(137, 60, 9, 0.2) 60%,
      transparent 80%
    ),
    var(--color-brand-hover);
}

.faq-leaves {
  position: absolute;
  top: 0;
  right: 0;
  height: 1300px;
  width: auto;
  max-width: 40%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.35));
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.faq-subtitle {
  font-family: var(--font-family);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
  padding-bottom: 16px;
  margin: 0;
}

.faq-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: var(--color-brand-muted);
  text-align: center;
}

.faq-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.faq-item {
  width: 792px;
  border: 1px solid var(--color-brand-dark);
  border-radius: 24px;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.faq-item[open] {
  background-color: var(--color-brand-dark);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  list-style: none;
  cursor: pointer;
  color: var(--color-main);
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/ui-arrow-accordion-down.webp") no-repeat center;
  background-size: contain;
}

.faq-item[open] summary::after {
  content: "";
  background: url("../images/ui-arrow-accordion-up.webp") no-repeat center;
  background-size: contain;
}

.faq-answer {
  padding: 0 24px 24px 24px;
  background: transparent;
}

.faq-answer p {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.5;
  margin: 0;
}

/* Footer Styles */

.footer {
  position: relative;
  width: 100%;
  padding: 100px 120px;
  padding-bottom: 24px;
  background-color: var(--color-light);
  overflow: hidden;
}

.footer-header {
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-subtitle {
  font-family: var(--font-family);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-brand-hover);
  text-align: center;
  padding-bottom: 16px;
  margin: 0;
}

.footer-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-muted);
  text-align: center;
  padding-bottom: 56px;
  margin: 0;
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-line {
  font-family: var(--font-family-secondary);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  color: var(--color-brand-hover);
  text-align: center;
  width: 740px;
  max-width: 100%;
  line-height: 1.2;
}

.footer-form {
  display: flex;
  width: 320px;
  flex-direction: column;
  align-items: center;
}

.form-inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  margin-bottom: 20px;
}

.footer-input {
  width: 320px;
  max-width: 100%;
  height: 56px;
  padding: 10px 16px;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid var(--color-light);
  background: var(--color-main);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-hover);
}

.footer-input:focus {
  outline: 2px solid var(--color-brand-primary);
  background: var(--color-main);
}

.footer-input::placeholder {
  color: var(--color-brand-muted);
}

.privacy-container {
  margin-top: 10px;
  margin-bottom: 20px;
}

.privacy-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.privacy-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.privacy-custom-checkbox {
  height: 24px;
  width: 24px;
  background-color: var(--color-light);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-label:hover .privacy-input ~ .privacy-custom-checkbox {
  background-color: var(--color-checkmark-hover);
}

.privacy-input:checked ~ .privacy-custom-checkbox {
  background-color: var(--color-brand-light);
}

.privacy-custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  width: 14px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 5.5L5 9L12.5 1.5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.privacy-input:checked ~ .privacy-custom-checkbox::after {
  display: block;
}

.privacy-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-hover);
  line-height: 1.2;
}

.footer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: 8px;
  gap: 10px;
  width: 320px;
  padding: 10px 16px;
  height: 56px;
  border: none;
  border-radius: 100px;
  background-color: var(--color-brand-primary);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  cursor: pointer;
  transition: opacity 0.3s;
}

.footer-button:hover {
  transform: scale(1.05);
}

.footer-list {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
  max-width: 282px;
  gap: 16px;
  list-style: none;
  padding: 0;
  flex: 1;
  background-color: var(--color-light);
  border: 1px solid var(--color-brand-muted);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--color-brand-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(18, 6, 5, 0.05);
}

.contact-card:hover svg path {
  fill: var(--color-brand-primary);
  transition: fill 0.3s ease;
}

.footer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-decoration: none;
  text-align: center;
  width: 100%;
}

.footer-link svg {
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-hover);
  text-align: center;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 16px;
}

.contact-value {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-hover);
  text-align: center;
}

.contact-card:hover .contact-value {
  color: var(--color-brand-primary);
  font-weight: 700;
}

.form-status-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 6, 5, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.form-status-content {
  background-color: var(--color-brand-dark);
  padding: 48px 32px;
  border-radius: 24px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-status-content p {
  color: var(--color-main);
  font-family: var(--font-family-secondary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}

.form-status-highlight {
  color: var(--color-brand-light);
}

.close-status {
  background-color: var(--color-brand-primary);
  color: var(--color-main);
  border: none;
  padding: 14px 48px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.close-status:hover {
  background-color: var(--color-brand-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(239, 105, 16, 0.3);
}

.footer-copyright {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-hover);
  text-align: center;
  padding-top: 100px;
  opacity: 0.6;
}

/* RESPONSIVE LOGIC */

/* Tablet */
@media (min-width: 769px) {
  .hero-header {
    display: flex;
    gap: 20px;
  }

  .mobile-sticky-nav,
  .mobile-menu-overlay {
    display: none;
  }

  .hero-section_menu {
    gap: clamp(10px, 2vw, 24px);
  }

  .hero-subheading {
    font-size: clamp(32px, 4vw, 56px);
  }

  .hero-section_features {
    width: calc(100% - 40px);
    max-width: 1200px;
    gap: 15px;
  }

  .feature-card {
    padding: 16px;
    min-width: 150px;
  }

  .course-block,
  .course-info,
  .footer,
  .order-section,
  .reviews-section,
  .program-section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .course-block,
  .course-info,
  .footer,
  .order-section,
  .reviews-section,
  .program-section {
    padding-left: 120px;
    padding-right: 120px;
  }

  .hero-section_menu {
    gap: 24px;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  main {
    padding-top: 72px;
  }

  .hero-section {
    background-image:
      var(--hero-gradient-overlay), url("../images/hero-bg-mobile.webp");
  }

  .hero-header {
    display: none;
    padding: 24px 20px;
  }

  .mobile-sticky-nav {
    display: block !important;
  }

  .section-bg-title {
    display: none;
  }

  .container {
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Header Mobile Menu */
  .mobile-sticky-nav {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-main);
    z-index: 3000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--color-light);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    z-index: 3001;
    margin-left: 0;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 4px;
    background: var(--color-brand-hover);
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .burger-menu.is-active span {
    background: var(--color-brand-muted) !important;
  }

  .burger-menu span:nth-child(2) {
    width: 16px;
    align-self: flex-start;
  }

  .burger-menu.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    width: 24px;
  }

  .burger-menu.is-active span:nth-child(2) {
    width: 16px;
    opacity: 0;
  }

  .burger-menu.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    width: 24px;
  }

  .close-menu {
    position: absolute;
    top: 24px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-brand-muted);
  }

  .mobile-nav-links {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    padding-bottom: 128px;
  }

  .mobile-nav-links a {
    color: var(--color-brand-hover);
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }

  .mobile-nav-links a:hover {
    color: var(--color-brand-primary);
  }

  .mobile-menu-btn {
    width: 100%;
    max-width: 335px;
    height: 60px;
    background-color: var(--color-brand-primary);
    border-radius: 100px;
    font-size: 18px;
    margin-top: auto;
  }

  .mobile-header-flex {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px !important;
    width: 100%;
  }

  .dark-text {
    color: var(--color-brand-hover) !important;
  }

  .header-controls {
    display: flex !important;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
  }

  .mobile-btn {
    width: auto !important;
    padding: 10px 16px !important;
    gap: 10px;
    font-size: 16px !important;
    color: var(--color-brand-primary) !important;
    text-transform: capitalize !important;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1.5px solid var(--color-brand-primary) !important;
    border-radius: 100px;
    background: transparent;
  }

  .mobile-btn:hover {
    background: var(--color-brand-primary) !important;
    color: var(--color-main) !important;
    transition: all 0.3s ease;
  }

  /* Hero Section */

  .hero-section {
    background:
      radial-gradient(
        circle 500px at -6% -6%,
        rgba(239, 105, 16, 0.85) 0%,
        rgba(189, 83, 13, 0.65) 32%,
        rgba(137, 60, 9, 0.35) 58%,
        rgba(137, 60, 9, 0.15) 68%,
        transparent 78%
      ),
      radial-gradient(
        circle 500px at 106% 95%,
        rgba(239, 105, 16, 0.65) 0%,
        rgba(189, 83, 13, 0.45) 32%,
        rgba(137, 60, 9, 0.25) 58%,
        rgba(137, 60, 9, 0.12) 68%,
        transparent 78%
      ),
      linear-gradient(0deg, #120605 0%, rgba(18, 6, 5, 0.48) 100%),
      url("../images/hero-bg-main.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto !important;
    height: auto !important;
    z-index: 10;
    overflow: hidden;
  }

  .hero-section::before {
    left: -190px;
  }

  #hero-title,
  #hero-desc {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: none !important;
    background: var(--color-main);
    width: 100% !important;
    position: relative;
    padding: 16px 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .hero-wrapper {
    min-height: auto;
    height: auto;
    justify-content: flex-start !important;
  }

  .hero-logo {
    order: 1;
    margin: 0;
    text-align: left;
    color: var(--color-brand-hover) !important;
    font-size: 18px;
  }

  .logo-accent {
    font-size: 24px;
  }

  .hero-section_nav {
    display: none;
  }

  .header-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    order: 2;
  }

  .hero-section_button {
    padding: 10px 16px !important;
    font-size: 16px !important;
    height: auto !important;
    width: auto !important;
    white-space: nowrap;
    border: 1.5px solid var(--color-brand-primary) !important;
    border-radius: 100px;
    color: var(--color-brand-hover) !important;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding: 48px 20px !important;
  }

  .hero-subtitle {
    font-size: 44px;
    line-height: 1.1;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    padding-bottom: 20px;
  }

  .hero-subheading {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    padding-bottom: 24px;
  }

  .hero-text {
    font-size: 18px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 32px;
  }

  .hero-button {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
  }

  .hero-button svg {
    width: 32px;
    height: 32px;
  }

  .hero-pagination {
    display: none !important;
  }

  .hero-section_features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 335px !important;
    margin: 0 auto 20px !important;
    position: static !important;
    transform: none !important;
  }

  .feature-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: unset !important;
    min-width: unset !important;
    width: 160px !important;
    height: 100px !important;
    gap: 12px !important;
    padding: 24px 16px !important;
    flex-shrink: 0 !important;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  }

  .card-number {
    font-size: 36px !important;
    line-height: 1 !important;
  }

  .card-text {
    font-size: 14px !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  /* Course Section */
  .course-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 0;
    width: 100%;
  }

  .course-subtitle {
    text-align: center;
    font-size: 32px;
  }

  .course-text {
    text-align: center;
    width: 100%;
    max-width: 335px;
    font-size: 16px;
    margin-bottom: 0;
  }

  .course-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }

  .course-media {
    width: 100%;
    max-width: 335px;
    height: 200px;
    border-radius: 32px;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 32px;
  }

  .about-course {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 335px;
    gap: 24px;
    padding-bottom: 32px;
  }

  .about-title {
    font-size: 24px;
    text-align: left;
  }

  .text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-text {
    font-size: 16px;
    text-align: left;
  }

  .course-text,
  .about-title,
  .about-text {
    margin: 0;
  }

  .about-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 335px;
    height: 56px;
    padding: 10px 16px;
    margin-top: 0;
    gap: 10px;
  }

  .course-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
    padding: 0;
  }

  .info-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px !important;
    width: 100% !important;
    border-radius: 32px !important;
    background-color: var(--color-main);
  }

  .info-media {
    width: 100%;
  }

  .info-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 24px;
    overflow: hidden;
  }

  .info-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .info-media,
  .info-details {
    width: 100%;
  }

  .info-title {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
  }

  .info-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .vertical-line {
    margin: 4px 0;
    width: 100%;
    height: 1px;
    opacity: 0.32;
    background: var(--color-brand-muted);
  }

  .info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 16px;
    padding: 0;
    margin: 0;
  }

  .info-details,
  .vertical-line,
  .info-list {
    padding-left: 8px;
    padding-right: 8px;
  }

  .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
  }

  /* About Academy Section */

  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 0;
    width: 100%;
    background:
      radial-gradient(
        circle 600px at -6% -6%,
        rgba(239, 105, 16, 0.85) 0%,
        rgba(189, 83, 13, 0.65) 32%,
        rgba(137, 60, 9, 0.35) 58%,
        rgba(137, 60, 9, 0.15) 68%,
        transparent 78%
      ),
      radial-gradient(
        circle 600px at 106% 95%,
        rgba(239, 105, 16, 0.65) 0%,
        rgba(189, 83, 13, 0.45) 32%,
        rgba(137, 60, 9, 0.25) 58%,
        rgba(137, 60, 9, 0.12) 68%,
        transparent 78%
      ),
      var(--color-brand-hover);
    overflow: visible;
  }

  .about-section::before {
    display: none;
  }

  .academy-subtitle {
    font-size: 32px;
  }

  .academy-text {
    font-size: 16px;
  }

  .academy-subtitle,
  .academy-text {
    text-align: center;
    width: 100%;
  }

  .info-academy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 335px;
    gap: 24px;
    padding: 0;
    margin: 32px auto 0;
  }

  .instructor {
    position: relative;
    width: 335px;
    height: 340px;
  }

  .instructor-title {
    position: absolute;
    font-size: 24px;
    bottom: 16px;
    left: 40px;
    letter-spacing: 8px;
    z-index: 2;
  }

  .instructor img {
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-30%);
    height: 104%;
    width: 100%;
    max-width: 341px;
    z-index: 1;
  }

  .about-instructor {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
    padding-right: 0;
  }

  .instructor-subtitle {
    font-size: 28px;
  }

  .instructor-button {
    width: 100%;
    max-width: 335px;
  }

  /* Order Section */

  .order-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 56px 0;
  }

  .order-title {
    display: none;
  }

  .booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 352px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 16px;
    box-sizing: border-box;
    min-height: auto;
    gap: 24px;
  }

  .booking img {
    position: static;
    transform: none;
    width: 135px;
    margin-bottom: 0;
  }

  .order-subtitle {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
  }

  .order-button {
    margin: 0;
  }

  /* Course Program Section */

  .program-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 56px 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden;
    width: 100%;
    background:
      radial-gradient(
        circle 500px at -32% 0%,
        rgba(239, 105, 16, 0.85) 0%,
        rgba(189, 83, 13, 0.65) 20%,
        rgba(137, 60, 9, 0.35) 56%,
        rgba(137, 60, 9, 0.15) 68%,
        transparent 78%
      ),
      radial-gradient(
        circle 400px at 85% 50%,
        rgba(239, 105, 16, 0.6) 0%,
        rgba(189, 83, 13, 0.4) 30%,
        rgba(137, 60, 9, 0.2) 60%,
        transparent 78%
      ),
      radial-gradient(
        circle 400px at 0% 98%,
        rgba(239, 105, 16, 0.6) 0%,
        rgba(189, 83, 13, 0.4) 25%,
        rgba(137, 60, 9, 0.2) 50%,
        transparent 78%
      ),
      var(--color-brand-hover);
  }

  .program-section::before {
    display: none;
  }

  .program-subtitle {
    font-size: 32px;
  }

  .program-text {
    padding-bottom: 32px;
  }

  .card-plan {
    padding: 24px;
  }

  .price-block {
    margin-top: 24px;
    gap: 16px;
  }

  .logo-button {
    padding: 10px;
  }

  .plan-list-items li {
    gap: 12px;
  }

  .course-program {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 32px 0 0;
    padding: 0;
    gap: 20px;
    box-sizing: border-box;
  }

  .course-program-title {
    font-size: 28px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }

  .course-program-sections {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 24px 16px;
    box-sizing: border-box;
    border-left: none;
    border-right: none;
  }

  .program-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    gap: 16px;
  }

  .program-item {
    width: 100%;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .program-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .course-program-subtitle {
    font-size: 18px;
    line-height: 1.3;
    padding-right: 10px;
  }

  .course-program-list {
    padding: 0 24px;
    gap: 12px;
  }

  /* Reviews Section */

  .reviews-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    overflow: visible;
    padding: 56px 0;
    width: 100%;
  }

  .reviews-header {
    margin: 0;
  }

  .reviews-subtitle {
    font-size: 32px;
    padding-bottom: 16px;
    margin: 0;
  }

  .reviews-text {
    margin: 0;
    padding-bottom: 32px;
  }

  .reviews-grid {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    gap: 16px;
    padding: 0 !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
  }

  .reviews-arrows,
  .scrollbar-container {
    display: none !important;
  }

  .review-card,
  .review-card:first-child,
  .review-card:not(:first-child) {
    width: 100% !important;
    max-width: 335px !important;
    margin: 0 auto;
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
    background: var(--color-main);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    scroll-snap-align: none;
  }

  .scrollbar-container {
    display: none !important;
  }

  .review-card:first-child {
    background: var(--color-main) !important;
  }

  .review-media {
    height: 200px !important;
    border-radius: 32px 32px 0 0 !important;
  }

  .video-image,
  .review-img {
    border-radius: 32px 32px 0 0 !important;
  }

  .review-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: 20px 16px !important;
    gap: 24px;
  }

  .student-quote {
    font-size: 14px !important;
    line-height: 1.4;
  }

  .stats-bottom {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    gap: 8px;
    margin-top: auto;
  }

  .review-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: 178px;
    height: 56px !important;
    font-size: 14px !important;
    padding: 10px 16px !important;
    gap: 8px;
    flex-shrink: 0;
  }

  .review-content.stats-content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: auto;
    min-height: auto;
    padding: 24px 16px;
    flex-shrink: 0;
    gap: 16px;
  }

  .scrollbar-container {
    display: none;
  }

  .rating-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    flex: 1;
  }

  .review-button svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* FAQ Section */

  .faq-section {
    background:
      radial-gradient(
        circle 400px at -15% 0%,
        rgba(239, 105, 16, 0.85) 0%,
        rgba(189, 83, 13, 0.65) 20%,
        rgba(137, 60, 9, 0.35) 56%,
        rgba(137, 60, 9, 0.15) 68%,
        transparent 78%
      ),
      radial-gradient(
        circle 400px at 90% 100%,
        rgba(239, 105, 16, 0.6) 0%,
        rgba(189, 83, 13, 0.4) 25%,
        rgba(137, 60, 9, 0.2) 50%,
        transparent 78%
      ),
      var(--color-brand-hover);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 56px 0;
    width: 100%;
  }

  .faq-section img {
    display: none;
  }

  .faq-subtitle {
    font-size: 32px;
    padding-bottom: 16px;
    margin: 0;
  }

  .faq-text {
    margin: 0 auto;
  }

  .faq-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
    padding: 0 20px;
  }

  .faq-item {
    width: 100%;
    max-width: 335px;
    background: transparent;
    border: 1px solid var(--color-brand-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }

  .faq-item[open] {
    background-color: var(--color-brand-dark);
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-main);
    gap: 15px;
  }

  .faq-item summary::after {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-family: var(--font-family-secondary);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: left;
  }

  /* Footer Section */

  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 20px 24px 20px;
    width: 100%;
  }

  .footer-subtitle {
    font-size: 32px;
    text-align: center;
  }

  .footer-text {
    margin-bottom: 32px;
    padding-bottom: 0;
  }

  .footer-about {
    gap: 32px;
    padding-bottom: 32px;
    width: 100%;
    align-items: center;
  }

  .footer-line {
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    max-width: 335px;
    width: 100%;
  }

  .footer-form {
    width: 100%;
    max-width: 335px;
  }

  .form-inputs {
    width: 100%;
    gap: 16px;
  }

  .footer-input {
    width: 100%;
    background: var(--color-main);
    border: none;
    height: 56px;
    border-radius: 16px;
  }

  .privacy-container {
    width: 100%;
  }

  .privacy-text {
    font-size: 14px;
  }

  .footer-button {
    width: 100%;
    margin-top: 0;
  }

  .footer-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 335px;
    gap: 16px;
    padding: 0;
    margin: 0;
  }

  .contact-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: unset;
    max-width: 335px;
    padding: 0;
    gap: 16px;
  }

  .footer-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px;
    width: 100%;
    text-align: left;
  }

  .footer-link svg {
    margin: 0;
    width: 24px;
    height: 24px;
  }

  .contact-label {
    margin: 0;
    letter-spacing: 0;
  }

  .contact-label::after {
    content: ":";
    margin-right: 4px;
  }

  .footer-copyright {
    padding-top: 56px;
  }
}
