/* ============================================
   VAC PACK PRO — Premium Dark Theme
   ============================================ */

:root {
  --bg-dark: #0a0a0b;
  --bg-card: #111113;
  --bg-elevated: #161619;
  --text-primary: #f5f5f5;
  --text-muted: #8a8a8e;
  --text-subtle: #5c5c61;
  --gold: #c9a227;
  --gold-light: #e6c85c;
  --gold-dark: #9a7b1a;
  --accent: #c9a227;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --radius-lg: 24px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-brand {
  font-size: 0.7em;
  color: var(--text-muted) !important;
  letter-spacing: 0.2em;
  margin-left: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn-cta-nav {
  color: var(--gold) !important;
  padding: 0.5rem 1.25rem !important;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}

.btn-cta-nav:hover {
  background: var(--gold);
  color: var(--bg-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 162, 39, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse 100% 100% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, var(--bg-dark) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 0.1em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.title-main {
  color: var(--text-primary);
  display: block;
}

.title-pro {
  color: var(--gold);
  display: block;
  font-size: 0.6em;
  letter-spacing: 0.3em;
}

.title-brand {
  display: block;
  font-family: var(--font-body);
  font-size: 0.2em;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-subtle);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero-image {
  margin: 3rem 0;
  position: relative;
}

.hero-product {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-subtle);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-subtle), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.5); }
}

/* Brand Strip */
.brand-strip {
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.strip-content .divider {
  color: var(--gold);
  font-size: 0.5rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 4rem;
}

.section-title span {
  color: var(--gold);
}

.section-title.light {
  color: var(--text-primary);
}

/* Video Section */
.video-section {
  padding: 6rem 2rem;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Features */
.features {
  padding: 8rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.2);
}

.feature-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.feature-image--portrait {
  aspect-ratio: 3/4;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  padding: 2rem 2rem 0.5rem;
  color: var(--gold);
}

.feature-card p {
  padding: 0 2rem 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0 2rem 2rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* How It Works */
.how-it-works {
  padding: 8rem 0;
  background: var(--bg-card);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.how-step {
  position: relative;
  padding-left: 4rem;
}

.how-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}

.how-step:last-child::before {
  display: none;
}

.step-num {
  position: absolute;
  left: -0.5rem;
  top: -0.25rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.how-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Gallery */
.gallery {
  padding: 8rem 2rem;
}

.gallery .section-title {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
}

.gallery-item.g-large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.g-wide {
  grid-column: span 2;
  aspect-ratio: 21/9;
}

.gallery-item.g-full {
  aspect-ratio: auto;
  min-height: 400px;
}

.gallery-item.g-full img {
  object-fit: contain;
  background: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* CTA Section */
.cta-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark) 20%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.pricing-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.pricing-options .btn-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
}

.pricing-options .price {
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-options .label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.btn-direct {
  background: transparent;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
}

.btn-direct:hover {
  background: var(--text-primary);
  color: var(--bg-dark);
  box-shadow: none;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-link svg {
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-subtle);
  font-size: 0.85rem;
}

/* Reviews Section */
.reviews-section {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.review-form-wrapper {
  max-width: 700px;
  margin: 0 auto 5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.label-optional {
  color: var(--text-subtle);
  font-weight: 400;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin-top: 0.35rem;
}

.char-count.over-limit {
  color: #e74c3c;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 0.35rem;
}

.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
}

.star-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--bg-elevated);
  stroke: var(--text-subtle);
  stroke-width: 1.5;
  transition: fill 0.25s ease, stroke 0.25s ease, transform 0.2s ease;
}

.star-btn:hover {
  transform: scale(1.15);
}

.star-btn.active svg,
.star-btn.hover svg {
  fill: var(--gold);
  stroke: var(--gold);
}

.star-btn.active svg {
  animation: starPop 0.3s ease;
}

@keyframes starPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* File Upload */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.04);
}

.upload-placeholder svg {
  color: var(--text-subtle);
  margin-bottom: 0.75rem;
}

.upload-placeholder p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.upload-placeholder span {
  color: var(--text-subtle);
  font-size: 0.8rem;
}

.file-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.file-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.file-preview-item img,
.file-preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-item .video-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 1.5rem;
}

.file-preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.file-preview-remove:hover {
  background: #e74c3c;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 1.05rem;
  cursor: pointer;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-message {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.5em;
}

.form-message.success {
  color: #2ecc71;
}

.form-message.error {
  color: #e74c3c;
}

/* Reviews List */
.reviews-loading,
.reviews-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.reviews-loading svg {
  margin-bottom: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* Review Card */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  animation: fadeInUp 0.5s ease both;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.15);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.review-meta h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-stars svg.filled {
  fill: var(--gold);
  stroke: var(--gold);
}

.review-stars svg.empty {
  fill: none;
  stroke: var(--text-subtle);
}

.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  word-break: break-word;
}

.review-media {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-media-item {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
  position: relative;
}

.review-media-item:hover {
  border-color: var(--gold);
}

.review-media-item img,
.review-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media Lightbox */
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.media-lightbox img,
.media-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* Responsive Reviews */
@media (max-width: 768px) {
  .review-form-wrapper {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .star-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="zoom"] {
  transform: scale(0.95);
}

[data-aos="zoom"].aos-animate {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 2rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .strip-content {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.g-large {
    grid-row: span 1;
    aspect-ratio: 16/10;
  }

  .gallery-item.g-wide {
    grid-column: span 1;
    aspect-ratio: auto;
  }

  .gallery-item.g-full {
    min-height: 300px;
  }

  .pricing-options {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }
}
