﻿/* ===== Fonts ===== */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/manrope-v20-latin-regular.woff2") format("woff2"),
    url("fonts/manrope-v20-latin-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/manrope-v20-latin-500.woff2") format("woff2"),
    url("fonts/manrope-v20-latin-500.ttf") format("truetype");
}

@font-face {
  font-family: "Michroma";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/michroma-v21-latin-regular.woff2") format("woff2"),
    url("fonts/michroma-v21-latin-regular.ttf") format("truetype");
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Root variables ===== */
:root {
  --color-bg: #020509;
  --color-text: #e8edf6;
  --color-muted: #8a93a3;
  --color-primary: #2563eb;
  --color-border: #e5e7eb;
  --max-width: 1440px;
  --space: 1rem;
  --radius: 8px;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Michroma", sans-serif;
}

/* ===== Typography ===== */
h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 48px;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
}

/* ===== Base ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

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

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space);
}

main {
  flex: 1;
}

/* ===== Header ===== */
.site-header {
    --accent: #2f7bff;
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 1350px;
    max-width: var(--max-width);
    padding-inline: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(28, 28, 28, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #e8edf6;
    transition: top 0.25s ease, width 0.25s ease, max-width 0.25s ease, border-radius 0.25s ease, padding 0.25s ease, background 0.25s ease;
}

/* Scrolled: flush to top, full width, no rounding/gap */
.site-header.is-stuck {
  top: 0;
  width: 100%;
  max-width: 100%;
  padding-inline: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: rgba(10, 12, 16, 0.85);
}


.header-inner {
      display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 80px;
    width: 100%;
    max-width: 1350px;
    margin-inline: auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: #c4ccd9;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 500;
}

/* Contact */
.header-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #e8edf6;
}

.contact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 40px;
  height: 40px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: #8a93a3;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #e8edf6;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
 height: 978px;
  overflow: hidden;
  text-align: center;
}

/* Inner-page hero (e.g. About page): fixed height, no video */
.hero--inner {
  height: 719px;
}

/* About banner content */
.hero-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  text-align: center;
  top: 4rem;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -133%);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 120px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke: 1px #636363;
  pointer-events: none;
  z-index: -1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb-sep {
  color: var(--accent, #2f7bff);
}

.hero-banner-title {
  font-size: 48px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-banner-text {
  color: rgba(255, 255, 255, 0.8);
 
  margin-inline: auto;
}

.hero-video,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #06101c 0%,
    rgba(5, 12, 21, 0) 100%
  );
}

.hero-content {
     position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
    text-align: left;
    top: -9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
}

.hero-left {
  width: 650px;
  max-width: 100%;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  color: #ffffff;
}

.hero-right p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}

/* Primary button */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 8px;
  background: linear-gradient(120deg, #2360a2 0%, #075aff 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Curved corner brackets */
.btn-primary::after {
      content: "";
    position: absolute;
    inset: -6px;
    pointer-events: none;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    --len: 15px; /* size of each corner piece */
  -webkit-mask:
    linear-gradient(#000 0 0) 0 0 / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 0 100% / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / var(--len) var(--len) no-repeat;
  mask:
    linear-gradient(#000 0 0) 0 0 / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 0 100% / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / var(--len) var(--len) no-repeat;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47, 123, 255, 0.45);
  text-decoration: none;
}

/* Google rating */
.rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-g {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.rating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.rating-score {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.stars {
  color: #fbbc05;
  letter-spacing: 1px;
}

.rating-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== About Us ===== */
.about {
  --accent: #2f7bff;
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.about .traffic-light {
  right: 8rem;
}

.about-grid {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.75fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

/* Left column */
/* Reusable pill / badge */
.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  background: #1a1e25;
  font-family: var(--font-heading);
  font-size: 12px;
  color: #c4ccd9;
}

.about-info .pill {
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.about-text {
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e8edf6;
  font-family: var(--font-heading);
  font-size: 16px;
}

.feature-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-icon svg,
.feature-icon img {
  width: 45px;
  height: 45px;
}

/* Middle photo */
.about-photo {
  border-radius: 16px;
  overflow: hidden;
  background: #11161f;
  min-height: 320px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right cards */
.about-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.stat-card {
  position: relative;
  flex: 1;
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c1219;
}

.stat-card--accent {
  border: none;
  border-radius: 10px;
  height: 290px;
  background: linear-gradient(155deg, #4a90e2 0%, #2e629e 100%);
}

.stat-card-body {
  position: relative;
  z-index: 1;
  max-width: 60%;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 38px;
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.stat-card:not(.stat-card--accent) .stat-desc {
  color: var(--color-muted);
}

.stat-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  z-index: 0;
}

/* ===== Our Courses ===== */
.courses {
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.courses-head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.courses-head .pill {
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.course-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(160deg, #0b1018 0%, #070a11 100%);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.course-card:hover {
  border-color: rgba(47, 123, 255, 0.4);
  transform: translateY(-4px);
}

.course-text {
  flex: 1;
  min-width: 0;
}

.course-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
}

.course-desc {
  font-size: 14px;
  color: var(--color-muted);
}

.course-media {
  flex-shrink: 0;
  width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #11161f;
}

.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courses-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* ===== Why Us ===== */
.why {
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.why-title {
  font-size: 40px;
  line-height: 1.25;
  color: #ffffff;
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
}

/* Vertical dividers between items */
.why-item + .why-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(47, 123, 255, 0.45), rgba(47, 123, 255, 0.12));
  color: #6ea8ff;
  margin-bottom: 1.5rem;
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-item-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
}

.why-item-text {
  font-size: 14px;
  color: var(--color-muted);
}

/* ===== Trusted ===== */
.trusted {
  background: #0C1E34;
  overflow: hidden;
}

.trusted-grid {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.trusted-info {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.trusted-title {
  font-size: 40px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.trusted-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 44ch;
}

.trusted-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  max-width: 495px;
}

.trusted-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 15px;
}

.dot {
     width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2f7bff;
    flex-shrink: 0;
}

.trusted-photo {
  align-self: stretch;
  display: flex;
}

.trusted-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  margin-block: clamp(2rem, 5vw, 3rem);
}

/* ===== Stats ===== */
.stats {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  text-align: center;
}

/* Traffic light (top-right) */
.traffic-light {
  position: absolute;
  top: 0;
  right: clamp(1rem, 4vw, 2rem);
  width: auto;
  height: clamp(120px, 18vw, 180px);
  pointer-events: none;
  z-index: 1;
}

.stats-title {
  font-size: 40px;
  line-height: 1.3;
  color: #ffffff;
  /* max-width: 22ch; */
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-inline: clamp(1rem, 2vw, 2rem);
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 56px);
  color: #ffffff;
  line-height: 1;
}

.stat-value sup {
  font-size: 0.45em;
  color: var(--color-primary);
  top: -0.9em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 15px;
  color: #c4ccd9;
}

/* ===== How it works ===== */
.how {
  --accent: #2f7bff;
  position: relative;
  padding-top: clamp(3rem, 8vw, 6rem);
  background-image: url("images/mesh.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}

.how-head {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.how-head .pill {
  margin-bottom: 1.5rem;
}

.how-title {
  font-size: 40px;
  line-height: 1.25;
  color: #ffffff;
 max-width: 20ch;
  margin-bottom: 1.25rem;
}

.how-text {
  color: var(--color-muted);
  max-width: 75ch;
}

/* Road track with steps overlaid on the road image */
.how-track {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  /* room above and below the road for the step text */
  padding-block: clamp(120px, 16vw, 200px);
}

/* Full-width road graphic (1920x274), pins baked in */
.how-road {
  display: block;
  width: 100%;
  height: auto;
}

/* Text blocks anchored to the pin x-positions in the SVG */
.step {
  position: absolute;
  width: min(300px, 80vw);
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

/* above the road (pins 1 & 3 sit near the top) */
.step--up {
  bottom: 77%;
}

/* below the road (pin 2 sits near the bottom) */
.step--down {
  top: 91%;
  margin-top: clamp(-90px, -6vw, -40px);
}

/* x-positions = pin centers / 1920 */
.step:nth-child(2) { left: 29.64%; } /* 569  -> step 1 */
.step:nth-child(3) { left: 50%; }    /* 960  -> step 2 */
.step:nth-child(4) { left: 70.42%; } /* 1352 -> step 3 */

.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 14px;
  color: var(--color-muted);
}

/* ===== Testimonials ===== */
.reviews {
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.reviews-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 24, 34, 0.6) 0%, rgba(6, 10, 16, 0.6) 100%);
  padding: clamp(2rem, 5vw, 4rem);
}

.reviews-head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.reviews-head .pill {
  margin-bottom: 1.25rem;
}

.reviews-title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.reviews-subtitle {
  color: var(--color-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.review-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #11161f;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.review-name {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.review-role {
  font-size: 12px;
  color: var(--color-muted);
}

.review-text {
  font-size: 14px;
  color: var(--color-muted);
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* ===== Benefits ===== */
.benefits {
  --accent: #2f7bff;
  padding-block: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.benefits-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 18, 27, 0.6) 0%, rgba(6, 10, 16, 0.6) 100%);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.benefits-media img {
  width: 100%;
  height: auto;
  display: block;
}

.benefits-info .pill {
  margin-bottom: 1.5rem;
}

.benefits-title {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.benefits-text {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

/* Accordion */
.benefit-item {
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-item:first-child {
  padding-top: 0;
}

.benefit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.benefit-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

/* hide native disclosure markers */
.benefit-title::-webkit-details-marker {
  display: none;
}

/* chevron indicator */
.benefit-title::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.benefit-item[open] .benefit-title {
  color: var(--accent);
}

.benefit-item[open] .benefit-title::after {
  transform: rotate(-135deg);
}

.benefit-desc {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 1rem;
}

/* ===== Pathway ===== */
.pathway {
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.pathway-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
min-height: 455px;
}

.pathway-title {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.pathway-text {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.pathway-text:last-child {
  margin-bottom: 0;
}

/* ===== CTA ===== */
.cta {
  background: radial-gradient(120% 110% at 50% 0%, #21528f 0%, #0d2038 55%, #060d18 100%);
  text-align: center;
}

.cta-inner {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

/* Fanned photo row */
.cta-gallery {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.cta-gallery img {
  width: clamp(90px, 13vw, 150px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;

  margin-inline: -10px;
}

.cta-gallery img:nth-child(1) {
    transform: rotate(351deg);
    z-index: 1;
}
.cta-gallery img:nth-child(2) {
    transform: rotate(1deg);
    z-index: 2;
}
.cta-gallery img:nth-child(3) {
    transform: rotate(357deg);
    z-index: 3;
}
.cta-gallery img:nth-child(4) {
    transform: rotate(4deg);
    z-index: 3;
}
.cta-gallery img:nth-child(5) {
    transform: rotate(355deg);
    z-index: 2;
}
.cta-gallery img:nth-child(6) {
    transform: rotate(9deg);
    z-index: 1;
}

.cta-title {
  font-size: 40px;
  line-height: 1.25;
  color: #ffffff;
  max-width: 24ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 76ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}

/* Outlined / secondary button (shares corner brackets) */
.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.btn-outline::after {
  content: "";
  position: absolute;
  inset: -6px;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  --len: 15px;
  -webkit-mask:
    linear-gradient(#000 0 0) 0 0 / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 0 100% / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / var(--len) var(--len) no-repeat;
  mask:
    linear-gradient(#000 0 0) 0 0 / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 0 100% / var(--len) var(--len) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / var(--len) var(--len) no-repeat;
}

/* ===== FAQs ===== */
.faq {
  --accent: #2f7bff;
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

/* Left media + floating card */
.faq-media {
  position: relative;
}

.faq-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  min-height: 360px;
}

.faq-card {
  position: absolute;
  right: -37px;
  top: 50%;
  transform: translateY(-50%);
  width: min(230px, 70%);
  padding: 20px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.faq-card-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: rgba(47, 123, 255, 0.18);
  color: var(--accent);
}

.faq-card-icon svg {
  width: 18px;
  height: 18px;
}

.faq-card-q {
  font-size: 13px;
  color: #4a5260;
  margin-bottom: 0.5rem;
}

.faq-card-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.faq-card-btn {
  display: block;
  /* break out of the card padding to span edge-to-edge along the bottom */
  margin: 1rem -20px -20px;
  padding: 14px;
  background: linear-gradient(120deg, #2360a2 0%, #075aff 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.faq-card-btn:hover {
  text-decoration: none;
  opacity: 0.92;
}

/* Right: heading + accordion */
.faq-info .pill {
  margin-bottom: 1.5rem;
}

.faq-title {
  font-size: 40px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 2rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 10px;
  background: #11161e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #e8edf6;
  cursor: pointer;
  list-style: none;
}

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

/* +/- indicator */
.faq-q::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  color: currentColor;
  flex-shrink: 0;
}

.faq-item[open] .faq-q {
  background: linear-gradient(120deg, #2f6bbf 0%, #215795 100%);
  color: #ffffff;
}

.faq-item[open] .faq-q::after {
  content: "-";
}

.faq-a {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--color-muted);
}

/* ===== Driving Features ===== */
.features {
  --accent: #2f7bff;
  background: #060d15;
}

.features-inner {
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.features-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-head .pill {
  margin-bottom: 1.25rem;
}

.features-title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.features-subtitle {
  color: var(--color-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.feature-card {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #0d141d 0%, #0a1019 100%);
}

.feature-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(47, 123, 255, 0.18);
  color: #6ea8ff;
  margin-bottom: 1.75rem;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #e8edf6;
}

.feature-points .dot {
  width: 9px;
  height: 9px;
  border: none;
  background: var(--accent);
}

.features-foot {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.features-foot-text {
  color: #c4ccd9;
  margin-bottom: 0.75rem;
}

.features-foot-text a {
  color: var(--accent);
  text-decoration: none;
}

.features-foot-text a:hover {
  text-decoration: underline;
}

.features-rating {
  justify-content: center;
}

.features-rating-sub {
  color: var(--color-muted);
  font-size: 14px;
}

/* ===== Our Story ===== */
.story {
  padding-block: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.story-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 20, 30, 0.6) 0%, rgba(6, 10, 16, 0.6) 100%);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  min-height: 497px;
}

.story-info .pill {
  margin-bottom: 1.5rem;
}

.story-title {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.story-text {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.story-text:last-child {
  margin-bottom: 0;
}

/* ===== What you'll gain ===== */
.gain {
  --accent: #2f7bff;
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.gain-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.gain-title {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gain-subtitle {
  color: var(--color-muted);
}

.gain-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

/* Left: 2x2 numbered cards */
.gain-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.gain-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #0d141d 0%, #0a1019 100%);
}

.gain-card-text {
  flex: 1;
  min-width: 0;
}

.gain-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.gain-card-num {
  font-family: var(--font-heading);
  font-size: 20px;
  color: rgba(110, 168, 255, 0.5);
}

.gain-card-media {
  flex-shrink: 0;
    width: 136px;
    height: 147px;
  border-radius: 12px;
  overflow: hidden;
  background: #11161f;
}

.gain-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right: CTA panel */
.gain-cta {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 16px;
  background: linear-gradient(165deg, #2f6bbf 0%, #1c3f78 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gain-cta-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.gain-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: auto;
  padding-bottom: 2rem;
}

.gain-cta .btn-primary {
  align-self: stretch;
}

/* ===== Upcoming Courses ===== */
.programs {
  --accent: #2f7bff;
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.programs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.programs-head-left .pill {
  margin-bottom: 1.25rem;
}

.programs-title {
  font-size: 40px;
  color: #ffffff;
}

.programs-subtitle {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.programs-text {
  font-size: 14px;
  color: var(--color-muted);
}

/* Accordion */
.programs-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.programs-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
}

.programs-toggle::-webkit-details-marker {
  display: none;
}

.programs-chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid #c4ccd9;
  border-bottom: 2px solid #c4ccd9;
  transform: rotate(-135deg); /* points up when open */
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.programs-accordion:not([open]) .programs-chevron {
  transform: rotate(45deg); /* points down when closed */
}

.program-list {
  list-style: none;
}

.program-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.program-date {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.program-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.program-tagline {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
}

.program-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.program-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #e8edf6;
}

.program-points .dot {
  width: 8px;
  height: 8px;
  border: none;
  background: var(--accent);
}

.program-btn {
  padding: 12px 28px;
  font-size: 14px;
  white-space: nowrap;
}

/* ===== Course Intro ===== */
.course-intro {
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.course-intro-head {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.course-intro-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.course-intro-title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.course-intro-text {
  color: var(--color-muted);
  font-size: 15px;
}

.course-intro-media {
  max-width: 1040px;
  margin-inline: auto;
}

.course-intro-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ===== Trusted (course) ===== */
.ctrust {
  --accent: #2f7bff;
  padding-block: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.ctrust-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 20, 30, 0.6) 0%, rgba(6, 10, 16, 0.6) 100%);
}

.ctrust-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  min-height: 499px;
}

.ctrust-title {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.ctrust-text {
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 52ch;
}

.ctrust-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}

.ctrust-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e8edf6;
  font-size: 14px;
}

.ctrust-features .dot {
  width: 9px;
  height: 9px;
  border: none;
  background: var(--accent);
}

/* ===== Course Benefits ===== */
.cbenefits {
  --accent: #2f7bff;
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.cbenefits-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.cbenefits-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  min-height: 360px;
}

.cbenefits-main .pill {
  margin-bottom: 1.5rem;
}

.cbenefits-title {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.cbenefits-text {
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  max-width: 60ch;
}

/* Inner row: feature list + image */
.cbenefits-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.cbenefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.cbenefits-item {
  display: flex;
  gap: 14px;
  padding-block: 1.25rem;
}

.cbenefits-item + .cbenefits-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cbenefits-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(47, 123, 255, 0.15);
  color: #6ea8ff;
  flex-shrink: 0;
}

.cbenefits-icon svg {
  width: 20px;
  height: 20px;
}

.cbenefits-item-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cbenefits-item-desc {
  font-size: 13px;
  color: var(--color-muted);
}

.cbenefits-inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  min-height: 200px;
}

/* Footer row: button + call us */
.cbenefits-foot {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.cbenefits-call {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #e8edf6;
}

.cbenefits-call-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  flex-shrink: 0;
}

.cbenefits-call-icon svg {
  width: 18px;
  height: 18px;
}

.cbenefits-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.cbenefits-call-label {
  font-size: 12px;
  color: var(--color-muted);
}

.cbenefits-call-value {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

/* ===== Contact Info ===== */
.cinfo {
  --accent: #2f7bff;
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.cinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.cinfo-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #0c1622 0%, #0a111b 100%);
}

.cinfo-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cinfo-text {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: auto;
  padding-bottom: 2rem;
}

.cinfo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: #e8edf6;
  text-decoration: none;
}

.cinfo-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(47, 123, 255, 0.15);
  color: var(--accent);
  flex-shrink: 0;
}

.cinfo-icon svg {
  width: 18px;
  height: 18px;
}

/* ===== Get in Touch (Map + Form) ===== */
.getintouch {
  --accent: #2f7bff;
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.getintouch-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.getintouch-head .pill {
  margin-bottom: 1.25rem;
}

.getintouch-title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.getintouch-subtitle {
  color: var(--color-muted);
}

.getintouch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.getintouch-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
  background: #11161f;
}

.getintouch-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

/* Form panel */
.getintouch-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0c1622 0%, #0a111b 100%);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.form-subtitle {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.appoint-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 14px;
  color: #e8edf6;
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #e8edf6;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #5d6675;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: center;
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.site-footer {
  --accent: #2f7bff;
  padding: clamp(1rem, 3vw, 2rem);
}

.footer-box {
  max-width: 1350px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 20, 30, 0.6) 0%, rgba(6, 10, 16, 0.6) 100%);
}

/* Top CTA */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-title {
  font-size: 32px;
  line-height: 1.25;
  color: #ffffff;
  max-width: 22ch;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-block: clamp(2rem, 4vw, 3rem);
}

/* Columns */
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-about {
  color: var(--color-muted);
  font-size: 14px;
  max-width: 24ch;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #c4ccd9;
  transition: background 0.15s ease, color 0.15s ease;
}

.footer-socials a:hover {
  background: var(--accent);
  color: #ffffff;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col a {
  position: relative;
  color: var(--color-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* bullet dots on Wichtige Links & Unsere Kurse */
.footer-col[aria-label] ul li {
  position: relative;
  padding-left: 16px;
}

.footer-col[aria-label] ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Contact list */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-muted);
  font-size: 14px;
}

.fc-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact a {
  color: var(--color-muted);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--color-muted);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: var(--color-muted);
  text-decoration: none;
}

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

/* Email field container */
#wpforms-24-field_7-container {
    width: 100% !important;
}

/* Actual email input */
#wpforms-24-field_7 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}
.wpforms-field-label{
	color: #fff !important;
font-size: 13px !important;
    font-family: 'Michroma' !important;
    font-weight: 100 !important;
}
#wpforms-submit-24,#wpforms-submit-88{
	    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 8px;
    background: linear-gradient(120deg, #2360a2 0%, #075aff 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-height: 50px;
}
#wpforms-submit-24::after,#wpforms-submit-88::after {
    content: "";
    position: absolute;
    inset: -6px;
    pointer-events: none;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    --len: 15px;
    -webkit-mask: linear-gradient(#000 0 0) 0 0 / var(--len) var(--len) no-repeat, linear-gradient(#000 0 0) 100% 0 / var(--len) var(--len) no-repeat, linear-gradient(#000 0 0) 0 100% / var(--len) var(--len) no-repeat, linear-gradient(#000 0 0) 100% 100% / var(--len) var(--len) no-repeat;
    mask: linear-gradient(#000 0 0) 0 0 / var(--len) var(--len) no-repeat, linear-gradient(#000 0 0) 100% 0 / var(--len) var(--len) no-repeat, linear-gradient(#000 0 0) 0 100% / var(--len) var(--len) no-repeat, linear-gradient(#000 0 0) 100% 100% / var(--len) var(--len) no-repeat;
}
#wpforms-submit-24:hover,,#wpforms-submit-88:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(47, 123, 255, 0.45);
    text-decoration: none;
}
.tribe-common-l-container{
	    padding: 2rem !important;
    margin-top: 8rem !important;
    border-radius: 10px;
	background: linear-gradient(120deg, #84abd6 0%, #146bba 100%);
/*     background: linear-gradient(120deg, #2360a2 0%, #075aff 100%); */
}
.tribe-events .tribe-events-calendar-month__header-column-title {
    color: #ffffff;
}
.tribe-events .tribe-events-calendar-month__day-date-daynum {
    color: #ffffff;
}
.tribe-events-single{
	    padding: 2rem !important;
    margin-top: 8rem !important;
    border-radius: 10px;
background: linear-gradient(120deg, #84abd6 0%, #146bba 100%);
/*     background: linear-gradient(120deg, #2360a2 0%, #075aff 100%); */
}

.tribe-events-content{
	  color: #ffffff;
}
.tribe-events-content.tribe-events-calendar-month__day-date-daynum {
    color: #ffffff;
}
.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a{
	background: #fff;
    padding: 10px;
    border-radius: 4rem;
}
.tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a{
		background: #fff;
    padding: 10px;
    border-radius: 4rem;
}
.tribe-events .tribe-events-calendar-month-mobile-events__mobile-event-datetime {
    color: #ffffff;
}
.page-template-template-kontakt a {
	color: #ffffff;}

.single-tribe_events .tribe-events-single .tribe-events-event-meta {
  
    gap: 10rem;
}
.tribe-events-back a, .tribe-events-back a:visited {
    color: #ffffff;
}
.tribe-events-single-event-title {
   
    color: #ffffff;
}
.single-tribe_events .tribe-events-single .tribe-events-event-meta {
   
    color: #ffffff;
}
.tribe-events-meta-group .tribe-events-single-section-title {
    color: #ffffff;
}
.tribe-events-meta-group a {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== Floating contact buttons ===== */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 25%;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact .fab {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(120deg, #2360a2 0%, #075aff 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.floating-contact .fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(47, 123, 255, 0.5);
  text-decoration: none;
}

.floating-contact .fab svg {
  width: 24px;
  height: 24px;
}
.faq-card-phone a{
	color: #2563eb;
}
.stat-card .stat-number{
	    visibility: hidden;
}
.stat-card-body .stat-number{
	    visibility: visible;
}

/* Make Address field full width */
.wpforms-field-address,
.wpforms-field-address fieldset,
.wpforms-field-address .wpforms-field-row {
    width: 100% !important;
    max-width: 100% !important;
}

/* Make inputs inside address field full width */
.wpforms-field-address input,
.wpforms-field-address select {
    width: 100% !important;
}


.wpforms-container input[type="email"],
.wpforms-container input[type="text"],
.wpforms-container input[type="tel"],
.wpforms-container textarea,
.wpforms-container select {
    width: 100% !important;
}
#wpforms-88-field_7-container {
    width: 100% !important;
    max-width: 100% !important;
}

#wpforms-88-field_7 {
    width: 100% !important;
    max-width: 100% !important;
}
.wpforms-container-full .wpforms-field-sublabel{
	color: rgb(255 255 255) !important;
}
#wpforms-88-field_20-container {
    width: 100% !important;
    max-width: 100% !important;
}

#wpforms-88-field_20 {
    width: 100% !important;
    max-width: 100% !important;
}
.page-template-template-jetzt-anmelden .getintouch-grid{
	grid-template-columns: 1fr !important;
}