﻿/* ============================================================
   CHECKMAT DAPHNE — Landing Page
   style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:        #0a0a0a;
  --black-light:  #141414;
  --black-card:   #1c1c1c;
  --gold:         #E8A020;
  --gold-light:   #F5C240;
  --gold-dark:    #C07800;
  --white:        #ffffff;
  --white-70:     rgba(255,255,255,0.70);
  --white-30:     rgba(255,255,255,0.30);
  --white-10:     rgba(255,255,255,0.08);
  --red:          #e05252;
  --green:        #4caf76;

  --font-title:   'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition:   all 0.3s ease;
  --container:    1200px;
  --radius:       8px;
  --radius-lg:    14px;

  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold:  0 0 24px rgba(232,160,32,0.25);

  --light-bg:     #F7F5EF;
  --light-card:   #FFFFFF;
  --dark-text:    #111111;
  --mid-text:     #555555;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

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

.gold { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-mobile-cta { display: none; }

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Header ─────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
}

#header.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 12px 0;
  border-bottom: 1px solid rgba(232,160,32,0.2);
}

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

.header-logo img,
.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

#gallery {
  background: var(--black-light);
}

.instructors-subtitle {
  color: var(--white-70);
  margin-top: 16px;
  font-size: 17px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.google-review-avatar {
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.btn-cta-large {
  margin-top: 32px;
  padding: 16px 40px;
  font-size: 17px;
}

.footer-contact a {
  color: var(--gold);
}

.footer-website {
  color: var(--gold-light);
  font-size: 13px;
}


nav.desktop-nav { display: flex; align-items: center; gap: 32px; }

nav.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-70);
  transition: var(--transition);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav.desktop-nav a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-title);
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  padding-top: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url('../assets/images/hero-class.webp');
  background-size: cover;
  background-position: 55% 35%;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.70) 0%, rgba(26,18,8,0.40) 50%, rgba(10,10,10,0.55) 100%);
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.78) 30%, rgba(10,10,10,0.10) 100%);
  z-index: 0;
}

#hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  padding: 56px 24px 72px;
  flex: 1;
}


.hero-info {
  font-size: 15px;
  color: var(--gold);
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 28px;
  display: inline-block;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 56px;
  width: 100%;
}

.hero-content {
  flex: 1 1 0;
  min-width: 0;
}

.hero-form-col {
  flex: 0 0 460px;
  width: 460px;
  max-width: 460px;
}

.hero-content { }

.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title span { color: var(--gold); display: block; }

.hero-subtitle {
  font-size: 18px;
  color: var(--white-70);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-info {
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 10px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(232,160,32,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white-10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--white-70);
}

.hero-pill .pill-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Lead Form ──────────────────────────────────────────────── */
.form-card {
  background: rgba(10, 10, 10, 0.55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(232,160,32,0.35);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.form-card-title {
  font-family: var(--font-title);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 6px;
}

.form-card-sub {
  font-size: 14px;
  color: var(--white-70);
  text-align: center;
  margin-bottom: 28px;
  white-space: pre-line;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--gold);
  background: #1e1e1e;
}

.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.whatsapp-field {
  display: flex;
  gap: 8px;
}

.country-select {
  width: 130px;
  flex-shrink: 0;
  padding: 13px 10px;
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.country-select:focus { border-color: var(--gold); }

.country-select option { background: #1c1c1c; }

.whatsapp-field input { flex: 1; }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(76,175,118,0.15);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.form-success h3 {
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 8px;
}

.form-success p { font-size: 15px; color: var(--white-70); }

/* ── Presentation Video ─────────────────────────────────────── */
.presentation-video-wrap {
  display: flex;
  justify-content: center;
}

.presentation-video {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  background: var(--black-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* ── Trust Bar ──────────────────────────────────────────────── */
#trust {
  background: var(--black-light);
  border-top: 1px solid rgba(232,160,32,0.15);
  border-bottom: 1px solid rgba(232,160,32,0.15);
  padding: 48px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  align-items: start;
}

.trust-badge {
  font-size: 42px !important;
  color: var(--gold) !important;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-number {
  font-family: var(--font-title);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.trust-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Pain & Benefits ────────────────────────────────────────── */
#solutions {
  background: var(--black);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


/* ── Instructors ────────────────────────────────────────────── */
#instructors {
  background: var(--black-light);
}

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

.instructor-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.instructor-card:hover {
  border-color: rgba(232,160,32,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.instructor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1c1c1c 0%, #2a2006 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.instructor-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.2);
}

.instructor-photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.instructor-photo-placeholder span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instructor-info {
  padding: 24px;
}

.instructor-belt {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}

.instructor-name {
  font-family: var(--font-title);
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.instructor-role {
  font-size: 14px;
  color: var(--white-70);
  margin-bottom: 16px;
}

.instructor-achievements {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.instructor-achievement {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--white-70);
}

.instructor-achievement::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */
#testimonials {
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  width: 100%;
}

.testimonial-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
  min-width: 0;
  word-break: break-word;
}

.testimonial-card.video-card {
  padding: 0;
}

.video-embed {
  display: block;
  width: 100%;
  height: 260px;
  border: none;
  border-radius: var(--radius-lg);
}

.testimonial-card:hover {
  border-color: rgba(232,160,32,0.2);
}


.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2006, #1c1c1c);
  border: 2px solid rgba(232,160,32,0.3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 20px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-meta {
  font-size: 13px;
  color: var(--white-70);
}

/* ── CTA Section ────────────────────────────────────────────── */
#cta {
  background: var(--black-light);
  border-top: 1px solid rgba(232,160,32,0.15);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.cta-content {}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-title span { color: var(--gold); display: block; }

.cta-sub {
  font-size: 18px;
  color: var(--white-70);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--white-70);
}

.perk-icon { display: none; }

.cta-perk {
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  align-items: flex-start;
}

/* Map */
.map-container {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232,160,32,0.2);
}

.map-container iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6);
}

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-10);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white-70);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.social-link svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--white-70);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}


/* ── Mobile Sticky CTA ──────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(232,160,32,0.3);
  z-index: 998;
}

.mobile-sticky-cta .btn { width: 100%; padding: 14px; font-size: 15px; }

/* ── CTA Strip ──────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #1a1208 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(232,160,32,0.2);
  border-bottom: 1px solid rgba(232,160,32,0.2);
  padding: 40px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-strip-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

/* ── Final Section (map layout) ─────────────────────────────── */
.cta-final-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232,160,32,0.2);
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6);
}

/* 2-instructor special layout */
.instructors-grid--two {
  grid-template-columns: repeat(2, 480px);
  justify-content: center;
  gap: 40px;
}

.instructors-grid--two .instructor-photo {
  aspect-ratio: 4/5;
}

.instructors-grid--two .instructor-name {
  font-size: 32px;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.06); }

/* ── Google Review ──────────────────────────────────────────── */
.google-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.google-stars {
  color: #FBBC05;
  font-size: 18px;
  letter-spacing: 2px;
}

.google-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-70);
  margin-left: auto;
}

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── Responsive — Tablet ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 64px; }
  .form-card { max-width: 560px; }
  .hero-inner { gap: 40px; }
  .hero-form-col { flex: 0 0 380px; width: 380px; max-width: 380px; }

  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .instructors-grid--two { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-final-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive — Mobile ────────────────────────────────────── */
@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }

  nav.desktop-nav { display: none; }
  .hamburger { display: none; }
  .btn-desktop-cta { display: none; }
  .btn-mobile-cta {
    display: inline-block;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .hero-inner { gap: 24px; }
  .hero-form-col { flex: 0 0 300px; width: 300px; max-width: 300px; }
  .hero-title { font-size: clamp(44px, 12vw, 64px); }
  .hero-subtitle { font-size: 16px; }
  .hero-pills { gap: 8px; }

  .form-card { padding: 24px 20px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-number { font-size: 44px; }

  .benefit-grid { grid-template-columns: 1fr; }
  .cta-strip-text { font-size: 15px; line-height: 1.5; }

  .instructors-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}

@media (max-width: 600px) {
  .hero-inner { flex-direction: column; gap: 24px; }
  .hero-form-col { width: 100%; flex: unset; max-width: 100%; }

  /* Centralizar título e subtítulo */
  .hero-content { text-align: center; }
  .hero-badge   { display: block; }
  .hero-title   { text-align: center; }
  .hero-subtitle { text-align: center; max-width: 100%; }
  .hero-info    { text-align: left; }

  /* Pills em grid 2 colunas, mais compactos */
  .hero-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    justify-items: stretch;
  }

  .hero-pill {
    font-size: 12px;
    padding: 6px 10px;
    justify-content: center;
  }

  #hero {
    background-position: 72% top;
  }
  #hero::before {
    background: linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.80) 100%);
  }
  #hero::after {
    background: rgba(10,10,10,0.35);
  }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ══════════════════════════════════════════════════════════════
   LIGHT & GOLD SECTION THEMES
   Alternating rhythm: dark → gold → light → dark → light → gold → light → dark
   ══════════════════════════════════════════════════════════════ */

/* ── WHITE: Header ────────────────────────────────────────── */
#header {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

#header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

nav.desktop-nav a {
  color: #333333;
}

nav.desktop-nav a:hover { color: var(--gold-dark); }

.hamburger span { background: var(--dark-text); }

/* ── GOLD: Trust bar ──────────────────────────────────────── */
#trust {
  background: var(--gold);
  border-top: none;
  border-bottom: none;
}

#trust .trust-number { color: var(--dark-text); }
#trust .trust-label  { color: rgba(0,0,0,0.58); }
#trust .trust-badge  { color: var(--dark-text) !important; font-size: 64px !important; }

/* ── WHITE: About Checkmat ────────────────────────────────── */
#about-checkmat {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.checkmat-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
}

.checkmat-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmat-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.checkmat-text-col .section-label { display: block; margin-bottom: 12px; }

.checkmat-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.checkmat-body {
  font-size: 17px;
  color: var(--mid-text);
  line-height: 1.75;
  max-width: 620px;
}

@media (max-width: 768px) {
  .checkmat-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .checkmat-logo { width: 140px; height: 140px; }
  .checkmat-logo-col { justify-content: center; }
  .checkmat-body { max-width: 100%; }
}

/* ── LIGHT: Benefits ──────────────────────────────────────── */
#solutions { background: var(--light-bg); }

#solutions .section-title { color: var(--dark-text); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--light-card);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: rgba(232,160,32,0.45);
  box-shadow: 0 6px 24px rgba(232,160,32,0.12);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,160,32,0.12);
  border-radius: 50%;
  color: var(--gold-dark);
  flex-shrink: 0;
}

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

.benefit-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.45;
}

/* ── LIGHT: Testimonials ──────────────────────────────────── */
#testimonials { background: var(--light-bg); }

#testimonials .section-title { color: var(--dark-text); }

.testimonial-card {
  background: var(--light-card);
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.testimonial-card:hover { border-color: rgba(232,160,32,0.35); }
.testimonial-quote { color: var(--mid-text); }
.testimonial-name  { color: var(--dark-text); }
.testimonial-meta  { color: var(--mid-text); }
.google-label      { color: var(--mid-text); }

/* ── GOLD: CTA strip ──────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  border-top: none;
  border-bottom: none;
}

.cta-strip-text { color: var(--dark-text); }

.cta-strip .btn-gold {
  background: var(--dark-text);
  color: var(--white);
  box-shadow: none;
}

.cta-strip .btn-gold:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* ── LIGHT: Final CTA + Map ───────────────────────────────── */
#cta {
  background: var(--light-bg);
  border-top: none;
}

#cta .cta-title                    { color: var(--dark-text); }
#cta .cta-title span:not(.gold)    { color: var(--dark-text); }
#cta .cta-sub                      { color: var(--mid-text); }
#cta .cta-perk                     { color: var(--mid-text); }
#cta .map-container iframe         { filter: none; }

/* ── Responsive overrides (must come after theme block) ────── */
@media (max-width: 768px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .benefit-grid { grid-template-columns: 1fr; }
}
