:root {
  --brand-yellow: #ffd700;
  --brand-black: #050505;
  --sand: #f5efe6;
  --soft-gray: #f6f7f9;
  --gold: #c9a961;
  --navy: #071827;
  --radius: 8px;
}

[x-cloak] { display: none !important; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.nav-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
}
.site-nav {
  position: static;
  width: min(1180px, calc(100% - 24px));
  margin: 16px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,.12);
}
.brand { font-weight: 900; }
.brand span {
  display: inline-flex;
  background: var(--brand-black);
  color: var(--brand-yellow);
  padding: 5px 8px;
  border-radius: 6px;
  margin-right: 8px;
}
.brand-logo {
  width: auto;
  max-width: 280px;
  height: 80px;
  object-fit: contain;
  margin-right: 8px;
}
.site-nav nav { display: flex; gap: 4px; }
.site-nav nav a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: background .15s, color .15s;
}
.site-nav nav a:hover { background: rgba(0,0,0,.08); }
.site-nav nav a.is-active { background: rgba(0,0,0,.08); color: var(--brand-yellow); }

/* Hamburger button — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-burger:hover { background: rgba(0,0,0,.07); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--brand-black);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile dropdown menu */
.nav-mobile-menu {
  position: absolute;
  top: 100%;
  left: 12px;
  right: 12px;
  z-index: 50;
  margin-top: 6px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.nav-mobile-menu a {
  display: block;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-black);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: background .15s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { background: rgba(0,0,0,.05); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 60px 20px 72px;
  color: white;
  background: var(--brand-black);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.42), rgba(0,0,0,.72)),
    linear-gradient(0deg, rgba(0,0,0,.78), transparent 48%, rgba(0,0,0,.12));
  /* Subtle accent tint using CSS variable */
  mix-blend-mode: normal;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent, transparent);
  opacity: .06;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
}
.eyebrow, .eyebrow-dark {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow { color: var(--brand-yellow); }
.eyebrow-dark { color: var(--brand-black); opacity: .7; }
.hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: 0;
}
.hero .sub {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 950;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .18s ease, opacity .18s;
  cursor: pointer;
  border: 0;
}
.btn:hover { transform: translateY(-3px); }
.btn svg { flex-shrink: 0; width: 18px; height: 18px; }
.btn-primary {
  background: var(--brand-yellow);
  color: var(--brand-black);
  box-shadow: 0 16px 48px rgba(255,215,0,.34), 0 2px 10px rgba(255,215,0,.18);
}
.btn-primary:hover {
  box-shadow: 0 24px 70px rgba(255,215,0,.48), 0 4px 16px rgba(255,215,0,.26);
}
.btn-wa {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 16px 48px rgba(34,197,94,.32), 0 2px 10px rgba(34,197,94,.16);
}
.btn-wa:hover {
  background: #16a34a;
  box-shadow: 0 24px 70px rgba(34,197,94,.44), 0 4px 16px rgba(34,197,94,.24);
}
.btn-ghost {
  color: white;
  border: 1.5px solid rgba(255,255,255,.44);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.7); }
.btn-dark {
  background: var(--brand-black);
  color: var(--brand-yellow);
  width: 100%;
}

/* Trust strip between sub + CTA */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 4px;
  max-width: 760px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero-trust-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent, var(--brand-yellow));
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.75); }
}

/* Badge pills */
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 860px;
  margin-top: 28px;
}
.badge-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  transition: background .18s;
}
.badge-grid span:hover { background: rgba(255,255,255,.18); }
.badge-grid span::before {
  content: '';
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent, var(--brand-yellow));
}
.countdown-card {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 3;
  padding: 18px;
  min-width: 220px;
  border-radius: var(--radius);
  background: rgba(255,215,0,.94);
  color: var(--brand-black);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.countdown-card div { font-size: 30px; font-weight: 950; }

.section {
  padding: clamp(64px, 9vw, 118px) max(20px, calc((100vw - 1180px) / 2));
  border-top: 6px solid var(--brand-black);
}
main > .section:first-child { border-top: none; }
.section-light {
  background: var(--brand-yellow);
}
.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.section h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
  color: var(--brand-black);
}
.section p {
  color: rgba(0,0,0,.72);
  line-height: 1.7;
  margin: 0 0 16px;
}
.feature-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.glass-card, .price-card {
  min-height: 220px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--brand-black);
  color: white;
  border: 2px solid rgba(255,215,0,.18);
  box-shadow: 0 4px 20px rgba(0,0,0,.22), 0 1px 3px rgba(0,0,0,.14);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  position: relative;
  overflow: hidden;
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-yellow);
  box-shadow: 0 12px 40px rgba(255,215,0,.22), 0 4px 16px rgba(0,0,0,.18);
}
.glass-card h3, .price-card h3 { margin: 14px 0 8px; font-size: 20px; font-weight: 950; line-height: 1.15; color: white; }
.glass-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; margin: 0; }
.glass-card > *:not(.card-backdrop) { position: relative; z-index: 1; }
.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand-yellow);
  color: var(--brand-black);
  border: none;
  box-shadow: 0 4px 16px rgba(255,215,0,.38);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dark-panel {
  background: var(--brand-black);
  color: white;
}
.dark-panel h2 { color: white; }
.dark-panel .eyebrow { color: var(--brand-yellow); opacity: 1; }
.dark-panel .eyebrow-dark { color: var(--brand-yellow); opacity: 1; }
.dark-panel p { color: rgba(255,255,255,.72); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.calculator {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}
.calculator label { display: grid; gap: 8px; margin-bottom: 18px; font-weight: 900; }
.calculator input { accent-color: var(--brand-yellow); width: 100%; }
.calc-label-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.calc-label-row span { color: rgba(255,255,255,.7); font-weight: 600; }
.calc-label-row strong { color: var(--brand-yellow); font-size: 15px; font-weight: 900; letter-spacing: -.3px; }
.roi-result {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--brand-yellow);
  color: var(--brand-black);
}
.roi-result span { font-size: 34px; font-weight: 950; }
.urgency-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--brand-black);
  color: white;
  border-block: none;
}
.urgency-band h2 { color: white; }
.urgency-band p { color: rgba(255,255,255,.72); }
.urgency-band .eyebrow-dark { color: var(--brand-yellow); opacity: 1; }
.stock-card {
  min-width: 230px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--brand-yellow);
  color: var(--brand-black);
  text-align: center;
  border: 3px solid var(--brand-black);
}
.stock-card strong { display: block; font-size: 64px; line-height: 1; font-weight: 950; }
.stock-card span { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.price-card {
  background: var(--brand-black);
  color: white;
}
.price-card strong { display: block; margin: 14px 0; font-size: 38px; font-weight: 950; color: var(--brand-yellow); }
.price-card h3 { color: white; }
.price-card p { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 18px; }
/* gallery-section — full-bleed yellow bg */
.gallery-section {
  background: var(--brand-yellow);
  color: var(--brand-black);
  padding: 0 !important; /* full-bleed override */
  border-top: 6px solid var(--brand-black) !important;
}

.gallery-hidden-item { display: none; }

/* caption overlay inside featured image */
.gallery-caption-overlay {
  position: absolute;
  inset: 0;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
  z-index: 2;
}
.gallery-caption-overlay > * { pointer-events: auto; }
.gallery-caption-overlay .eyebrow {
  color: var(--brand-yellow);
  opacity: 1;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}
.gallery-caption-overlay h2 {
  color: #fff !important;
  font-size: clamp(22px, 3vw, 38px) !important;
  margin: 0 !important;
  line-height: 1.1 !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

.gallery-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--brand-yellow);
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  align-self: flex-start;
  transition: background .18s, color .18s, border-color .18s;
  cursor: pointer;
  text-decoration: none;
}
.gallery-all-btn:hover { background: transparent; color: var(--brand-yellow); }
.gallery-all-btn svg { width: 16px; height: 16px; }

/* Magazine layout */
.gallery-magazine {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 4px;
  background: var(--brand-black);
  min-height: 480px;
}
/* featured wrap — holds the image + caption overlay */
.gallery-featured-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
  display: block;
  height: 100%;
  min-height: 480px;
}
.gallery-featured {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-featured-wrap:hover .gallery-featured img { transform: scale(1.04); }
.gallery-featured-wrap:hover > .gallery-overlay { opacity: 1; }

.gallery-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.gallery-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1;
  border-radius: 6px;
  outline: 3px solid var(--brand-black);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gallery-thumb:hover img { transform: scale(1.06); }

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .22s;
}
.gallery-overlay svg { width: 32px; height: 32px; }
.gallery-featured-wrap:hover > .gallery-overlay,
.gallery-thumb:hover .gallery-overlay { opacity: 1; }

/* "+N more" overlay on last thumb */
.gallery-thumb-more { cursor: pointer; }
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background .22s;
}
.gallery-thumb-more:hover .gallery-more-overlay { background: rgba(0,0,0,.72); }
.gallery-more-overlay span {
  font-size: 38px;
  font-weight: 950;
  color: var(--brand-yellow);
  line-height: 1;
}
.gallery-more-overlay small {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Remove old classes */
.masonry { display: none; }
.gallery-swiper,
.gallery-thumbs,
.gallery-slide-caption,
.gallery-cta { display: none; }
.progress-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--brand-yellow);
}
.progress-section h2 { color: var(--brand-black); }
.progress-section p  { color: rgba(0,0,0,.68); }
.progress-ring {
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--brand-black) 0 var(--pct, 90%), rgba(0,0,0,.16) var(--pct, 90%) 100%);
  box-shadow: 0 0 0 6px rgba(0,0,0,.08);
}
.progress-ring span {
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-yellow);
  font-size: 42px;
  font-weight: 950;
  color: var(--brand-black);
}
.map-box {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-black);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.1);
}
.map-box iframe {
  width: 100%;
  height: 420px;
  display: block;
}
.faq-section {
  background: var(--brand-black);
  color: white;
}
.faq-section h2 { color: white; }
.faq-section .eyebrow { color: var(--brand-yellow); opacity: 1; }
.faq-section .eyebrow-dark { color: var(--brand-yellow); opacity: 1; }
.faq-section p { color: rgba(255,255,255,.72); }
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  cursor: pointer;
}
.faq-item h3 { margin: 0; font-size: 22px; font-weight: 950; color: white; }
.faq-item p { color: rgba(255,255,255,.68); }
.lead-section {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 34px;
  align-items: start;
  background: var(--brand-yellow);
}
.lead-section h2 { color: var(--brand-black); }
.lead-section p  { color: rgba(0,0,0,.7); }
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  background: transparent;
  border: 3px solid var(--brand-black);
  box-shadow: none;
}
.lead-form h3 {
  grid-column: 1/-1;
  margin: 0 0 16px;
  width: fit-content;
  background: var(--brand-black);
  color: var(--brand-yellow);
  font-size: 16px;
  font-weight: 950;
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: .02em;
}
.lead-form input, .lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 2px solid var(--brand-black);
  border-radius: var(--radius);
  background: rgba(255,255,255,.6);
  color: var(--brand-black);
  font: inherit;
}
.lead-form input::placeholder { color: rgba(0,0,0,.45); }
.lead-form select option { color: var(--brand-black); }
.lead-form input:focus, .lead-form select:focus { outline: none; border-color: var(--brand-black); background: rgba(255,255,255,.9); }
.lead-form button, .lead-form .form-message { grid-column: 1 / -1; }
.lead-form button {
  min-height: 54px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand-yellow);
  color: var(--brand-black);
  font: inherit;
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
  transition: opacity .18s;
}
.lead-form button:hover { opacity: .88; }
.form-message { margin: 0; font-weight: 900; color: rgba(0,0,0,.7); }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #22c55e;
  color: white;
  box-shadow: 0 18px 50px rgba(34,197,94,.36);
  animation: whatsappPulse 1.8s ease-in-out infinite;
}
.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes whatsappPulse {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 18px 50px rgba(34,197,94,.36); }
  50% { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 70px rgba(34,197,94,.48); }
}
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 44;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(15,15,15,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.mobile-cta a {
  flex: 1;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity .15s;
}
.mobile-cta a:active { opacity: .8; }
.mobile-cta a svg { flex-shrink: 0; }
.mobile-cta__wa {
  background: #22c55e;
  color: #fff;
}
.mobile-cta__form {
  background: var(--brand-yellow);
  color: var(--brand-black);
}
.footer {
  padding: 56px 24px 48px;
  background: var(--brand-black);
  color: white;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 48px;
  font-size: 14px;
  font-weight: 800;
}
.footer-left {
  display: flex;
  align-items: center;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid rgba(255,255,255,.12);
  padding-left: 48px;
}
.footer-right p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.footer-right small { color: rgba(255,255,255,.42); }
.footer-logo {
  width: auto;
  max-width: 300px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-kicker {
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 950;
}
.footer-info strong {
  color: white;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 950;
}
.footer-info p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.footer-info small,
.footer-info span {
  color: rgba(255,255,255,.62);
}
.footer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: transparent;
  border: 3px solid var(--brand-black);
  box-shadow: none;
}
.footer-form h3 {
  grid-column: 1 / -1;
  margin: 0 0 16px;
  width: fit-content;
  background: var(--brand-black);
  color: var(--brand-yellow);
  font-size: 16px;
  font-weight: 950;
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: .02em;
}
.footer-form input,
.footer-form select,
.footer-form textarea {
  min-height: 50px;
  width: 100%;
  border: 2px solid var(--brand-black);
  border-radius: 8px;
  background: rgba(255,255,255,.6);
  color: var(--brand-black);
  padding: 0 14px;
  font: inherit;
}
.footer-form textarea {
  grid-column: 1 / -1;
  min-height: 84px;
  padding-top: 14px;
  resize: vertical;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(0,0,0,.45);
}
.footer-form select option {
  color: var(--brand-black);
}
.footer-form button {
  grid-column: 1 / -1;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-black);
  color: var(--brand-yellow);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: opacity .2s;
}
.footer-form button:hover { opacity: .88; }
.footer-form .form-message {
  grid-column: 1 / -1;
  color: rgba(0,0,0,.74);
}

/* ── Exit Intent Popup ── */
.exit-popup[hidden] { display: none !important; }
.exit-popup {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  animation: reveal .22s ease both;
  margin: 0 !important;
}
.exit-popup-card {
  position: relative;
  width: min(920px, 100%);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 120px rgba(0,0,0,.48);
  animation: popupScale .22s ease both;
}
.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: white;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .18s;
}
.exit-popup-close:hover { background: rgba(255,255,255,.28); }

/* Left — yellow info panel */
.exit-popup-left {
  background: var(--brand-yellow);
  color: var(--brand-black);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.exit-popup-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
  font-weight: 950;
  font-size: 18px;
  letter-spacing: 0;
  flex-shrink: 0;
}
.exit-popup-left h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  font-weight: 950;
}
.exit-popup-left p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  opacity: .78;
}
.exit-popup-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.exit-popup-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
}
.exit-popup-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-black);
  color: var(--brand-yellow);
  font-size: 12px;
}

/* Right — dark form panel */
.exit-popup-right {
  background: var(--brand-black);
  color: white;
  padding: 44px 36px;
}
.exit-popup-right h4 {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 950;
  color: white;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: white;
  font: inherit;
  font-size: 14px;
  transition: border-color .18s;
}
.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  outline: none;
  border-color: var(--brand-yellow);
}
.popup-form input::placeholder,
.popup-form textarea::placeholder { color: rgba(255,255,255,.44); }
.popup-form select option { color: var(--brand-black); }
.popup-form textarea { min-height: 72px; padding-top: 12px; resize: vertical; }
.popup-form button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-yellow);
  color: var(--brand-black);
  font: inherit;
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
  transition: opacity .18s;
}
.popup-form button:hover { opacity: .9; }
.popup-form .form-message { margin: 0; font-size: 13px; color: rgba(255,255,255,.68); min-height: 18px; }

@keyframes popupScale {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 680px) {
  .exit-popup-card { grid-template-columns: 1fr; }
  .exit-popup-left { padding: 32px 24px 24px; }
  .exit-popup-right { padding: 24px 24px 32px; }
  .exit-popup-features { display: none; }
  .popup-form-row { grid-template-columns: 1fr; }
}

.reveal {
  animation: reveal .8s ease both;
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  /* ── Navbar ── */
  .nav-desktop { display: none !important; }
  .nav-burger { display: flex !important; }
  .site-nav { padding: 10px 14px; }
  .brand-logo { height: 52px; max-width: 180px; }

  /* ── Hero ── */
  .hero { align-items: end; padding: 150px 20px 110px; }
  .hero h1 { font-size: clamp(34px, 9vw, 64px); }
  .hero .sub { font-size: 16px; margin-top: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; min-height: 52px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 8px; max-width: 100%; }
  .hero-trust-item { padding: 12px 14px; font-size: 12px; gap: 8px; }
  .countdown-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 18px; }

  /* ── Sections ── */
  .badge-grid,
  .feature-grid,
  .pricing-grid,
  .split,
  .lead-section,
  .progress-section { grid-template-columns: 1fr !important; }
  .badge-grid span { padding: 11px; }
  .section { padding: 56px 20px; }

  /* ── About split ── */
  .about-split { grid-template-columns: 1fr !important; min-height: auto !important; direction: ltr !important; }
  .about-split--reverse { direction: ltr !important; }
  .about-split--reverse > * { direction: ltr; }
  .about-split__img { min-height: 240px; }
  .about-split__text { padding: 28px 20px; justify-content: flex-start; }
  .about-split__eyebrow { font-size: 10px; margin-bottom: 10px; }
  .section { padding: 48px 20px; }
  .urgency-band { display: grid; }
  .progress-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .progress-section > div:first-child { text-align: left; }
  .progress-ring {
    width: 160px;
    margin: 0 auto;
  }
  .progress-ring span {
    width: 112px;
    font-size: 30px;
  }

  /* ── Lead form ── */
  .lead-form { grid-template-columns: 1fr !important; }

  /* ── Footer ── */
  .floating-whatsapp { display: none; }
  .mobile-cta { display: flex; }
  .footer { padding: 40px 20px 100px; }
  .footer-inner { grid-template-columns: 1fr; gap: 0; }
  .footer-left { justify-content: center; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .footer-logo { height: 60px; max-width: 180px; }
  .footer-right { border-left: none; padding-left: 0; }
  .footer-right p { font-size: 13px; line-height: 1.6; }
  .footer-meta { flex-direction: column; gap: 6px; margin-top: 12px; }
  .footer-meta span { font-size: 13px; }
  .footer-right small { display: block; margin-top: 16px; font-size: 11px; }
  .footer-form { grid-template-columns: 1fr !important; display: grid; justify-items: stretch; gap: 10px; }

  /* ── Gallery ── */
  .gallery-magazine { grid-template-columns: 1fr; min-height: auto; }
  .gallery-featured-wrap { min-height: 260px; }
  .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery-thumb { aspect-ratio: 1; }
  .gallery-caption-overlay h2 { font-size: 20px !important; }
  .gallery-caption-overlay { padding: 32px 18px 16px; }

  /* ── Stats ── */
  .stats-section { padding: 40px 20px 48px; }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: transparent;
    border: 2.5px solid var(--brand-black);
    border-radius: 14px;
    overflow: hidden;
  }
  .stat-card {
    padding: 32px 14px;
    border: none;
    border-radius: 0;
    border-right: 2.5px solid var(--brand-black);
    border-bottom: 2.5px solid var(--brand-black);
  }
  .stat-card:nth-child(even) { border-right: none; }
  .stat-card:nth-last-child(-n+2) { border-bottom: none; }
  .stat-card:last-child { border-right: none; }

  /* ── Amenities ── */
  .amenities-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px; }
  .amenity-item { padding: 20px 12px 16px; gap: 10px; }
  .amenity-item__icon { width: 42px; height: 42px; border-radius: 10px; }
  .amenity-item__label { font-size: 12px; }

  /* ── Exit popup ── */
  .exit-popup-card { grid-template-columns: 1fr; }
  .exit-popup-left { padding: 32px 24px 24px; }
  .exit-popup-right { padding: 24px 24px 32px; }
  .exit-popup-features { display: none; }
  .popup-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .amenity-item { padding: 16px 10px 14px; }
  .amenity-item__icon { width: 36px; height: 36px; }
  .amenity-item__label { font-size: 11px; }
}

/* ─────────────────────────────────────────
   About Section — alternating split rows
───────────────────────────────────────── */
.about-section {
  background: var(--brand-black);
}
.about-eyebrow-bar {
  display: none;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.about-split--reverse {
  direction: rtl;
}
.about-split--reverse > * {
  direction: ltr;
}
.about-split__img {
  overflow: hidden;
}
.about-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.about-split__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 14px;
  opacity: .8;
}
.about-split__text h3 {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.25;
}
.about-split__text h3::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--brand-yellow);
  margin-bottom: 20px;
  border-radius: 2px;
}
.about-split__text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* ─────────────────────────────────────────
   Stats Section — Teknik Özellikler
───────────────────────────────────────── */
.stats-section {
  background: var(--brand-yellow);
  padding: 80px 20px 80px;
}
.stats-section__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.stats-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.stats-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 12px;
}
.stats-section__title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--brand-black);
  margin: 0;
  line-height: 1.2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: transparent;
  border: 2.5px solid var(--brand-black);
  border-radius: 14px;
  overflow: hidden;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 24px;
  background: transparent;
  gap: 10px;
  border-right: 2.5px solid var(--brand-black);
  transition: background .2s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover {
  background: rgba(0,0,0,.06);
}
.stat-card strong {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1;
}
.stat-card span {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(0,0,0,.55);
}

/* ─────────────────────────────────────────
   Amenities Section
───────────────────────────────────────── */
.amenities-section {
  background: var(--brand-yellow);
  padding: 72px 20px;
}
.amenities-section h2 {
  text-align: center;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--brand-black);
  margin: 0 0 40px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--brand-black);
  color: #fff;
  padding: 28px 16px 22px;
  border-radius: 14px;
  text-align: center;
  border: 2px solid rgba(255,255,255,.06);
  transition: transform .18s, box-shadow .18s;
  position: relative;
  overflow: hidden;
}
.amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.amenity-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,215,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-yellow);
  flex-shrink: 0;
}
.amenity-item__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255,255,255,.9);
}
.amenity-item > *:not(.card-backdrop) { position: relative; z-index: 1; }

/* ─── Card backdrop (Unsplash images behind feature & amenity cards) ─── */
.card-backdrop {
  position: absolute;
  inset: 0;
  /* fallback warm amber tint if image fails; background-image comes from inline style */
  background-color: rgba(50, 35, 5, 0.55);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  transition: opacity .4s ease;
  border-radius: inherit;
}
/* dark gradient overlay on top of the image for text readability */
.card-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.72) 100%);
  border-radius: inherit;
}
/* Feature cards: subtle always-on + full on hover */
.glass-card .card-backdrop {
  opacity: 0.35;
}
.glass-card:hover .card-backdrop {
  opacity: 1;
}
/* Amenity cards: always fully visible */
.amenity-item .card-backdrop {
  opacity: 1;
}
.amenity-item:hover .card-backdrop::after {
  background: linear-gradient(165deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.58) 100%);
}
