:root {
  --primary: #0f4c81;
  --primary-dark: #0a3258;
  --accent: #f4a61d;
  --text: #183547;
  --muted: #5f7485;
  --bg: #f7f9fc;
  --white: #ffffff;
  --border: #e7ecf2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1360px, calc(100% - 2rem));
  margin: 0 auto;
}
.section { padding: 5rem 0; }

@media (min-width: 1440px) {
  .container {
    width: min(1440px, calc(100% - 4rem));
  }
  .section {
    padding: 6rem 0;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0a1e2f;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(10, 50, 88, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
  position: relative;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  position: relative;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 76, 129, 0.08);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 999px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: #ffffff;
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
..social-link.facebook {
  background: #1877f2;
}
.social-link.tiktok {
  background: #000000;
}
.social-link.google {
  background: linear-gradient(135deg, #34a853 0%, #4285f4 100%);
}
.social-link.facebook i,
.social-link.tiktok i,
.social-link.google i {
  color: #ffffff;
}
.header-socials {
  display: flex;
  align-items: center;
}
.footer-socials {
  margin-top: 1rem;
}
.header-cta {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .nav-wrap {
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    gap: 1rem;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .nav-actions {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
    margin-left: 0;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    width: 100vw;
    margin: 0;
    padding: 1rem 1rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0 0 18px 18px;
    background: #0a1e2f;
    box-shadow: 0 14px 32px rgba(10, 50, 88, 0.24);
    z-index: 30;
  }
  .nav-panel.is-open {
    display: flex;
  }
  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }
  .site-nav a {
    display: block;
    padding: 0.9rem 0.9rem;
    width: 100%;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
  }
  .site-nav a:hover,
  .site-nav a.active {
    color: #ffffff;
    background: rgba(255,255,255,0.16);
  }
  .social-links {
    justify-content: flex-start;
    margin-top: 0.65rem;
  }
  .header-cta {
    margin-top: 0.8rem;
    width: 100%;
    text-align: center;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #202020;
  box-shadow: 0 10px 24px rgba(244,166,29,0.22);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 30s linear infinite both;
  z-index: 0;
  will-change: opacity;
}
.hero-slide-1 { background-image: url('corolla-2006.jpeg'); animation-delay: 0s; }
.hero-slide-2 { background-image: url('prado-2006.jpeg'); animation-delay: 5s; }
.hero-slide-3 { background-image: url('prado-2005.jpeg'); animation-delay: 10s; }
.hero-slide-4 { background-image: url('grand-cabin-2014.jpeg'); animation-delay: 15s; }
.hero-slide-5 { background-image: url('premio-2010.jpeg'); animation-delay: 20s; }
.hero-slide-6 { background-image: url('Premio-2008-model.jpeg'); animation-delay: 25s; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.25), rgba(0,0,0,0.1)); z-index: 1; }
@keyframes heroFade {
  0%, 20%, 100% { opacity: 0; }
  5%, 15% { opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.7rem); line-height: 1.15; margin: 0 0 1rem; }
.hero p { font-size: 1.03rem; color: rgba(255,255,255,0.92); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0 1rem; }
.hero-highlights { display: flex; gap: 1rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 1rem 0 0; }
.hero-highlights li { background: rgba(255,255,255,0.12); padding: 0.55rem 0.8rem; border-radius: 999px; font-size: 0.95rem; }
.hero-card {
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.hero-card img { height: 260px; width: 100%; object-fit: cover; }
.hero-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.hero-card h2 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 2.2rem; }
.section-heading h2, .intro h2, .terms-section h2, .cta-box h2 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1.2; margin: 0 0 0.75rem; }
.intro { background: var(--bg); }
.intro-points { display: grid; gap: 1rem; }
.intro-points > div, .terms-list > div { background: var(--white); padding: 1.1rem 1.2rem; border-radius: 16px; border: 1px solid var(--border); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.info-card, .fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(15,76,129,0.06);
}
.info-card h3, .fleet-card h3 { margin-top: 0; margin-bottom: 0.4rem; font-size: 1.15rem; }
.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.9rem;
}
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(15,76,129,0.12), rgba(244,166,29,0.2));
  color: var(--primary);
  font-size: 1.35rem;
}
.info-card a, .fleet-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.16);
}
.info-card a:hover, .fleet-card a:hover { transform: translateY(-1px); }
.fleet-card span { display: inline-block; margin-top: 0.3rem; color: var(--accent); font-weight: 700; }
.price-list { padding-left: 1rem; margin: 0.7rem 0 0; color: var(--muted); }
.price-list li { margin-bottom: 0.35rem; }
.card-badge {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15,76,129,0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}
.option-row strong { color: var(--text); }
.icon-negative { color: #dc2626; }
.fleet-card p { margin: 0 0 0.75rem; color: var(--muted); }
.availability { display: inline-block; margin-top: 0.4rem; color: var(--accent); font-weight: 700; }
.terms-section { background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%); }
.terms-list { display: grid; gap: 1rem; }
.cta-section { padding-top: 1rem; }
.cta-box {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 100;
}
.floating-btn {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}
.floating-btn:hover { transform: translateY(-2px); }
.floating-btn.facebook { background: #1877F2; }
.floating-btn.tiktok { background: #000; }
.floating-btn.whatsapp { background: #25d366; }
.floating-btn.phone { background: var(--primary); }
.site-footer {
  background: #0a1e2f;
  color: #dce7f0;
  padding: 3rem 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-credit {
  text-align: center;
  margin-top: 2rem;
  color: #9bb7d0;
  font-size: 0.95rem;
}
.footer-credit a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-credit a:hover {
  color: var(--accent);
}
.site-footer a { color: #fff; }
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-link.facebook, .floating-btn.facebook {
  background: #1877F2;
  color: #fff;
}
.social-link.tiktok, .floating-btn.tiktok {
  background: #000;
  color: #fff;
}
.social-link.instagram {
  background: #E1306C;
  color: #fff;
}
.social-link.facebook:hover, .floating-btn.facebook:hover { background: #165ec9; }
.social-link.tiktok:hover, .floating-btn.tiktok:hover { background: #111; }
.social-link.instagram:hover { background: #c1275a; }
.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-link:hover { transform: translateY(-2px); }
.gallery-section {
  background: var(--bg);
}
.gallery-hint-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.gallery-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  color: var(--text);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  box-shadow: 0 10px 24px rgba(15,76,129,0.06);
  font-weight: 700;
}
.gallery-full {
  width: 100%;
  padding: 0 1rem;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
}
.gallery-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15,76,129,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(15,76,129,0.14);
}
.gallery-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-thumb span {
  display: block;
  padding: 1rem;
  background: var(--white);
  color: var(--text);
  font-weight: 700;
}
.gallery-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10,24,45,0.75);
  padding: 1.5rem;
  z-index: 120;
}
.gallery-overlay[hidden] {
  display: none !important;
}
.gallery-modal {
  position: relative;
  width: min(980px, 100%);
  max-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
  background: #08111d;
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}
.gallery-modal img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  background: #08111d;
}
.gallery-dismiss {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1;
}
.gallery-dismiss:hover {
  background: rgba(255,255,255,0.18);
}
.gallery-controls {
  position: absolute;
  inset: auto 1rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.gallery-control {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-control:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.video-section {
  background: rgba(247,249,252,0.92);
  padding: 4rem 0;
}
.video-section .container {
  width: min(1360px, calc(100% - 2rem));
}
.video-card-grid {
  display: block;
}
.video-gallery-grid {
  display: grid;
  width: min(1320px, 100%);
  max-width: 1320px;
  margin: 2rem auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}
.video-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15,76,129,0.08);
}
.video-card-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-card-frame iframe,
.video-card-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.video-card-body {
  padding: 1.5rem;
}
.video-card-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}
.video-card-body p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}
.video-card .eyebrow {
  color: var(--accent);
}
.video-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.video-card-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.video-card-item:last-child { border-bottom: none; }
.video-card-item strong {
  display: block;
  margin-bottom: 0.25rem;
}
.video-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.video-frame-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15,76,129,0.12);
}
.video-preview {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.video-preview-player {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15,76,129,0.14);
  background: #000;
}
.video-preview-iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}
.video-preview-details {
  padding: 1.75rem 1.5rem;
  background: var(--bg);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 35px rgba(15,76,129,0.08);
}
.video-preview-details h3 {
  margin: 0 0 0.85rem;
  font-size: 1.4rem;
}
.video-preview-description {
  margin: 0;
  line-height: 1.8;
  color: var(--text);
}
.video-gallery-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.video-gallery-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.video-gallery-item:hover,
.video-gallery-item.active {
  border-color: var(--primary);
  box-shadow: 0 18px 35px rgba(15,76,129,0.14);
  transform: translateY(-1px);
}
.video-gallery-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.video-gallery-item strong {
  display: block;
  margin-bottom: 0.35rem;
}
.video-gallery-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}
.footer-contact p {
  margin: 0.55rem 0;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
}
.footer-contact a:hover {
  color: var(--accent);
}
.video-frame-wrap video {
  width: 100%;
  height: auto;
  min-height: 360px;
  display: block;
}
.testimonial-section {
  background: var(--white);
}
.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-track {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  transition: transform 0.35s ease;
}
.testimonial-track > .testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.testimonial-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(15,76,129,0.08);
  transition: transform 0.35s ease;
}
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card h3 {
  margin: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: #f4a61d;
  margin-bottom: 1rem;
}
.testimonial-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}
.testimonial-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(15,76,129,0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.testimonial-btn:hover {
  transform: translateY(-2px);
}
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-card-grid { display: block; }
  .video-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-btn {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 760px) {
  .hero-content, .grid-two, .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .video-gallery-grid { grid-template-columns: 1fr; }
  .info-card a, .fleet-card a { width: 100%; }
  .video-section iframe,
  .video-frame-wrap video { min-height: 260px; }
  .testimonial-card {
    padding: 1.5rem;
  }
}
@media (max-width: 680px) {
  .nav-wrap { justify-content: center; flex-wrap: wrap; padding: 0.6rem 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 3rem 0; }
  .section { padding: 3.5rem 0; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
  .gallery-thumb img { height: 200px; }
}

