/* ==========================================================================
   CEEZAER — HOME PRO (light professional theme)
   Standalone stylesheet for the homepage. Loaded WITHOUT system.css /
   dji-preview.css so the light palette is never overridden by the dark
   design-system layer used elsewhere on the site.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --hp-accent: #36a9ae;
  --hp-accent-dark: #2c8e93;
  --hp-accent-soft: rgba(54, 169, 174, 0.1);
  --hp-ink: #111827;
  --hp-ink-soft: #374151;
  --hp-muted: #6b7280;
  --hp-line: #e5e7eb;
  --hp-bg: #ffffff;
  --hp-bg-alt: #f8fafc;
  --hp-footer: #111827;
  --hp-radius: 14px;
  --hp-shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05), 0 4px 14px rgba(17, 24, 39, 0.06);
  --hp-shadow-md: 0 4px 10px rgba(17, 24, 39, 0.07), 0 18px 44px rgba(17, 24, 39, 0.1);
  --hp-font: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --hp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hp-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--hp-ink);
  background: var(--hp-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--hp-accent-dark); text-decoration: none; }
a:hover { color: var(--hp-accent); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.6em; color: var(--hp-ink); letter-spacing: -0.02em; }
p { margin: 0 0 1em; color: var(--hp-ink-soft); }
:focus-visible { outline: 2px solid var(--hp-accent); outline-offset: 3px; border-radius: 4px; }

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

/* ---------- Buttons ---------- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--hp-ease), color 0.2s var(--hp-ease),
              border-color 0.2s var(--hp-ease), transform 0.2s var(--hp-ease),
              box-shadow 0.2s var(--hp-ease);
}
.hp-btn:hover { transform: translateY(-2px); }
.hp-btn-accent {
  background: var(--hp-accent);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(54, 169, 174, 0.35);
}
.hp-btn-accent:hover { background: var(--hp-accent-dark); color: #ffffff; }
.hp-btn-ghost-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}
.hp-btn-ghost-white:hover { background: rgba(255, 255, 255, 0.14); color: #ffffff; border-color: #ffffff; }
.hp-btn-white {
  background: #ffffff;
  color: var(--hp-ink);
  box-shadow: var(--hp-shadow-sm);
}
.hp-btn-white:hover { background: #f3f4f6; color: var(--hp-ink); }

/* ---------- Header ---------- */
.hp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hp-line);
  box-shadow: 0 1px 3px rgba(17, 24, 39, 0.05);
}
.hp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hp-logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  color: var(--hp-ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.hp-logo:hover { color: var(--hp-ink); }
.hp-logo span { color: var(--hp-accent); }
.hp-logo-drone {
  width: 1.15em;
  height: 1.15em;
  margin-left: 0.35em;
  vertical-align: -0.18em;
  color: var(--hp-accent);
}
.hp-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.15rem;
  margin-left: auto;
  min-width: 0;
}
.hp-nav a {
  color: var(--hp-ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.35rem 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--hp-ease), border-color 0.2s var(--hp-ease);
}
.hp-nav a:hover { color: var(--hp-ink); }
.hp-nav a.is-active { color: var(--hp-ink); border-bottom-color: var(--hp-accent); }
.hp-header-cta {
  margin-left: 1rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.hp-header-cta:hover { transform: translateY(-1px); }

/* Hamburger */
.hp-burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hp-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--hp-ink);
  transition: transform 0.25s var(--hp-ease), opacity 0.25s var(--hp-ease);
}
body.hp-drawer-open .hp-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.hp-drawer-open .hp-burger span:nth-child(2) { opacity: 0; }
body.hp-drawer-open .hp-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.hp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #ffffff;
  z-index: 210;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transform: translateX(105%);
  transition: transform 0.3s var(--hp-ease);
  box-shadow: -18px 0 50px rgba(17, 24, 39, 0.18);
  overflow-y: auto;
}
body.hp-drawer-open .hp-drawer { transform: translateX(0); }
.hp-drawer a {
  color: var(--hp-ink);
  font-weight: 500;
  font-size: 1.02rem;
  padding: 0.8rem 0.2rem;
  border-bottom: 1px solid var(--hp-line);
}
.hp-drawer a:last-of-type { border-bottom: 0; }
.hp-drawer .hp-btn { margin-top: 1.2rem; border-bottom: 0; }
.hp-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--hp-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.hp-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--hp-ease);
}
body.hp-drawer-open .hp-backdrop { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hp-hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0f14 url('/images/nature-documentary.jpg') center / cover no-repeat;
}
.dji-hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s var(--hp-ease);
  pointer-events: none;
}
.dji-hero-video.is-playing { opacity: 1; }
.dji-hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;       /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh;   /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
}
.hp-hero {
  align-items: flex-end;       /* buttons sit near the bottom of the video */
  justify-content: center;
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  /* Clean video: only a soft bottom scrim so the buttons stay legible */
  background: linear-gradient(180deg,
    rgba(9, 14, 20, 0) 0%,
    rgba(9, 14, 20, 0) 55%,
    rgba(9, 14, 20, 0.55) 100%);
}
.hp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px 4.5rem;
}
.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---------- Intro (H1 lives below the video hero) ---------- */
.hp-intro { padding: 4.5rem 0 4rem; background: var(--hp-bg); text-align: center; }
.hp-intro-eyebrow {
  color: var(--hp-accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.hp-intro h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  font-weight: 800;
  max-width: 22ch;
  margin: 0 auto 1rem;
}
.hp-intro-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--hp-muted);
  max-width: 62ch;
  margin: 0 auto 1.6rem;
}
.hp-intro-trust {
  color: var(--hp-ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}
.hp-intro-trust .sep { color: var(--hp-accent); margin: 0 0.45rem; }

/* ---------- Stats bar ---------- */
.hp-stats { background: var(--hp-bg); border-bottom: 1px solid var(--hp-line); }
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.hp-stat { text-align: left; }
.hp-stat-value {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hp-ink);
  line-height: 1;
}
.hp-stat-value sup { font-size: 0.55em; color: var(--hp-accent); }
.hp-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-accent-dark);
  margin: 0.5rem 0 0.35rem;
}
.hp-stat-desc { font-size: 0.88rem; color: var(--hp-muted); margin: 0; }

/* ---------- Sections ---------- */
.hp-section { padding: 5.5rem 0; }
.hp-section.alt { background: var(--hp-bg-alt); }
.hp-section-head { max-width: 720px; margin: 0 auto 3.2rem; text-align: center; }

/* Latest videos grid (populated from the YouTube feed) */
.hp-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hp-video-card {
  display: block;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease), border-color 0.2s var(--hp-ease);
}
.hp-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 169, 174, 0.45);
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.07), 0 18px 44px rgba(17, 24, 39, 0.1);
}
.hp-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
}
.hp-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.72) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M8 5.5v13l11-6.5z'/%3E%3C/svg%3E") center/22px no-repeat;
  transition: background-color 0.2s var(--hp-ease);
}
.hp-video-card:hover .hp-video-thumb::after { background-color: var(--hp-accent); }
.hp-video-meta { padding: 1rem 1.1rem 1.15rem; }
.hp-video-title {
  color: var(--hp-ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-video-date { color: var(--hp-ink-muted, #6b7280); font-size: 0.82rem; margin: 0; }
@media (max-width: 900px) { .hp-videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hp-videos-grid { grid-template-columns: 1fr; } }

.hp-btn-outline {
  border: 1px solid var(--hp-line-strong, #d1d5db);
  color: var(--hp-ink);
  background: #fff;
}
.hp-btn-outline:hover { border-color: var(--hp-ink); background: #f8fafc; }
.hp-eyebrow {
  color: var(--hp-accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.hp-section-title { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; }
.hp-lead { font-size: 1.06rem; color: var(--hp-muted); margin-bottom: 0; }

/* ---------- Services grid ---------- */
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.hp-service-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow-sm);
  transition: transform 0.3s var(--hp-ease), box-shadow 0.3s var(--hp-ease), border-color 0.2s var(--hp-ease);
}
.hp-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hp-shadow-md);
  border-color: rgba(54, 169, 174, 0.45);
}
.hp-service-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.hp-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--hp-ease);
}
.hp-service-card:hover .hp-service-media img { transform: scale(1.05); }
.hp-service-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.hp-service-body h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 0.5rem; }
.hp-service-body p { font-size: 0.94rem; color: var(--hp-muted); margin-bottom: 1.1rem; }
.hp-service-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--hp-accent-dark);
}
.hp-service-card:hover .hp-service-link { color: var(--hp-accent); }

/* ---------- Why Ceezaer ---------- */
.hp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.hp-why-item { text-align: left; }
.hp-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--hp-accent-soft);
  color: var(--hp-accent-dark);
  margin-bottom: 1.1rem;
}
.hp-why-icon svg { width: 26px; height: 26px; }
.hp-why-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; }
.hp-why-item p { font-size: 0.92rem; color: var(--hp-muted); margin: 0; }

/* ---------- CTA band ---------- */
.hp-cta-band {
  background: linear-gradient(120deg, var(--hp-accent-dark) 0%, var(--hp-accent) 100%);
  padding: 4rem 0;
}
.hp-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.hp-cta-inner h2 { color: #ffffff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 0.3rem; }
.hp-cta-inner p { color: rgba(255, 255, 255, 0.92); margin: 0; font-size: 1.02rem; }
.hp-cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.hp-cta-phone {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.08rem;
  white-space: nowrap;
}
.hp-cta-phone:hover { color: rgba(255, 255, 255, 0.85); }

/* ---------- Contact / inquiry form ---------- */
.hp-form-card {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--hp-line);
  border-radius: 18px;
  box-shadow: var(--hp-shadow-md);
  padding: 2.6rem;
  position: relative;
}
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.4rem;
}
.inquiry-form .full, .inquiry-form .submit-row { grid-column: 1 / -1; }
.inquiry-form label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--hp-ink);
  margin-bottom: 0.4rem;
}
.inquiry-form label .opt { color: var(--hp-muted); font-weight: 400; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--hp-font);
  font-size: 0.95rem;
  color: var(--hp-ink);
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  transition: border-color 0.2s var(--hp-ease), box-shadow 0.2s var(--hp-ease);
  accent-color: var(--hp-accent);
}
.inquiry-form select { appearance: auto; -webkit-appearance: auto; }
.inquiry-form select option { color: var(--hp-ink); background: #ffffff; }
.inquiry-form textarea { resize: vertical; min-height: 110px; }
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: #9ca3af; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--hp-accent);
  box-shadow: 0 0 0 3px rgba(54, 169, 174, 0.18);
}
.inquiry-form .submit-row { margin-top: 0.4rem; text-align: center; }

/* Submit button + spinner (required by /js/inquiry-form.js) */
.form-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--hp-accent);
  color: #ffffff;
  font-family: var(--hp-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(54, 169, 174, 0.35);
  transition: background 0.2s var(--hp-ease), transform 0.2s var(--hp-ease);
}
.form-submit-btn:hover:not(:disabled) { background: var(--hp-accent-dark); transform: translateY(-2px); }
.form-submit-btn:disabled { opacity: 0.75; cursor: wait; }
.form-submit-btn .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: hp-spin 0.7s linear infinite;
}
.form-submit-btn.loading .spinner { display: inline-block; }
.form-submit-btn.loading .btn-text { opacity: 0.7; }
@keyframes hp-spin { to { transform: rotate(360deg); } }

/* Success state (toggled by /js/inquiry-form.js) */
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.visible { display: block; }
.form-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hp-accent-soft);
  color: var(--hp-accent-dark);
}
.form-success .success-icon svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.form-success p { color: var(--hp-muted); margin-bottom: 1.4rem; }

.hp-form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 1.8rem;
  font-size: 0.86rem;
  color: var(--hp-muted);
}
.hp-form-trust span { white-space: nowrap; }

/* ---------- Footer ---------- */
.hp-footer {
  background: var(--hp-footer);
  color: #d1d5db;
  padding: 4.5rem 0 2rem;
}
.hp-footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hp-footer-brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.9rem;
}
.hp-footer-brand span { color: var(--hp-accent); }
.hp-footer-tag { font-size: 0.92rem; color: #9ca3af; max-width: 34ch; margin: 0; }
.hp-footer h4 {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hp-footer ul { list-style: none; margin: 0; padding: 0; }
.hp-footer li { margin-bottom: 0.6rem; }
.hp-footer a { color: #9ca3af; font-size: 0.92rem; transition: color 0.2s var(--hp-ease); }
.hp-footer a:hover { color: var(--hp-accent); }
.hp-footer address { font-style: normal; font-size: 0.92rem; color: #9ca3af; }
.hp-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: #6b7280;
}

/* ---------- Scroll reveal (inline JS, motion-safe) ---------- */
html.hp-motion .hp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--hp-ease), transform 0.7s var(--hp-ease);
  transition-delay: var(--hp-d, 0ms);
}
html.hp-motion .hp-reveal.hp-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.hp-motion .hp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .hp-nav { display: none; }
  .hp-header-cta { display: none; }
  .hp-burger { display: flex; }
  .hp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hp-section { padding: 4rem 0; }
  .hp-hero { min-height: 72vh; }
  .hp-hero-content { padding: 0 24px 3rem; }
  .hp-intro { padding: 3.5rem 0 3rem; }
  .hp-services-grid { grid-template-columns: 1fr; }
  .hp-why-grid { grid-template-columns: 1fr; }
  .hp-stats-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .inquiry-form { grid-template-columns: 1fr; }
  .hp-form-card { padding: 1.8rem 1.3rem; }
  .hp-cta-inner { flex-direction: column; align-items: flex-start; }
  .hp-footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .hp-footer-bottom { flex-direction: column; }
}
