:root {
  --bg: #0f0f0f;
  --bg-soft: #141414;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --accent: #d11212;
  --accent-soft: rgba(209, 18, 18, 0.22);
  --accent-glow: rgba(255, 68, 68, 0.3);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1200px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(209, 18, 18, 0.14), transparent 26%),
    radial-gradient(circle at 82% 0%, rgba(209, 18, 18, 0.1), transparent 24%),
    linear-gradient(180deg, #121212 0%, #0b0b0b 52%, #090909 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
  opacity: 0.28;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(9, 9, 9, 0.74);
  backdrop-filter: blur(22px);
}

.navbar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
  min-height: 88px;
}

.logo img {
  width: auto;
  height: 96px;
  object-fit: contain;
  object-position: left center;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 10px;
  transform-origin: left center;
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(209, 18, 18, 0.22));
}

.nav-search {
  width: min(100%, 320px);
  justify-self: center;
}

.nav-search input {
  width: 100%;
  height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.nav-search input:focus {
  border-color: rgba(209, 18, 18, 0.44);
  box-shadow: 0 0 0 4px rgba(209, 18, 18, 0.1);
  transform: translateY(-1px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  position: relative;
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), #ffffff, var(--accent));
  transition: transform 0.35s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero,
.page-hero {
  position: relative;
}

.hero-home {
  min-height: calc(100vh - 88px);
  padding: 76px 0 82px;
}

.page-hero {
  padding: 112px 0 70px;
}

.hero-bg-layer,
.hero-grid-texture,
.hero-grid-points,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-layer {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.82) 44%, rgba(8, 8, 8, 0.68) 100%),
    url("../assets/images/hero-bg.jpg") center/cover no-repeat;
  filter: brightness(0.32) contrast(1.05) saturate(0.75);
}

.hero-grid-texture {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.58;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.48));
}

.hero-grid-points {
  background-image:
    radial-gradient(circle at 64px 64px, rgba(255, 54, 54, 0.44) 0 2px, transparent 3px),
    radial-gradient(circle at 128px 128px, rgba(255, 54, 54, 0.26) 0 1.5px, transparent 2.5px);
  background-size: 128px 128px;
  mix-blend-mode: screen;
  animation: pointPulse 6s ease-in-out infinite;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 42%, rgba(209, 18, 18, 0.22), transparent 18%),
    radial-gradient(circle at 68% 40%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.76));
}

.hero-layout,
.page-hero-grid,
.section-grid,
.contact-grid,
.detail-grid,
.feature-grid,
.mini-grid,
.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.hero-layout,
.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  align-items: center;
}

.about-home-grid,
.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: start;
}

.detail-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-side {
  display: grid;
  gap: 24px;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  line-height: 1.04;
}

h1 {
  display: grid;
  gap: 4px;
  font-size: clamp(3.2rem, 5vw, 3.5rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.26rem;
  letter-spacing: -0.02em;
}

p,
li,
input,
textarea,
.btn {
  font-size: 1rem;
}

.hero-text,
.section-copy p,
.glass-card p,
.feature-card p,
.mini-card p,
.testimonial-card p,
.contact-form span,
.contact-form input,
.contact-form textarea,
.footer p {
  color: var(--muted);
  line-height: 1.72;
}

.glass-card,
.feature-card,
.mini-card,
.testimonial-card,
.cta-panel,
.hero-stage-frame {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glass-card::before,
.feature-card::before,
.mini-card::before,
.testimonial-card::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 28%, transparent 72%, rgba(209, 18, 18, 0.1));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.glass-card:hover::before,
.feature-card:hover::before,
.mini-card:hover::before,
.testimonial-card:hover::before,
.cta-panel:hover::before {
  opacity: 1;
}

.highlight-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  line-height: 1.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.glow-button {
  position: relative;
  overflow: hidden;
}

.glow-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(209, 18, 18, 0.88), rgba(255, 255, 255, 0.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.glow-button::after {
  content: "";
  position: absolute;
  left: -36%;
  top: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
}

.glow-button:hover {
  box-shadow: 0 20px 52px rgba(209, 18, 18, 0.18), 0 0 30px rgba(209, 18, 18, 0.14);
}

.glow-button:hover::after {
  animation: buttonSweep 1s ease;
}

.hero-actions {
  margin-top: 30px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-weight: 600;
}

.inline-link::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(209, 18, 18, 0.8));
}

.card-media,
.detail-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.card-media {
  aspect-ratio: 1.08 / 0.82;
  margin-bottom: 20px;
  filter: brightness(0.88) contrast(1.02);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.detail-image {
  aspect-ratio: 1 / 1;
}

.feature-card,
.mini-card,
.testimonial-card {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover,
.mini-card:hover,
.testimonial-card:hover {
  border-color: rgba(209, 18, 18, 0.28);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.56), 0 0 34px rgba(209, 18, 18, 0.08);
}

.feature-card:hover .card-media {
  transform: translateY(-2px) scale(1.02);
}

.hero-stage {
  display: flex;
  justify-content: flex-end;
}

.hero-stage-frame {
  width: min(100%, 540px);
  min-height: 560px;
  padding: 24px;
  isolation: isolate;
  backdrop-filter: blur(18px);
}

.hero-stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 50% 58%, rgba(209, 18, 18, 0.18), transparent 42%);
  pointer-events: none;
}

.hero-stage-halo {
  position: absolute;
  inset: 15% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 18, 18, 0.26), transparent 62%);
  filter: blur(34px);
}

#hero-three-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 500px;
  height: 100%;
}

.stage-chip {
  position: absolute;
  z-index: 2;
  min-width: 168px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.stage-chip span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.stage-chip strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  line-height: 1.32;
}

.chip-top {
  top: 24px;
  right: 24px;
}

.chip-bottom {
  left: 24px;
  bottom: 24px;
}

.product-grid .feature-card h3,
.mini-card h3,
.testimonial-card strong {
  position: relative;
  z-index: 1;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
}

.detail-list li {
  margin-bottom: 10px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-card {
  display: grid;
  gap: 28px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(209, 18, 18, 0.16), transparent 34%),
    #0f0f0f;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.56), 0 0 40px rgba(209, 18, 18, 0.08);
}

.contact-form-intro {
  display: grid;
  gap: 12px;
}

.contact-form-intro h2 {
  margin-bottom: 0;
}

.contact-form-intro p:last-child {
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  color: #fff;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  outline: none;
  resize: vertical;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 60, 60, 0.9);
  box-shadow: 0 0 0 4px rgba(209, 18, 18, 0.16), 0 0 24px rgba(209, 18, 18, 0.18);
  transform: translateY(-1px);
  background: #131313;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
  border-color: rgba(255, 60, 60, 0.9);
  background: transparent;
  color: #fff;
  box-shadow: 0 0 0 rgba(209, 18, 18, 0);
}

.contact-form.is-submitting .contact-submit {
  opacity: 0.88;
  cursor: wait;
}

.contact-submit:disabled {
  pointer-events: none;
}

.contact-submit:hover {
  background: rgba(209, 18, 18, 0.88);
  border-color: rgba(255, 90, 90, 1);
  box-shadow: 0 20px 48px rgba(209, 18, 18, 0.22), 0 0 28px rgba(209, 18, 18, 0.24);
}

.ags-alert-popup {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56), 0 0 30px rgba(209, 18, 18, 0.12);
}

.ags-alert-title {
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.02em;
}

.ags-alert-text {
  color: rgba(255, 255, 255, 0.76) !important;
  line-height: 1.7;
}

.ags-alert-confirm {
  min-width: 130px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 80, 80, 0.95);
  border-radius: 999px;
  background: rgba(209, 18, 18, 0.92);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.ags-alert-confirm:hover {
  transform: translateY(-1px);
  background: rgba(225, 28, 28, 1);
  box-shadow: 0 18px 40px rgba(209, 18, 18, 0.26), 0 0 24px rgba(209, 18, 18, 0.22);
}

.contact-highlight {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top left, rgba(209, 18, 18, 0.18), transparent 42%);
}

.contact-highlight h3 {
  margin-bottom: 12px;
}

.contact-highlight p {
  margin-bottom: 0;
}

.contact-detail-list {
  display: grid;
  gap: 22px;
}

.contact-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
  color: #ff5c5c;
  font-size: 1rem;
  line-height: 1;
}

.contact-line strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.contact-line p {
  margin: 0;
}

.contact-line a {
  color: #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-line a:hover {
  color: #ff6a6a;
  text-shadow: 0 0 16px rgba(209, 18, 18, 0.28);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-points div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-points strong,
.contact-points span {
  display: block;
}

.contact-points strong {
  margin-bottom: 6px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.contact-points span {
  color: rgba(255, 255, 255, 0.64);
}

.thankyou-page {
  background:
    radial-gradient(circle at 50% 20%, rgba(209, 18, 18, 0.18), transparent 24%),
    linear-gradient(180deg, #111111 0%, #090909 100%);
}

.thankyou-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.thankyou-card {
  width: min(100%, 760px);
  padding: 42px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top center, rgba(209, 18, 18, 0.16), transparent 42%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 40px rgba(209, 18, 18, 0.08);
}

.thankyou-card h1 {
  margin-bottom: 18px;
}

.thankyou-card p:last-of-type {
  margin: 0 auto;
  max-width: 560px;
}

.thankyou-button {
  margin-top: 28px;
  border-color: rgba(255, 60, 60, 0.9);
  background: transparent;
}

.map-frame {
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    url("../assets/images/grid-pattern.png");
  background-size: auto, 220px 220px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.44);
}

.stars {
  margin-bottom: 14px;
  color: #ff4b4b;
  letter-spacing: 0.2em;
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.54);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer {
  padding: 28px 0 42px;
}

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

.footer-brand {
  max-width: 320px;
}

.footer-contact {
  display: grid;
  gap: 18px;
  max-width: 360px;
}

.footer-contact .contact-line {
  gap: 12px;
}

.footer-contact p,
.footer-contact a {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes pointPulse {
  0%,
  100% {
    opacity: 0.64;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.01);
  }
}

@keyframes buttonSweep {
  from {
    transform: translateX(0) skewX(-18deg);
  }
  to {
    transform: translateX(430%) skewX(-18deg);
  }
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-search {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-layout,
  .page-hero-grid,
  .about-home-grid,
  .two-col,
  .contact-grid,
  .detail-grid,
  .feature-grid,
  .mini-grid,
  .testimonial-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    justify-content: stretch;
  }

  .hero-stage-frame {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .navbar {
    gap: 16px;
    padding: 12px 0;
  }

  .logo img {
    height: 40px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .nav-search {
    order: 2;
    grid-column: 1 / -1;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(12, 12, 12, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-home {
    min-height: auto;
    padding: 42px 0 58px;
  }

  .page-hero {
    padding: 94px 0 58px;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3rem);
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-stage-frame {
    min-height: 390px;
    padding: 16px;
  }

  #hero-three-canvas {
    min-height: 320px;
  }

  .stage-chip {
    min-width: 136px;
    padding: 14px 16px;
  }

  .chip-top {
    top: 14px;
    right: 14px;
  }

  .chip-bottom {
    left: 14px;
    bottom: 14px;
  }

  .glass-card,
  .feature-card,
  .mini-card,
  .testimonial-card,
  .cta-panel {
    padding: 24px;
  }

  .contact-form-card,
  .thankyou-card {
    padding: 26px;
  }

  .footer-row {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
