/* ============================================
   GOAL TRAINING ACADEMY
   Brand Colors: Gold #D4A520, Black #1A1A1A
   ============================================ */

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

:root {
  --gold: #D4A520;
  --gold-light: #E8BC47;
  --gold-dark: #B8901A;
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --black-card: #141414;
  --gray-900: #1a1a1a;
  --gray-800: #2a2a2a;
  --gray-700: #3a3a3a;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #bbb;
  --gray-100: #f0f0f0;
  --white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-300);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 32, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

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

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 165, 32, 0.1);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 2px;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(212, 165, 32, 0.15);
}

.nav__logo-icon {
  width: 32px;
  height: 37px;
}

.nav__logo-icon svg {
  width: 100%;
  height: 100%;
}

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

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

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

.nav__cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

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

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 165, 32, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(212, 165, 32, 0.04) 0%, transparent 50%),
              var(--black);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 165, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 165, 32, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 165, 32, 0.1);
  border: 1px solid rgba(212, 165, 32, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.92;
  margin-bottom: 24px;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 8rem);
  color: var(--white);
  letter-spacing: 4px;
}

.hero__title-line--gold {
  color: var(--gold);
  font-size: clamp(4rem, 14vw, 9.5rem);
  letter-spacing: 8px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- ABOUT ---------- */
.about {
  padding: 80px 0;
  position: relative;
  scroll-margin-top: var(--nav-height);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 32, 0.2), transparent);
}

.about__heading {
  text-align: center;
  margin-bottom: 48px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about__image-wrapper {
  position: relative;
  margin-bottom: 32px;
}

.about__image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(212, 165, 32, 0.15);
}

.about__image-placeholder {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 32, 0.15);
}

.about__image-placeholder svg {
  width: 100%;
  height: auto;
}

.about__image-accent {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border: 2px solid var(--gold);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}

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

.about__credentials--row {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.about__credentials--row .about__credential {
  flex: 0 1 auto;
}

.about__video--full {
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(212, 165, 32, 0.05);
  border: 1px solid rgba(212, 165, 32, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gray-300);
}

.about__credential-icon {
  flex-shrink: 0;
}

.about__bio {
  font-size: 1.02rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.75;
}

.about__video {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 32, 0.15);
  aspect-ratio: 16 / 9;
}

.about__video-embed {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 80px 0;
  position: relative;
  scroll-margin-top: var(--nav-height);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 32, 0.2), transparent);
}

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

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(212, 165, 32, 0.2);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  border-color: rgba(212, 165, 32, 0.2);
  background: linear-gradient(180deg, rgba(212, 165, 32, 0.06) 0%, var(--black-card) 100%);
}

.service-card--featured:hover::before {
  transform: scaleX(1);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(212, 165, 32, 0.1);
  line-height: 1;
  margin-bottom: 8px;
}

.service-card__icon {
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.service-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s;
}

.service-card__link:hover {
  gap: 12px;
}

/* ---------- WHY SECTION ---------- */
.why {
  padding: 80px 0;
  position: relative;
  scroll-margin-top: var(--nav-height);
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 32, 0.2), transparent);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why__text p {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-top: 12px;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.why__feature {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why__feature:hover {
  border-color: rgba(212, 165, 32, 0.15);
}

.why__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 32, 0.08);
  border-radius: 8px;
}

.why__feature h4 {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 4px;
}

.why__feature p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 80px 0;
  position: relative;
  scroll-margin-top: var(--nav-height);
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 32, 0.2), transparent);
}

.gallery__hero {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.gallery__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery__grid {
  display: flex;
  gap: 12px;
}

.gallery__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery__item {
  border-radius: 12px;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.03);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 80px 0;
  position: relative;
  scroll-margin-top: var(--nav-height);
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 32, 0.2), transparent);
}

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

.testimonial-card {
  padding: 32px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(212, 165, 32, 0.15);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background: rgba(212, 165, 32, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 80px 0;
  position: relative;
  scroll-margin-top: var(--nav-height);
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 32, 0.2), transparent);
}

.contact__header {
  text-align: center;
  margin-bottom: 40px;
}

.contact__subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 480px;
  margin: 0 auto;
}

.contact__grid {
  max-width: 640px;
  margin: 0 auto;
}

.contact__sidebar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.contact__sidebar .contact__social {
  margin-bottom: 0;
}

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

.contact__detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 32, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact__detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.contact__detail span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

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

.contact__social > span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.contact__social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: var(--gray-400);
  transition: all 0.3s;
}

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

.contact__social-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-link--inline {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--gray-400);
  transition: all 0.3s;
}

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

/* Form */
.contact__form-wrapper {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
}

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

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--black-soft);
  color: var(--white);
}

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

.contact__form .btn {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: -8px;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(212, 165, 32, 0.15);
}

.footer__logo .nav__logo-icon {
  width: 28px;
  height: 32px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 300px;
}

.footer__links-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links-group li {
  margin-bottom: 10px;
}

.footer__links-group a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: color 0.3s;
}

.footer__links-group a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .gallery__grid {
    display: block;
    columns: 2;
    column-gap: 12px;
  }

  .gallery__col {
    display: contents;
  }

  .gallery__item {
    break-inside: avoid;
    margin-bottom: 12px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(212, 165, 32, 0.1);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    font-size: 1rem;
    color: var(--gray-300);
  }

  .nav__toggle {
    display: flex;
  }

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

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

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

  .hero {
    padding-bottom: 60px;
  }

  .hero__stats {
    gap: 24px;
  }

  .hero__stat-divider {
    display: none;
  }

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

  .gallery__grid {
    columns: 1;
  }

  .about__credentials--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .about__credentials--row .about__credential {
    padding: 8px 10px;
    font-size: 0.78rem;
    gap: 8px;
  }

  .about__credentials--row .about__credential-icon svg {
    width: 16px;
    height: 16px;
  }

  .about__video--full {
    margin-top: 20px;
  }

  .contact__sidebar {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .about__image-accent {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .contact__form-wrapper {
    padding: 24px;
  }
}
