:root {
  --bg: #f4f6fb;
  --bg-dark: #0b1120;
  --primary: #ff983b;
  --accent: #ffcf99;
  --text: #121826;
  --muted: #4b5567;
  --card: #ffffff;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Prompt', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(18, 24, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

button.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
}

.hero {
  background: linear-gradient(135deg, #0b1120 0%, #1b2641 60%, rgba(11, 17, 32, 0.92) 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.5rem, 7vw, 7rem) 4rem;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0;
  font-weight: 700;
}

.hero p {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  margin: 1.2rem auto 0;
  color: rgba(255, 255, 255, 0.85);
}

.hero .contact-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin: 1.6rem auto 2.2rem;
  max-width: 560px;
}

.badge {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.65rem 1.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  background: var(--primary);
  color: #0b0f19;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

main {
  flex: 1;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.section {
  max-width: 1200px;
  margin: 0 auto 3rem;
  background: var(--card);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.section h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.section p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.info-card {
  border: 1px solid #eef0f8;
  border-radius: 20px;
  padding: 1.3rem;
  background: linear-gradient(145deg, #fff, #f8faff);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-card span {
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 0.8px;
}

.info-card strong {
  font-size: 1.1rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.price-card {
  border-radius: 22px;
  border: 1px solid #ffe3c4;
  background: #fff7ef;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-card strong {
  font-size: 2.2rem;
  line-height: 1;
}

.price-card small {
  color: var(--muted);
}

.price-card ul {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.promo {
  background: linear-gradient(120deg, #ffe8d4, #ffd2a6);
  color: #35240f;
  text-align: center;
}

.promo p {
  color: #4b2310;
  font-size: 1.05rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  background: #fff7ef;
  border-left: 4px solid var(--primary);
  border-radius: 0 20px 20px 0;
  padding: 1rem 1rem 1rem 1.8rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #0b0f19;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(255, 152, 59, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figure:hover figcaption {
  opacity: 1;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat-card {
  border-radius: 18px;
  padding: 1.25rem;
  background: #fff7ef;
  border: 1px solid rgba(255, 152, 59, 0.2);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.list-check li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted);
}

.list-check li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.badge-list span {
  background: #eef0f8;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.split-media iframe,
.split-media img {
  width: 100%;
  border: none;
  border-radius: 20px;
  min-height: 280px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 152, 59, 0.12);
  color: var(--text);
  font-size: 0.9rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.quote-card {
  border-radius: 20px;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid #e9edf5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.media-card {
  border-radius: 18px;
  background: #000;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.media-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.contact-card {
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid #e8ebf4;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-button {
  border-radius: 14px;

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(150deg, #ffffff, #f6f7fb);
  box-shadow: 0 20px 45px rgba(13, 19, 35, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 152, 59, 0.12), transparent 60%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(11, 17, 32, 0.18);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card__body {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-card__body span {
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.product-card__body strong {
  font-size: 1.25rem;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.4rem 0;
  padding: 0;
  list-style: none;
}

.product-card__meta li {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 17, 32, 0.06);
  font-size: 0.85rem;
  color: var(--muted);
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.btn-compact {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 17, 32, 0.12);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
  padding: 0.55rem 1rem;
  border: 1px solid #e1e4ef;
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.map-embed {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e1e4ef;
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-banner {
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(120deg, #ffe8d4, #ffd2a6);
}

.section.cta {
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  button.nav-toggle {
    display: block;
  }
}
