/* ============================================================
   COAST AERO VENTURES — Homepage Redesign v2
   ForeFlight-inspired: clean, generous whitespace, minimal
   ============================================================ */

:root {
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --black:    #111827;
  --dark:     #0f172a;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white:    #ffffff;
  --red:      #A92833;
  --red-h:    #c73a46;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
}

/* ---------- NAV ---------- */
#navbar {
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(12px);
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#navbar.scrolled {
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(12px);
  box-shadow: none;
}
.logo-text {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: .9rem;
}
.nav-links a {
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 500;
}
.nav-cta {
  background: var(--red) !important;
  border-radius: 6px !important;
  font-family: var(--font) !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--red-h) !important;
  box-shadow: none !important;
}
.nav-schedule {
  border-radius: 6px !important;
  font-family: var(--font) !important;
  font-size: .82rem !important;
}
.nav-dropdown-menu {
  background: rgba(15,23,42,.98);
  border-radius: 8px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
}
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(15,23,42,.3) 0%,
    rgba(15,23,42,.1) 35%,
    rgba(15,23,42,.4) 70%,
    rgba(15,23,42,.88) 100%
  );
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 80px;
  max-width: 740px;
}
.hero-eyebrow,
.hero-location {
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .6s .2s forwards;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: #fff;
}
.hero-sub {
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 12px;
}
.hero-tagline {
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin: 0 0 28px;
  opacity: 0;
  animation: fadeUp .6s .5s forwards;
}
.hero-stats,
.hero-scroll { display: none !important; }

.hero-actions {
  margin-bottom: 0;
}
.hero-actions .btn {
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 28px;
  letter-spacing: 0;
  text-transform: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-h);
  box-shadow: none;
  transform: none;
}
.btn-ghost {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
}

/* ---------- STRIP ---------- */
.trust-bar { display: none; }

.hp-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.hp-strip-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hp-strip-track span {
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.hp-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* ---------- OFFERS ---------- */
.hp-offers {
  padding: 128px 0 112px;
  background: var(--white);
}
.hp-offers-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}
.hp-offers-header h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hp-offers-header p {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.hp-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: transparent;
  border: none;
}
.hp-offer {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--gray-50);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease;
}
.hp-offer:hover {
  background: var(--gray-100);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.hp-offer--tall { grid-row: auto; }
.hp-offer--wide { grid-column: auto; }
.hp-offer-num { display: none; }
.hp-offer h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hp-offer p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex-grow: 1;
}
.hp-offer-arrow {
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 20px;
  letter-spacing: 0;
  transition: opacity .2s;
}
.hp-offer:hover .hp-offer-arrow {
  letter-spacing: 0;
  opacity: .8;
}

/* ---------- FLEXIBILITY ---------- */
.hp-flexibility {
  padding: 96px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.hp-flex-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hp-flex-quote {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-style: normal;
  color: var(--black);
  line-height: 1.12;
  letter-spacing: -.025em;
  border: none;
  padding: 0;
  margin: 0;
}
.hp-flex-text p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}
.hp-flex-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: gap .2s;
  border: none;
}
.hp-flex-link:hover { gap: 10px; }

/* ---------- ABOUT ---------- */
.hp-about {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}
.hp-about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 560px;
}
.hp-about-image {
  position: relative;
  overflow: hidden;
}
.hp-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  padding: 12px 16px;
  border-radius: 8px;
}
.hp-about-badge span {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.hp-about-badge strong {
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
}
.hp-about-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-about-text h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hp-about-lead {
  font-size: .95rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 12px;
}
.hp-about-body {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
}
.hp-about-values {
  list-style: none;
  padding: 0;
  margin: 28px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hp-about-values li {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.hp-about-values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.hp-about-link {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.hp-about-link:hover { color: #fff; }

/* ---------- FLEET ---------- */
.hp-fleet {
  padding: 128px 0 112px;
  background: var(--white);
}
.hp-fleet-heading {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.hp-fleet-desc {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 56px;
}

.hp-fleet-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: var(--gray-50);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.hp-fleet-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.hp-fleet-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-fleet-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}
.hp-fleet-reg {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.45);
  padding: 4px 10px;
  border-radius: 4px;
}
.hp-fleet-featured-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-fleet-featured-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.hp-fleet-featured-info > p {
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.hp-fleet-specs {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.hp-fleet-specs > div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .85rem;
}
.hp-fleet-specs > div:last-child { border-bottom: none; }
.hp-fleet-specs > div > span:first-child { color: var(--gray-500); }
.hp-fleet-specs > div > span:last-child { color: var(--black); font-weight: 600; }
.hp-fleet-rate {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  line-height: 1;
}
.hp-fleet-rate small {
  font-size: .82rem;
  font-weight: 400;
  color: var(--gray-500);
}

.hp-fleet-others {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.hp-fleet-card {
  background: var(--gray-50);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1fr;
}
.hp-fleet-card-img {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}
.hp-fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-fleet-card-img .hp-fleet-reg {
  bottom: 10px;
  left: 12px;
  font-size: .65rem;
}
.hp-fleet-card-info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-fleet-card-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.hp-fleet-card-info > p {
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.5;
}
.hp-fleet-card-rate {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.hp-fleet-card-rate small {
  font-size: .75rem;
  font-weight: 400;
  color: var(--gray-500);
}
.hp-fleet-cta { text-align: center; }
.hp-text-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.hp-text-link:hover { gap: 10px; }

/* ---------- PRICING ---------- */
.hp-pricing {
  padding: 112px 0;
  background: var(--dark);
}
.hp-pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.hp-pricing-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.hp-pricing-header p {
  font-size: .92rem;
  color: var(--gray-400);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.hp-pricing-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 880px;
  margin: 0 auto;
}
.hp-pricing-col h3 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .88rem;
}
.hp-price-row:last-child { border-bottom: none; }
.hp-price-name { color: rgba(255,255,255,.6); }
.hp-price-val { color: #fff; font-weight: 600; }
.hp-price-val small { font-weight: 400; color: var(--gray-400); }
.hp-price-val.call { color: var(--gray-400); font-weight: 500; font-size: .82rem; }
.hp-pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.hp-pricing-note a { color: var(--red); text-decoration: none; }
.hp-pricing-note a:hover { text-decoration: underline; }

/* ---------- INSTRUCTORS ---------- */
.hp-instructors {
  padding: 128px 0 112px;
  background: var(--white);
}
.hp-instructors-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.hp-instructors-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.hp-instructors-header p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.hp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hp-team-member {
  text-decoration: none;
  display: block;
  text-align: center;
}
.hp-team-photo {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  background: var(--gray-100);
  aspect-ratio: 3/4;
}
.hp-team-member:first-child .hp-team-photo {
  aspect-ratio: 3/4;
}
.hp-team-member:not(:first-child) .hp-team-photo {
  aspect-ratio: 3/4;
}
.hp-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
  transition: transform .4s ease;
}
.hp-team-member:hover .hp-team-photo img {
  transform: scale(1.03);
}
.hp-team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.hp-team-role {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.4;
}
.hp-team-cta {
  margin-top: 48px;
  text-align: center;
}

/* ---------- TESTIMONIALS ---------- */
.hp-testimonials {
  padding: 112px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.hp-testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}
.hp-testimonials-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.02em;
}
.hp-testimonials-header a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
}
.hp-testimonials-header a:hover { text-decoration: underline; }

.hp-quote-featured {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
}
.hp-quote-featured blockquote {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  font-style: normal;
  color: var(--gray-700);
  line-height: 1.6;
  letter-spacing: -.01em;
  max-width: 820px;
  margin: 0 0 20px;
}
.hp-quote-featured blockquote::before {
  content: '\201C';
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-300);
  line-height: 1;
  margin-bottom: 8px;
}
.hp-quote-attr {
  font-size: .85rem;
  color: var(--gray-500);
}
.hp-quote-attr strong {
  color: var(--black);
  font-weight: 600;
}

.hp-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-quote-card {
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
}
.hp-quote-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.hp-quote-stars svg { width: 14px; height: 14px; }
.hp-quote-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hp-quote-card-attr {
  font-size: .8rem;
  color: var(--gray-500);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.hp-quote-card-attr strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ---------- SAFETY ---------- */
.hp-safety {
  padding: 80px 0;
  background: var(--dark);
}
.hp-safety-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.hp-safety-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.hp-safety-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hp-safety-text {
  font-size: .92rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- GIFT ---------- */
.hp-gift {
  padding: 56px 0;
  background: var(--red);
}
.hp-gift-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hp-gift-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.hp-gift-text p {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.hp-gift-btn {
  display: inline-block;
  background: #fff;
  color: var(--black);
  padding: 14px 28px;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s;
  flex-shrink: 0;
}
.hp-gift-btn:hover { background: var(--gray-100); }

/* ---------- CTA ---------- */
.hp-cta {
  padding: 112px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.hp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.hp-cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.hp-cta-text p {
  font-size: .92rem;
  color: rgba(255,255,255,.45);
  max-width: 440px;
  line-height: 1.7;
}
.hp-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.hp-cta-actions .btn {
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 28px;
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- FOOTER ---------- */
.footer { background: #070b12; }
.footer .logo-text { font-family: var(--font); }
.footer-col h4 {
  font-family: var(--font);
  font-size: .72rem;
  letter-spacing: .12em;
}
.footer-col a { font-family: var(--font); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hp-offers-grid { grid-template-columns: 1fr 1fr; }
  .hp-offer--tall, .hp-offer--wide { grid-row: auto; grid-column: auto; }
  .hp-flex-inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-about-layout { grid-template-columns: 1fr; min-height: auto; }
  .hp-about-image { aspect-ratio: 16/9; max-height: 400px; }
  .hp-about-text { padding: 56px 40px; }
  .hp-about-values { grid-template-columns: 1fr; }
  .hp-fleet-featured { grid-template-columns: 1fr; }
  .hp-fleet-featured-img { min-height: 280px; max-height: 380px; }
  .hp-fleet-others { grid-template-columns: 1fr; }
  .hp-pricing-cols { grid-template-columns: 1fr; gap: 48px; }
  .hp-team-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hp-quotes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hp-offers { padding: 80px 0 64px; }
  .hp-offers-grid { grid-template-columns: 1fr; }
  .hp-offers-header { text-align: left; }
  .hp-flexibility { padding: 64px 0; }
  .hp-about-text { padding: 40px 24px; }
  .hp-fleet { padding: 80px 0 64px; }
  .hp-fleet-card { grid-template-columns: 1fr; }
  .hp-fleet-card-img { min-height: 200px; }
  .hp-fleet-featured-info { padding: 32px 24px; }
  .hp-pricing { padding: 72px 0; }
  .hp-instructors { padding: 80px 0 64px; }
  .hp-instructors-header { text-align: left; }
  .hp-testimonials { padding: 72px 0; }
  .hp-testimonials-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hp-cta-inner, .hp-gift-inner { flex-direction: column; text-align: center; }
  .hp-cta-actions { width: 100%; flex-direction: column; }
  .hp-cta-actions .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-content { padding-bottom: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hp-team-grid { grid-template-columns: 1fr 1fr; }
  .hp-quote-featured blockquote { font-size: 1.1rem; }
}
