*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  height: 100%;
  font-family: "Mona sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

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

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* Reusable classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.default-button {
  background: #ee634e;
  color: #1e2130;
  padding: 12px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.default-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(238, 99, 78, 0.28);
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(30, 33, 48, 0.16);
  background: #ffffff;
  color: #1e2130;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.button-outline:hover {
  border-color: #ee634e;
  color: #ee634e;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 33, 48, 0.06);
}

.section-badge {
  background: rgba(238, 99, 78, 0.1);
  border: 1px solid rgba(238, 99, 78, 0.3);
  color: #ee634e;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

/* Header */
header {
  background-color: #eef1f5;
  padding: 1rem 2rem;
  border-radius: 100px;
  color: #1e2130;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 1000;
  transition: top 0.3s ease;
}

header.scrolled {
  top: 0;
  border-radius: 0;
  width: 100%;
  max-width: none;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

header nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

header nav ul li a {
  color: #1e2130;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #1e2130;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ee634e;
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a.is-active::after {
  width: 100%;
  left: 0;
}

header nav ul li a.is-active {
  color: #ee634e;
}

/* Logo styling */
header nav .logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

header nav .logo a::before {
  content: "";
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ee634e 0%, #ff8a75 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(238, 99, 78, 0.3);
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1e2130;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile styles */
@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
    top: 0;
    border-radius: 0;
    width: 100%;
    max-width: none;
  }

  header nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
  }

  header nav ul.active {
    right: 0;
  }

  header nav ul li a {
    font-size: 1.25rem;
    color: #1e2130;
  }

  .hamburger {
    display: flex;
  }

  .hero-buttons {
    display: none;
  }

  header nav ul .mobile-button {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-button {
    display: none;
  }
}

/* Hero background section */
.hero-header-bg {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.hero-header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(238, 99, 78, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 99, 78, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 2rem 4rem;
  color: #1e2130;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(238, 99, 78, 0.18), rgba(58, 90, 140, 0.12));
  z-index: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(30, 33, 48, 0.14);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(238, 99, 78, 0.1);
  border: 1px solid rgba(238, 99, 78, 0.3);
  color: #ee634e;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero-text {
  max-width: 640px;
  text-align: left;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(30, 33, 48, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

/* .hero-cta-buttons button:last-child { */
/*   background: rgba(30, 33, 48, 0.12); */
/*   border: 1px solid rgba(30, 33, 48, 0.18); */
/*   backdrop-filter: blur(10px); */
/*   display: flex; */
/*   align-items: center; */
/*   justify-content: center; */
/*   width: 48px; */
/*   height: 48px; */
/*   padding: 0; */
/*   transition: all 0.3s ease; */
/* } */
/**/
/* .hero-cta-buttons button:last-child:hover { */
/*   background: rgba(255, 255, 255, 0.15); */
/*   border-color: rgba(30, 33, 48, 0.35); */
/*   transform: translateY(-2px); */
/* } */
/**/
/* .hero-cta-buttons button:last-child i { */
/*   font-size: 1.125rem; */
/* } */

/* Hero badge icon */
.hero-badge i {
  color: #ffb347;
  margin-right: 4px;
}

/* Social proof strip */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(30, 33, 48, 0.1);
  width: fit-content;
  margin-left: 0;
  margin-right: 0;
}

.hero-proof-avatars {
  display: flex;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #f4f6f9;
  margin-left: -10px;
  transition: transform 0.3s ease;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-proof-avatars:hover .hero-avatar {
  margin-left: -6px;
}

.hero-proof-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-size: 0.88rem;
  color: rgba(30, 33, 48, 0.55);
}

.hero-proof-number {
  font-weight: 700;
  color: #1e2130;
}

.hero-proof-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.hero-proof-stars i {
  color: #ffb347;
  font-size: 0.75rem;
}

.hero-proof-stars span {
  font-size: 0.8rem;
  color: rgba(30, 33, 48, 0.45);
  margin-left: 4px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-text {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-cta-buttons,
  .hero-proof {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-visual img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 6.5rem 1.25rem 3rem;
  }

  .hero-visual img {
    height: 320px;
  }

  .hero-proof {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .hero-proof-text {
    align-items: center;
  }
}

/* Services sectionn */
.services {
  padding: 4rem 2rem;
  background: #f4f6f9;
  color: #1e2130;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-header h2 {
  font-size: 4rem;
  font-weight: 700;
}

.services-header p {
  font-size: 1.125rem;
  color: rgba(30, 33, 48, 0.7);
  line-height: 1.6;
  max-width: 500px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-card .service-icon {
  font-size: 2.5rem;
  color: #ee634e;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: rgba(30, 33, 48, 0.7);
  line-height: 1.6;
}

/* Icon wrap */
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(238, 99, 78, 0.1);
  border: 1px solid rgba(238, 99, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(238, 99, 78, 0.18);
  border-color: rgba(238, 99, 78, 0.3);
}

.service-card .service-icon {
  margin-bottom: 0;
  font-size: 1.5rem;
}

/* Tag */
.service-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1e2130;
  background: #ee634e;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.85rem;
  width: fit-content;
}

/* Learn more link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ee634e;
  margin-top: 1.25rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 10px;
}

.service-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .services {
    padding: 3rem 1.5rem;
  }

  .services-header h2 {
    font-size: 2.25rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card .service-icon {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services-header h2 {
    font-size: 1.875rem;
  }

  .service-card {
    padding: 1.25rem;
  }
}

/* About section */
.about {
  padding: 6rem 2rem;
  background: #edf0f4;
  color: #1e2130;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(238, 99, 78, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left content */
.about-content .section-badge {
  background: rgba(238, 99, 78, 0.1);
  border: 1px solid rgba(238, 99, 78, 0.3);
  color: #ee634e;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.about-content > p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Stats row */
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ee634e;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* CTA button */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 99, 78, 0.35);
}

.about-cta i {
  transition: transform 0.3s ease;
}

.about-cta:hover i {
  transform: translate(3px, -3px);
}

/* Right visual — floating cards */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: relative;
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(30, 33, 48, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 99, 78, 0.3);
}

.about-card--main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff 0%, #eef1f5 100%);
}

.about-card--accent {
  background: linear-gradient(135deg, rgba(238, 99, 78, 0.08) 0%, #ffffff 100%);
  border-color: rgba(238, 99, 78, 0.15);
}

.about-card-icon {
  font-size: 1.5rem;
  color: #ee634e;
  margin-bottom: 1rem;
}

.about-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.9rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.6;
}

/* About responsive */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 4rem 1.5rem;
  }

  .about-stats {
    gap: 1.75rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-card--main {
    grid-column: 1;
  }
}

/* Why Choose Us */
.why-choose-us {
  padding: 6rem 2rem;
  background: #f4f6f9;
  color: #1e2130;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(238, 99, 78, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Header */
.why-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.why-header .section-badge {
  background: rgba(238, 99, 78, 0.1);
  border: 1px solid rgba(238, 99, 78, 0.3);
  color: #ee634e;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.why-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}

.why-header p {
  font-size: 1.05rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.7;
}

/* Cards grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: #ffffff;
  border: 1px solid rgba(30, 33, 48, 0.08);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.why-card:hover {
  border-color: rgba(238, 99, 78, 0.3);
  transform: translateY(-4px);
}

/* Hover glow behind card */
.why-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(238, 99, 78, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

/* Number */
.why-card-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(238, 99, 78, 0.4);
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  font-variant-numeric: tabular-nums;
}

/* Icon */
.why-card-icon {
  font-size: 1.75rem;
  color: #ee634e;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.why-card p {
  font-size: 0.925rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.7;
}

/* CTA strip */
.why-cta-strip {
  margin-top: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #eef1f5 100%);
  border: 1px solid rgba(30, 33, 48, 0.1);
  border-radius: 20px;
  padding: 2.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-cta-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(238, 99, 78, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.why-cta-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.why-cta-text p {
  font-size: 0.95rem;
  color: rgba(30, 33, 48, 0.55);
}

.why-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
}

.why-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 99, 78, 0.35);
}

.why-cta-btn i {
  transition: transform 0.3s ease;
}

.why-cta-btn:hover i {
  transform: translate(3px, -3px);
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 4rem 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .why-header h2 {
    font-size: 1.875rem;
  }

  .why-card {
    padding: 1.5rem;
  }
}

/* Testimonials */
.testimonials {
  padding: 6rem 2rem;
  background: #edf0f4;
  color: #1e2130;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(238, 99, 78, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Header */
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.testimonials-header .left-side .section-badge {
  background: rgba(238, 99, 78, 0.1);
  border: 1px solid rgba(238, 99, 78, 0.3);
  color: #ee634e;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.testimonials-header .left-side h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.testimonials-header .left-side p {
  font-size: 1.05rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.7;
  max-width: 440px;
}

/* Arrow buttons */
.testimonials-header .right-side {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.arrow-button {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  border: 1px solid rgba(30, 33, 48, 0.18) !important;
  background: transparent !important;
  color: #1e2130;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
}

.arrow-button:hover {
  border-color: #ee634e !important;
  background: rgba(238, 99, 78, 0.1) !important;
  transform: scale(1.05);
}

.arrow-button.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Slider wrapper */
.testimonials-grid {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cards */
.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(30, 33, 48, 0.08);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 0 2rem;
}

.testimonial-card .stars {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.testimonial-card .stars i {
  color: #ee634e;
  font-size: 0.9rem;
}

.testimonial-card h3 {
  grid-column: 1;
  grid-row: 2;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  align-self: start;
}

.testimonial-card > p {
  grid-column: 1;
  grid-row: 3;
  font-size: 1.05rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.8;
  font-style: italic;
}

/* Quote icon — positioned top right */
.testimonial-card .testimonial-author i {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  color: rgba(238, 99, 78, 0.12);
}

/* Author */
.testimonial-card .testimonial-author {
  grid-column: 1 / -1;
  grid-row: 4;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(30, 33, 48, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .testimonial-author span {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Dots indicator */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(30, 33, 48, 0.15);
  transition:
    background 0.3s ease,
    width 0.3s ease;
  cursor: pointer;
}

.testimonial-dot.active {
  background: #ee634e;
  width: 28px;
}

/* Testimonial top row — avatar + meta */
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e2130;
  letter-spacing: 0.5px;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e2130;
}

.testimonial-course {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Stars */
.testimonial-card .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-card .stars i {
  color: #ffb347;
  font-size: 0.82rem;
}

/* Title + body */
.testimonial-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.testimonial-card > p {
  font-size: 0.92rem;
  color: rgba(30, 33, 48, 0.5);
  line-height: 1.8;
}

/* Big quote icon */
.testimonial-quote-icon {
  position: absolute;
  bottom: 1.75rem;
  right: 2rem;
  font-size: 2.75rem;
  color: rgba(238, 99, 78, 0.1);
  pointer-events: none;
}

/* Remove old author row styles if present */
.testimonial-card .testimonial-author {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 1.5rem;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card h3 {
    font-size: 1.25rem;
  }

  .testimonial-card > p {
    font-size: 0.95rem;
  }

  .testimonial-card .testimonial-author i {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.25rem;
  }
}

/* CTA Section */
.cta {
  padding: 6rem 2rem;
  background: #f4f6f9;
  color: #1e2130;
}

.cta-wrapper {
  /* background: linear-gradient(135deg, #f0f2f6 0%, #ffffff 50%, #252842 100%); */
  border: 1px solid rgba(30, 33, 48, 0.1);
  border-radius: 32px;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grid background */
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238, 99, 78, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 99, 78, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    black 20%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    black 20%,
    transparent 100%
  );
  pointer-events: none;
}

/* Glow orbs */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-orb--left {
  width: 320px;
  height: 320px;
  background: rgba(238, 99, 78, 0.06);
  top: -80px;
  left: -100px;
}

.cta-orb--right {
  width: 250px;
  height: 250px;
  background: rgba(238, 99, 78, 0.04);
  bottom: -60px;
  right: -80px;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.cta-content .section-badge {
  background: rgba(238, 99, 78, 0.1);
  border: 1px solid rgba(238, 99, 78, 0.3);
  color: #ee634e;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.cta-content h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.cta-content > p {
  font-size: 1.1rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(238, 99, 78, 0.4);
}

.cta-btn-primary i {
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover i {
  transform: translate(3px, -3px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(30, 33, 48, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.cta-btn-secondary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(30, 33, 48, 0.2);
  transition: background 0.3s ease;
}

.cta-btn-secondary:hover {
  color: #1e2130;
}

.cta-btn-secondary:hover::after {
  background: #ee634e;
}

.cta-btn-secondary i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.cta-btn-secondary:hover i {
  transform: translateY(3px);
}

/* Trust badges */
.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(30, 33, 48, 0.45);
}

.cta-trust-item i {
  color: #ee634e;
  font-size: 0.8rem;
}

.cta-trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(30, 33, 48, 0.18);
}

/* Responsive */
@media (max-width: 768px) {
  .cta {
    padding: 4rem 1.5rem;
  }

  .cta-wrapper {
    padding: 3.5rem 1.5rem;
    border-radius: 24px;
  }

  .cta-content > p {
    font-size: 1rem;
  }

  .cta-trust {
    gap: 1rem;
  }

  .cta-trust-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-wrapper {
    padding: 2.75rem 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Footer */
.footer {
  background: #e8ecf0;
  color: #1e2130;
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(30, 33, 48, 0.1) 30%,
    rgba(30, 33, 48, 0.1) 70%,
    transparent 100%
  );
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
}

/* Brand column */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #1e2130;
}

.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #ee634e 0%, #ff8a75 100%);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(238, 99, 78, 0.3);
}

.footer-brand > p {
  font-size: 0.9rem;
  color: rgba(30, 33, 48, 0.45);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.75rem;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(30, 33, 48, 0.12);
  background: rgba(30, 33, 48, 0.04);
  color: rgba(30, 33, 48, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  border-color: #ee634e;
  background: rgba(238, 99, 78, 0.1);
  color: #ee634e;
  transform: translateY(-3px);
}

/* Columns */
.footer-col-title {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.5rem;
  color: #1e2130;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links li a {
  font-size: 0.9rem;
  color: rgba(30, 33, 48, 0.45);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #ee634e;
  padding-left: 5px;
}

/* Contact list */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-contact li i {
  color: #ee634e;
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.footer-contact li span {
  font-size: 0.9rem;
  color: rgba(30, 33, 48, 0.45);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(30, 33, 48, 0.1) 20%,
    rgba(30, 33, 48, 0.1) 80%,
    transparent 100%
  );
  margin: 3.5rem 0 1.75rem;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(30, 33, 48, 0.35);
}

.footer-legal {
  display: flex;
  gap: 1.75rem;
}

.footer-legal li a {
  font-size: 0.85rem;
  color: rgba(30, 33, 48, 0.35);
  transition: color 0.3s ease;
}

.footer-legal li a:hover {
  color: #ee634e;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 4rem 1.5rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-legal {
    gap: 1.25rem;
    flex-wrap: wrap;
  }
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .whatsapp-fab {
  display: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-note {
  font-size: 0.82rem;
  color: rgba(30, 33, 48, 0.4);
}

.faq {
  padding: 6rem 2rem;
  background: #ffffff;
}

.faq-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.faq-header .section-badge {
  display: inline-block;
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e2130;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

.faq-header p {
  font-size: 1rem;
  color: rgba(30, 33, 48, 0.5);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #f4f6f9;
  border: 1px solid rgba(30, 33, 48, 0.08);
  border-radius: 16px;
  padding: 0.25rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #1e2130;
  padding: 1rem 0;
  list-style: none;
}

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

.faq-item p {
  color: rgba(30, 33, 48, 0.55);
  padding-bottom: 1rem;
  line-height: 1.7;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-fab i {
  font-size: 1.25rem;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
}

.enroll-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.enroll-modal[hidden] {
  display: none;
}

.enroll-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 28, 0.55);
}

.enroll-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 80px rgba(15, 18, 28, 0.25);
}

.enroll-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f6f9;
  color: #1e2130;
}

.enroll-modal-header .section-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.enroll-modal-header h2 {
  font-size: 1.7rem;
  letter-spacing: -0.6px;
  margin-bottom: 0.4rem;
}

.enroll-modal-header p,
.enroll-fineprint {
  color: rgba(30, 33, 48, 0.55);
  font-size: 0.92rem;
  line-height: 1.6;
}

.enroll-modal [hidden] {
  display: none !important;
}

.enroll-modal.is-success .enroll-modal-dialog {
  overflow: hidden;
}

.enroll-form {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.enroll-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.enroll-field label,
.enroll-type legend {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #1e2130;
}

.enroll-field label span {
  font-weight: 500;
  color: rgba(30, 33, 48, 0.4);
}

.enroll-field input,
.enroll-field select,
.enroll-field textarea {
  width: 100%;
  border: 1px solid rgba(30, 33, 48, 0.12);
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  color: #1e2130;
}

.enroll-field input[type="radio"] {
  width: auto;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.enroll-field input:focus,
.enroll-field select:focus,
.enroll-field textarea:focus {
  outline: 2px solid rgba(238, 99, 78, 0.35);
  border-color: #ee634e;
  background: #fff;
}

.enroll-field input[type="radio"]:focus {
  outline: 2px solid rgba(238, 99, 78, 0.35);
  background: none;
}

.enroll-type {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: center;
}

.enroll-type legend {
  width: 100%;
  margin-bottom: 0.15rem;
}

.enroll-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1rem;
  font-size: 0.9rem;
}

.enroll-private-note,
.enroll-fineprint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.enroll-form-error {
  color: #b42318;
  font-size: 0.9rem;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}

.enroll-submit {
  width: 100%;
}

.enroll-fineprint a {
  color: #ee634e;
  font-weight: 600;
}

.enroll-success {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}

.enroll-modal.is-success .enroll-success {
  padding: 2.25rem 0.5rem 0.75rem;
}

.enroll-success i {
  color: #2a8a6e;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.enroll-success h3 {
  margin-bottom: 0.4rem;
}

.enroll-success p {
  color: rgba(30, 33, 48, 0.55);
  margin-bottom: 1.25rem;
}

@media (max-width: 680px) {
  .enroll-form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-fab span {
    display: none;
  }

  .whatsapp-fab {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .faq {
    padding: 4rem 1.5rem;
  }
}
