/* =============================================
   HAWK ACADEMY - Main Stylesheet
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-lavender: #ADBAFF;
  --color-cyan: #01FFFF;
  --color-dark-text: #181818;
  --color-body-text: #565454;
  --color-light-body: #B5B5B5;
  --color-off-white: #F5F4F2;
  --color-card-heading: #E8E6E2;
  --color-yellow: #F5C542;

  --gradient-awards: linear-gradient(140deg, #ADBAFF 4%, #01FFFF 100%);
  --gradient-cta: linear-gradient(123deg, #ADBAFF 46%, #01FFFF 139%);
  --gradient-footer-bar: linear-gradient(#ADBAFF 0%, #01FFFF 100%);

  --font-heading: 'Degular', sans-serif;
  --font-body: 'Archivo', sans-serif;

  --radius-pill: 100px;
  --radius-card: 20px;

  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-body-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
}

h1 { font-size: 58px; }
h2 { font-size: 38px; }
h3 { font-size: 30px; font-weight: 700; }
h4 { font-size: 24px; }
h5 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--color-black);
  border: 0.8px solid var(--color-lavender);
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-lavender);
  border: 0.8px solid var(--color-lavender);
}

.btn-ghost:hover {
  background: rgba(173, 186, 255, 0.1);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--color-dark-text);
  border: 0.8px solid var(--color-dark-text);
}

.btn-ghost-dark:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
  border: 0.8px solid var(--color-white);
}

.btn-white:hover {
  opacity: 0.9;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Section Labels (subheadings above h1/h2) --- */
.section-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-lavender);
  margin-bottom: 16px;
}

.section-label--dark {
  color: var(--color-lavender);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: relative;
  width: 100%;
  height: var(--header-height);
  background: var(--color-black);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  padding: 13px 20px;
  transition: color 0.3s ease;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-lavender);
}

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

.header__actions .btn {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 36px;
}

.header__actions .btn-primary {
  padding: 10px 45px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

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

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

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

/* Mobile nav - hidden by default */
.mobile-nav {
  display: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: var(--color-black);
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

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

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

.hero__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-lavender);
  margin-bottom: 16px;
}

.hero__title {
  font-size: 58px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 58px;
  margin-bottom: 24px;
}

.hero__text {
  color: var(--color-light-body);
  margin-bottom: 32px;
}

.hero__text p + p {
  margin-top: 16px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(173, 186, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--color-light-body);
  font-size: 14px;
}

.hero__stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
}

.hero__stat strong {
  color: var(--color-white);
  font-weight: 700;
}

/* Hero Visual (right side) */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

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

.hero__circle-bg {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-lavender) 0%, rgba(1, 255, 255, 0.4) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero__photo {
  position: relative;
  z-index: 1;
  max-width: 380px;
}

/* Rotating badge */
.hero__badge {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 120px;
  height: 120px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badge-ring {
  width: 100%;
  height: 100%;
  animation: rotateBadge 10s linear infinite;
}

.hero__badge-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  text-align: center;
  pointer-events: none;
}

/* Decorative elements */
.hero__dot-yellow {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-yellow);
  z-index: 1;
}

.hero__dot-lavender {
  position: absolute;
  bottom: 35%;
  left: 10%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-lavender);
  opacity: 0.6;
  z-index: 1;
}

/* Testimonial cards floating on hero */
.hero__testimonial {
  position: absolute;
  background: var(--color-white);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 4;
  max-width: 280px;
}

.hero__testimonial--left {
  bottom: 20%;
  left: -5%;
}

.hero__testimonial--right {
  bottom: 5%;
  right: -5%;
}

.hero__testimonial img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero__testimonial-content {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-dark-text);
}

.hero__testimonial-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.hero__testimonial-text {
  font-size: 12px;
  color: var(--color-body-text);
  font-style: italic;
}

.hero__testimonial-stars {
  color: var(--color-yellow);
  font-size: 14px;
  margin-top: 4px;
}

/* Homepage hero — Harry overflows into awards bar */
.hero--home {
  overflow: visible;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero--home .hero__photo {
  max-width: 600px;
  margin-bottom: -250px;
}

.hero--home .hero__circle-bg {
  width: 550px;
  height: 550px;
  top: 35%;
}

.hero--home .hero__visual {
  min-height: 580px;
  align-items: flex-start;
}

.hero--home .hero__photo-wrapper {
  margin-top: -10px;
}

.hero--home + .awards-bar {
  position: relative;
  z-index: 10;
}

/* What's Included hero — hawk overflows into awards bar */
.hero--wi {
  overflow: visible;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero--wi .hero__visual {
  min-height: 550px;
  align-items: flex-start;
  padding-top: 40px;
}

.hero--wi .hero__photo {
  max-width: 550px;
  margin-bottom: -350px;
  position: relative;
  z-index: 1;
}

.hero--wi .hero__circle-bg {
  width: 450px;
  height: 450px;
  top: 35%;
}

.hero--wi + .awards-bar {
  position: relative;
  z-index: 10;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* =============================================
   AWARDS BAR
   ============================================= */
.awards-bar {
  background: var(--gradient-awards);
  padding: 30px 0;
  overflow: hidden;
}

.awards-bar__track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.awards-bar__item {
  flex-shrink: 0;
  height: 55px;
  display: flex;
  align-items: center;
}

.awards-bar__item img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(0);
  opacity: 0.9;
}

/* =============================================
   MISSION SECTION
   ============================================= */
.mission {
  background: var(--color-white);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.mission__dots {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(173, 186, 255, 0.3) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.mission .section-label {
  color: var(--color-lavender);
}

.mission h1 {
  color: var(--color-dark-text);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mission__text {
  max-width: 700px;
  margin: 0 auto 16px;
  color: var(--color-body-text);
}

.mission__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0 48px;
}

.mission__video {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.mission__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   MARQUEE SECTION
   ============================================= */
.marquee-section {
  padding: 60px 0;
  overflow: hidden;
  background: var(--color-white);
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-row--rtl .marquee-inner {
  animation: marquee 25s linear infinite;
}

.marquee-row--ltr .marquee-inner {
  animation: marqueeLTR 25s linear infinite;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 600;
  color: var(--color-lavender);
  opacity: 0.35;
  text-transform: uppercase;
  padding: 0 40px;
  line-height: 1.1;
}

/* =============================================
   DIFFERENTIATORS SECTION
   ============================================= */
.differentiators {
  background: var(--color-black);
  padding: 100px 0;
}

.differentiators h1 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.differentiators__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.differentiators__card {
  text-align: left;
}

.differentiators__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.differentiators__card h3 {
  color: var(--color-card-heading);
  margin-bottom: 16px;
  font-size: 24px;
}

.differentiators__card p {
  color: var(--color-light-body);
  font-size: 16px;
  line-height: 26px;
}

/* =============================================
   TOPICS GRID
   ============================================= */
.topics {
  background: var(--color-black);
  padding: 60px 0 100px;
}

.topics h2 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 48px;
}

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

.topics__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
}

.topics__item-icon {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--color-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topics__item-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

/* CTA after topics */
.topics-cta {
  background: var(--color-black);
  padding: 40px 0 80px;
  text-align: center;
}

.topics-cta h2 {
  color: var(--color-white);
  margin-bottom: 32px;
}

/* =============================================
   COMPARISON SECTION
   ============================================= */
.comparison {
  background: #0D0D0D;
  padding: 100px 0;
}

.comparison h1 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 12px;
}

.comparison__subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 48px;
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.comparison__card {
  background: #151515;
  border-radius: 16px;
  padding: 32px;
  border: 0.8px solid rgba(255, 255, 255, 0.06);
}

.comparison__card--highlight {
  background: linear-gradient(145deg, rgba(173, 186, 255, 0.08), rgba(1, 255, 255, 0.05));
  border: 0.8px solid rgba(173, 186, 255, 0.18);
}

.comparison__card h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #666;
}

.comparison__card--highlight h3 {
  background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.comparison__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  padding: 11px 0;
  border-bottom: 0.8px solid rgba(255, 255, 255, 0.06);
}

.comparison__list-item .icon-x {
  color: #555;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__list-item .icon-check {
  color: var(--color-cyan);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__card .comparison__list-item span:last-child {
  color: #555;
}

.comparison__card--highlight .comparison__list-item span:last-child {
  color: var(--color-light-body);
}

.comparison__card .price {
  margin-top: 24px;
  font-size: 18px;
  color: #555;
  text-decoration: line-through;
  opacity: 0.6;
}

.comparison__card--highlight .price {
  color: var(--color-white);
  text-decoration: none;
  opacity: 1;
}

.comparison__card--highlight .btn {
  margin-top: 24px;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust {
  background: var(--color-black);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(173, 186, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.trust .section-label {
  color: var(--color-lavender);
}

.trust h1 {
  color: var(--color-white);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 38px;
  line-height: 1.2;
}

.trust__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.trust__stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(173, 186, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
}

.trust__stat h5 {
  color: var(--color-cyan);
  margin-bottom: 16px;
  font-size: 14px;
}

.trust__stat p {
  color: var(--color-light-body);
  font-size: 16px;
  line-height: 1.8;
}

.trust__judges {
  margin-top: 40px;
  font-size: 14px;
  color: var(--color-light-body);
}

.trust__judges a {
  color: var(--color-cyan);
}

/* =============================================
   ILLUSTRATION SECTIONS
   ============================================= */
.illo-section {
  padding: 80px 0;
  background: var(--color-white);
}

.illo-section .grid-2 {
  align-items: center;
}

.illo-section__image {
  max-width: 480px;
}

.illo-section h2 {
  color: var(--color-dark-text);
  margin-bottom: 20px;
}

.illo-section p {
  color: var(--color-body-text);
  margin-bottom: 16px;
}

/* Dot pattern decorations */
.dots-pattern {
  position: absolute;
  width: 120px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(173, 186, 255, 0.3) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team {
  background: var(--color-off-white);
  padding: 100px 0;
}

.team .section-label {
  text-align: center;
}

.team > .container > h1 {
  text-align: center;
  color: var(--color-dark-text);
  margin-bottom: 16px;
}

.team__subtitle {
  text-align: center;
  color: var(--color-body-text);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team__member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.team__member--reverse {
  direction: rtl;
}

.team__member--reverse > * {
  direction: ltr;
}

.team__photo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.team__photo-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-lavender) 0%, rgba(1, 255, 255, 0.3) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.team__photo-circle img {
  width: 85%;
  height: auto;
  object-fit: cover;
}

.team__dot-yellow {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-yellow);
}

.team__dot-lavender {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-lavender);
  opacity: 0.6;
}

.team__quote {
  position: relative;
}

.team__quote-mark {
  font-family: var(--font-heading);
  font-size: 120px;
  color: var(--color-lavender);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 16px;
}

.team__quote blockquote {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-dark-text);
  font-style: italic;
  margin-bottom: 24px;
}

.team__quote-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark-text);
}

.team__quote-role {
  font-size: 16px;
  color: var(--color-body-text);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
  background: var(--color-black);
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}

/* ---- Masonry Grid Testimonials ---- */
.testimonials-masonry {
  column-count: 3;
  column-gap: 20px;
  padding-bottom: 80px;
}

.tcard {
  break-inside: avoid;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(173, 186, 255, 0.2);
}

.tcard__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-lavender), var(--color-cyan));
}

.tcard__quote {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-lavender);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 8px;
}

.tcard p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 20px;
}

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

.tcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.tcard__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
}

.tcard__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.tcard__stars {
  color: var(--color-yellow);
  font-size: 14px;
  margin-top: 12px;
  letter-spacing: 2px;
}

/* ---- 2-Row Featured Grid Testimonials ---- */
.testimonials-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  padding-bottom: 80px;
}

.testimonials-featured-grid .tcard--featured {
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(173, 186, 255, 0.1), rgba(1, 255, 255, 0.05));
  border-color: rgba(173, 186, 255, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-featured-grid .tcard--featured p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.testimonials-featured-grid .tcard--featured .tcard__quote {
  font-size: 64px;
}

.testimonials-featured-grid .tcard--featured .tcard__stars {
  font-size: 18px;
}

.testimonials .section-label {
  text-align: center;
}

.testimonials h1 {
  text-align: center;
  color: var(--color-dark-text);
  margin-bottom: 16px;
}

.testimonials__subtitle {
  text-align: center;
  color: var(--color-body-text);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials__video {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.testimonials__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Carousel */
.testimonials__carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials__carousel-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.testimonials__carousel-wrapper {
  padding-bottom: 100px;
}

.testimonials__carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-lavender);
  color: var(--color-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.testimonials__carousel-btn:hover {
  background: var(--color-lavender);
  color: var(--color-black);
}

.testimonials__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.testimonials__carousel::-webkit-scrollbar {
  display: none;
}

.testimonials__card {
  flex: 0 0 340px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px;
  scroll-snap-align: start;
}

.testimonials__card-quote {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-lavender);
  opacity: 0.4;
  line-height: 0.8;
  margin-bottom: 12px;
}

.testimonials__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-body-text);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonials__card-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonials__card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.testimonials__card-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-dark-text);
}

.testimonials__card-role {
  font-size: 13px;
  color: var(--color-body-text);
}

/* =============================================
   WHERE DO I START
   ============================================= */
.start-section {
  background: linear-gradient(180deg, var(--color-black) 0%, #0a1628 30%, #1a0a2e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.start-section .grid-2 {
  align-items: center;
}

.start-section__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.start-section__image-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cyan) 0%, rgba(173, 186, 255, 0.4) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.start-section__image-circle img {
  width: 90%;
  height: auto;
}

.start-section h1 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 48px;
}

.start-section p {
  color: var(--color-light-body);
  margin-bottom: 24px;
}

.start-section .btn-group {
  margin-top: 32px;
}

/* =============================================
   CLIENT LOGOS
   ============================================= */
.client-logos {
  background: var(--color-off-white);
  padding: 100px 0;
  text-align: center;
}

.client-logos h2 {
  color: var(--color-dark-text);
  margin-bottom: 16px;
  font-style: italic;
}

.client-logos__subtitle {
  color: var(--color-body-text);
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.client-logos__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.client-logos__row img {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-gradient-bar {
  display: none;
}

.footer {
  background: var(--color-black);
  padding: 60px 0 0;
  color: var(--color-white);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer__logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer__description {
  max-width: 450px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-white);
  font-weight: 700;
}

.footer__social {
  text-align: right;
}

.footer__social-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer__social-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer__social-links a {
  color: rgba(84, 89, 95, 1);
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer__social-links a:hover {
  color: var(--color-white);
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 32px;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__nav a {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--color-lavender);
}

.footer__nav-left,
.footer__nav-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__bottom {
  background: var(--gradient-footer-bar);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(84, 89, 95, 1);
}

.footer__bottom a {
  color: rgba(84, 89, 95, 1);
}

.footer__bottom a:hover {
  color: var(--color-black);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--color-black);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

/* Enquiries grid responsive */
@media (max-width: 767px) {
  .enquiries-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  .enquiries-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================
   SUBPAGE: ABOUT
   ============================================= */
.page-hero {
  background: var(--color-black);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--color-light-body);
  max-width: 600px;
  margin: 0 auto;
}

/* Generic content section */
.content-section {
  padding: 80px 0;
}

.content-section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.content-section--dark p {
  color: var(--color-light-body);
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-lavender);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__visual {
    min-height: 400px;
  }

  .hero__title {
    font-size: 44px;
    line-height: 48px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stat {
    justify-content: center;
  }

  .differentiators__grid {
    grid-template-columns: 1fr 1fr;
  }

  .topics__grid {
    grid-template-columns: 1fr 1fr;
  }

  .team__member {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team__member--reverse {
    direction: ltr;
  }

  .marquee-text {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  body {
    font-size: 16px;
    line-height: 26px;
  }

  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .header__nav,
  .header__actions {
    display: none;
  }

  .header__nav.active,
  .header__actions.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav overlay */
  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-black);
    display: none;
    flex-direction: column;
    padding: 32px 24px;
    z-index: 999;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    font-size: 18px;
    color: var(--color-white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-nav .btn {
    margin-top: 24px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 40px;
  }

  .hero__circle-bg {
    width: 280px;
    height: 280px;
  }

  .hero__photo {
    max-width: 260px;
  }

  .hero__testimonial {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .differentiators__grid {
    grid-template-columns: 1fr;
  }

  .topics__grid {
    grid-template-columns: 1fr;
  }

  .comparison__grid {
    grid-template-columns: 1fr;
  }

  .testimonials-masonry {
    column-count: 1;
  }

  .trust__stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer__social {
    text-align: left;
  }

  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .client-logos__row {
    gap: 30px;
  }

  .client-logos__row img {
    height: 30px;
  }

  .marquee-text {
    font-size: 50px;
  }

  .testimonials__card {
    flex: 0 0 280px;
  }

  .team__photo-circle {
    width: 280px;
    height: 280px;
  }

  .start-section h1 {
    font-size: 36px;
  }

  .start-section__image-circle {
    width: 260px;
    height: 260px;
  }
}
