/* YBA Sports — Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0b1d39;
  --navy-deep: #071221;
  --navy-soft: #14335e;
  --cyan: #14c6d4;
  --orange: #ff6b35;
  --gold: #ffbe3b;
  --white: #ffffff;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #eef5fb;
  --text-dark: #142235;
  --text-gray: #5f6c7d;
  --border: rgba(11, 29, 57, 0.1);
  --shadow-sm: 0 12px 30px rgba(11, 29, 57, 0.08);
  --shadow-md: 0 20px 50px rgba(11, 29, 57, 0.12);
  --shadow-lg: 0 28px 70px rgba(11, 29, 57, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --transition: 0.24s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Rubik', 'Arial Hebrew', Arial, sans-serif;
  direction: rtl;
  text-align: right;
  min-height: 100vh;
  line-height: 1.7;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top right, rgba(20, 198, 212, 0.09), transparent 25%),
    radial-gradient(circle at left 20%, rgba(255, 107, 53, 0.05), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
body.menu-open,
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(20, 198, 212, 0.25); color: var(--navy); }
:focus-visible { outline: 3px solid rgba(20, 198, 212, 0.34); outline-offset: 2px; }
h1 { font-size: clamp(2.35rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.7rem); font-weight: 800; line-height: 1.18; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; }
p { font-size: 1rem; line-height: 1.8; }
main { padding-top: 96px; }

.container { width: min(1280px, 100%); margin: 0 auto; padding: 0 22px; }
.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-heading { max-width: 720px; margin: 0 auto 48px; }
.section-title { color: var(--navy); margin-bottom: 12px; }
.section-subtitle { color: var(--text-gray); font-size: 1.05rem; }
.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }
.bg-light { background: linear-gradient(180deg, rgba(238, 245, 251, 0.85) 0%, rgba(255, 255, 255, 0.98) 100%); }
.bg-navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 198, 212, 0.28);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(20, 198, 212, 0.14);
  border: 1px solid rgba(20, 198, 212, 0.28);
  margin-bottom: 18px;
}

.check-list { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.check-list li { position: relative; padding-right: 30px; color: var(--text-gray); font-size: 0.96rem; }
.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 3px;
  color: var(--cyan);
  font-size: 0.95rem;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 16px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, #ff7e47 0%, var(--orange) 100%);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(255, 107, 53, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 32px rgba(255, 107, 53, 0.3); }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(11, 29, 57, 0.16);
  box-shadow: 0 12px 24px rgba(11, 29, 57, 0.06);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #2cd972 0%, #23c463 100%);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(35, 196, 99, 0.24);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 20px 34px rgba(35, 196, 99, 0.28); }
.btn-light-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}
.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7, 18, 33, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: rgba(7, 18, 33, 0.94);
  box-shadow: 0 18px 46px rgba(7, 18, 33, 0.24);
  border-color: rgba(255, 255, 255, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 22px;
}
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 62px; width: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav .nav-cta {
  background: linear-gradient(135deg, #ff7e47 0%, var(--orange) 100%);
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(255, 107, 53, 0.22);
}
.main-nav .nav-cta::after { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 33, 0.45);
  z-index: 900;
}
.nav-overlay.visible { display: block; }

@media (max-width: 980px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 88vw);
    height: 100vh;
    padding: 90px 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: linear-gradient(180deg, rgba(7, 18, 33, 0.98) 0%, rgba(11, 29, 57, 0.98) 100%);
    box-shadow: -16px 0 40px rgba(7, 18, 33, 0.4);
    transition: right 0.32s ease;
    overflow-y: auto;
    z-index: 1001;
  }
  .main-nav.open { right: 0; }
  .main-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.02rem;
  }
  .main-nav a::after { display: none; }
  .main-nav .nav-cta { margin-top: 18px; text-align: center; width: 100%; }
}

.site-footer {
  margin-top: 84px;
  background:
    radial-gradient(circle at top left, rgba(20, 198, 212, 0.15), transparent 28%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.3fr;
  gap: 40px;
  padding-bottom: 42px;
}
.footer-logo { height: 70px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255, 255, 255, 0.72); max-width: 320px; }
.footer-nav,
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-contact p { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.78); }
.footer-contact i { width: 18px; color: var(--cyan); }
.footer-wa { margin-top: 12px; align-self: flex-start; }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 22px 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 18, 33, 0.94) 0%, rgba(11, 29, 57, 0.8) 48%, rgba(20, 198, 212, 0.18) 120%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  max-width: 880px;
  padding: 128px 0 92px;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 38px -34px 56px auto;
  width: min(100%, 760px);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(7, 18, 33, 0.7) 0%, rgba(7, 18, 33, 0.52) 48%, rgba(7, 18, 33, 0) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  z-index: -1;
}
.hero-content h1 { margin-bottom: 22px; }
.hero-sub {
  max-width: 760px;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 34px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.hero-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}
.hero-highlight i { color: var(--gold); }
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  padding-bottom: 24px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.stat { text-align: center; padding: 8px 12px; }
.stat-num {
  display: block;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--cyan);
}
.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.audience-grid,
.benefits-grid,
.process-grid,
.summary-grid,
.team-values-grid,
.role-fit-grid,
.contact-quick-grid { display: grid; gap: 22px; }
.audience-grid { grid-template-columns: repeat(4, 1fr); }
.benefits-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid { grid-template-columns: repeat(3, 1fr); }
.summary-grid { grid-template-columns: repeat(3, 1fr); margin-top: -42px; position: relative; z-index: 3; }
.team-values-grid { grid-template-columns: repeat(4, 1fr); }
.role-fit-grid { grid-template-columns: repeat(3, 1fr); }
.contact-quick-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  align-items: stretch;
}

.audience-card,
.benefit-card,
.summary-item,
.team-value-card,
.role-fit-card,
.contact-quick-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-quick-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.audience-card { padding: 28px; display: flex; flex-direction: column; }
.audience-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 190, 59, 0.18);
  color: #815800;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.audience-card p,
.benefit-card p,
.summary-item p,
.team-value-card p,
.role-fit-card p,
.contact-quick-card p { color: var(--text-gray); margin-top: 10px; }
.audience-card .btn-primary,
.audience-card .btn-secondary { margin-top: auto; }
.benefit-card,
.summary-item,
.team-value-card,
.role-fit-card,
.contact-quick-card { padding: 26px; }
.benefit-card i,
.summary-item i,
.team-value-card i,
.role-fit-card i,
.contact-quick-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(20, 198, 212, 0.14);
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-quick-card a {
  margin-top: auto;
  align-self: flex-start;
}

.story-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 245, 251, 0.9) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.story-copy p { color: var(--text-gray); margin-top: 14px; }
.story-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.metric-card {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(11, 29, 57, 0.98) 0%, rgba(20, 51, 94, 0.98) 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.metric-card strong { display: block; font-size: 1.9rem; color: var(--gold); }
.metric-card span { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; }

.process-step {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.process-step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(20, 198, 212, 0.14);
  color: var(--navy);
  font-weight: 800;
}
.process-step p { margin-top: 10px; color: var(--text-gray); }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 59, 0.18), transparent 25%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-panel h2,
.cta-panel h3 { color: var(--white); margin-bottom: 8px; }
.cta-panel p { color: rgba(255, 255, 255, 0.8); max-width: 720px; }
.cta-panel-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero-sm { min-height: 220px; }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 18, 33, 0.88) 0%, rgba(11, 29, 57, 0.7) 100%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 18, 33, 0.86) 0%, rgba(20, 51, 94, 0.54) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  max-width: 980px;
  padding: 48px clamp(28px, 4vw, 60px) 42px;
}
.page-hero-content h1 { margin-bottom: 10px; }
.page-hero-content p { color: rgba(255, 255, 255, 0.82); max-width: 760px; }

.filter-section { padding: 34px 0 26px; }
.filter-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.filter-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.filter-note { max-width: 620px; color: var(--text-gray); }
.filter-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-bar select {
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(11, 29, 57, 0.14);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  direction: rtl;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.filter-bar select:focus {
  border-color: rgba(20, 198, 212, 0.7);
  box-shadow: 0 0 0 4px rgba(20, 198, 212, 0.12);
  outline: none;
}
.filter-reset { min-width: 120px; }
.results-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.results-count { font-weight: 700; color: var(--navy); }
.filter-contact-link { color: var(--orange); font-weight: 700; text-decoration: none; }
.filter-contact-link:hover { text-decoration: underline; }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.class-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.class-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 198, 212, 0.26);
}
.class-img-wrap { position: relative; height: 220px; overflow: hidden; }
.class-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 33, 0) 40%, rgba(7, 18, 33, 0.16) 100%);
}
.class-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.class-card:hover .class-img-wrap img { transform: scale(1.06); }
.class-sport-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}
.class-body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.class-body h3 { color: var(--navy); margin-bottom: 14px; }
.class-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}
.class-details span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.92rem;
}
.class-details i { width: 16px; color: var(--cyan); margin-top: 4px; flex-shrink: 0; }
.class-btn { width: 100%; }
.no-results {
  margin-top: 24px;
  padding: 24px 20px;
  border-radius: 18px;
  border: 1px dashed rgba(11, 29, 57, 0.2);
  background: rgba(238, 245, 251, 0.68);
  color: var(--text-gray);
  text-align: center;
}
.no-results a { color: var(--orange); font-weight: 700; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(11, 29, 57, 0.14);
  background: var(--white);
  color: var(--text-dark);
  direction: rtl;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(95, 108, 125, 0.72); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(20, 198, 212, 0.72);
  box-shadow: 0 0 0 4px rgba(20, 198, 212, 0.12);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}
.contact-info-panel,
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-info-panel,
.contact-form-wrap,
.about-copy,
.about-aside,
.shop-form { padding: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 29, 57, 0.08);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail i { color: var(--cyan); font-size: 1.15rem; margin-top: 4px; }
.contact-detail strong { display: block; color: var(--navy); margin-bottom: 4px; }
.contact-detail a { color: var(--text-dark); text-decoration: none; font-weight: 600; }
.contact-detail a:hover { color: var(--orange); }
.contact-helper-list { list-style: none; display: grid; gap: 10px; margin-top: 22px; }
.contact-helper-list li { position: relative; padding-right: 28px; color: var(--text-gray); }
.contact-helper-list li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 4px;
  color: var(--orange);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 10px; }
.contact-form-wrap .section-subtitle { margin-bottom: 24px; }
.lectures-link {
  margin-top: 26px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(238, 245, 251, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid var(--border);
}
.lectures-link h4 { color: var(--navy); margin-bottom: 10px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}
.about-copy,
.about-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.about-copy p { color: var(--text-gray); margin-top: 14px; }
.about-points { display: grid; gap: 18px; margin-top: 28px; }
.about-point { display: flex; align-items: flex-start; gap: 14px; }
.about-point i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(20, 198, 212, 0.14);
  color: var(--navy);
}
.about-point p { margin-top: 4px; font-size: 0.95rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.value-card {
  padding: 26px 22px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.value-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(20, 198, 212, 0.14);
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 1.35rem;
}
.value-card p { margin-top: 8px; color: var(--text-gray); }
.partners-section {
  margin-top: 28px;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 190, 59, 0.18), transparent 25%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.partners-section h3 { color: var(--gold); margin-bottom: 10px; }
.partners-section p { color: rgba(255, 255, 255, 0.82); }

.instructors-join-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.join-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  text-align: center;
}
.join-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(20, 198, 212, 0.14);
  color: var(--navy);
  font-size: 2rem;
}
.join-card p { color: var(--text-gray); margin-top: 10px; }
.join-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}
.join-note { margin-top: 18px; text-align: center; color: var(--text-gray); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 33, 0) 42%, rgba(7, 18, 33, 0.82) 100%);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 0.96rem;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(7, 18, 33, 0.92);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.shop-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 36px;
}
.shop-shirt-img {
  width: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}
.shop-intro h2 { color: var(--navy); margin-bottom: 14px; }
.shop-intro p { color: var(--text-gray); }
.shop-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.shop-highlight {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(238, 245, 251, 0.9);
  border: 1px solid rgba(11, 29, 57, 0.08);
  text-align: center;
}
.shop-highlight i { color: var(--cyan); font-size: 1.25rem; margin-bottom: 10px; }
.shop-highlight span { display: block; color: var(--navy); font-size: 0.9rem; font-weight: 700; }
.shop-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.tab-btn {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(11, 29, 57, 0.12);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.tab-btn:hover { transform: translateY(-1px); }
.tab-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.shop-note {
  margin-bottom: 26px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(238, 245, 251, 0.9);
  border: 1px solid rgba(11, 29, 57, 0.08);
  color: var(--text-gray);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.shop-form {
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.shop-form h3 { color: var(--navy); margin-bottom: 22px; }
.team-order-card {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 190, 59, 0.18), transparent 25%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.team-order-card p { color: rgba(255, 255, 255, 0.82); max-width: 720px; }

#toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  max-width: min(90vw, 480px);
  padding: 14px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 9000;
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2cd972 0%, #23c463 100%);
  color: var(--white);
  font-size: 1.55rem;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(35, 196, 99, 0.28);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 22px 36px rgba(35, 196, 99, 0.34);
}

@media (max-width: 1080px) {
  .audience-grid,
  .benefits-grid,
  .team-values-grid { grid-template-columns: repeat(2, 1fr); }
  .story-panel,
  .about-grid,
  .shop-hero,
  .contact-layout { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; margin-top: 0; }
}

@media (max-width: 900px) {
  .hero-bg { background-attachment: scroll; }
  .hero-highlights,
  .process-grid,
  .role-fit-grid,
  .contact-quick-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .page-hero-content,
  .hero-content { padding-top: 110px; }
  .page-hero-content { padding-inline: 24px; }
  .hero-content::before {
    inset: 52px -18px 78px -18px;
    width: auto;
  }
}

@media (max-width: 768px) {
  main { padding-top: 84px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 46px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 104px 0 80px; }
  .hero-content::before {
    inset: 54px -10px 96px -10px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(7, 18, 33, 0.72) 0%, rgba(7, 18, 33, 0.52) 60%, rgba(7, 18, 33, 0) 100%);
  }
  .hero-btns,
  .cta-panel-actions { width: 100%; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary,
  .hero-btns .btn-whatsapp,
  .cta-panel-actions .btn-primary,
  .cta-panel-actions .btn-secondary,
  .cta-panel-actions .btn-whatsapp,
  .cta-panel-actions .btn-light-outline { width: 100%; }
  .audience-grid,
  .benefits-grid,
  .values-grid,
  .instructors-join-grid,
  .shop-highlights { grid-template-columns: 1fr; }
  .stats-bar { margin-top: 0; }
  .filter-panel,
  .contact-info-panel,
  .contact-form-wrap,
  .about-copy,
  .about-aside,
  .shop-form,
  .story-panel,
  .cta-panel,
  .team-order-card { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-wa { align-self: stretch; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 10px 16px; }
  .logo-img { height: 54px; }
  .stats-inner { grid-template-columns: 1fr; }
  .story-metrics,
  .form-row { grid-template-columns: 1fr; }
  .filter-bar { align-items: stretch; }
  .filter-bar select,
  .filter-reset { width: 100%; }
  .page-hero-content { padding-inline: 20px; }
}
