/* ================================================
   ROOT & RESET
   ================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange:      #F97316;
  --orange-dk:   #EA580C;
  --orange-lt:   #FB923C;
  --green:       #22C55E;
  --green-dk:    #16A34A;
  --bg:          #09090B;
  --bg2:         #111113;
  --card:        #18181B;
  --card2:       #1F1F23;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);
  --txt:         #FAFAFA;
  --txt-m:       #A1A1AA;
  --txt-d:       #71717A;
  --font:        'Inter', system-ui, sans-serif;
  --r:           12px;
  --r-lg:        18px;
  --r-xl:        24px;
  --shadow:      0 4px 32px rgba(0,0,0,0.5);
  --shadow-o:    0 6px 28px rgba(249,115,22,0.35);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.accent { color: var(--orange); }

/* scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waFloat 2.2s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 6px 32px rgba(37,211,102,0.6); }
.wa-float i { font-size: 1.35rem; }

@keyframes waFloat {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background .35s, padding .35s, box-shadow .35s;
}
.navbar.scrolled {
  background: rgba(9,9,11,0.93);
  backdrop-filter: blur(18px);
  padding: .75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}

.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  font-size: 1.15rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  flex-shrink: 0;
}
.nav-logo em { color: var(--orange); font-style: normal; }
.logo-img {
  height: 42px; width: auto;
  object-fit: contain; border-radius: 0;
  border: none; display: block;
}

.nav-menu {
  display: flex; gap: .15rem;
  margin-left: auto;
}
.nav-link {
  display: block; padding: .45rem .9rem;
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 8px;
  position: relative; transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--orange); border-radius: 2px;
  transition: width .3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { width: 55%; }
.nav-link.active { color: var(--orange); }

.nav-cta {
  display: flex; align-items: center; gap: .45rem;
  background: var(--orange); color: #fff;
  padding: .5rem 1.2rem; border-radius: 9px;
  font-size: .85rem; font-weight: 700;
  flex-shrink: 0;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-o);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: center;
  overflow: hidden;
}
.vid-slider {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}

.hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: transform, opacity;
}

.hero-vid.v-active {
  opacity: 1;
  animation: kbMotion 20s ease-out forwards;
}

@keyframes kbMotion {
  0%   { transform: scale(1)    translate(0%,    0%); }
  50%  { transform: scale(1.06) translate(-1%,   .5%); }
  100% { transform: scale(1.12) translate(-2%,   1%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.65) 55%,
    rgba(249,115,22,.12) 100%
  );
}
.hero-body {
  position: relative; z-index: 2;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.35);
  color: var(--orange-lt);
  padding: .38rem 1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: .5px;
  margin-bottom: 1.4rem;
  animation: fadeUp .7s ease both;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
  animation: fadeUp .7s ease .15s both;
}

.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  max-width: 560px; line-height: 1.75;
  margin-bottom: 2rem;
  animation: fadeUp .7s ease .3s both;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .7s ease .45s both;
}

.hero-nums {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 2.8rem;
  animation: fadeUp .7s ease .6s both;
}
.h-num { text-align: center; }
.h-num strong { display: block; font-size: 1.45rem; font-weight: 800; color: var(--orange); }
.h-num span   { font-size: .78rem; color: rgba(255,255,255,.55); }
.h-sep { width: 1px; height: 38px; background: rgba(255,255,255,.18); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.45); font-size: 1.1rem;
  animation: bounceY 2s ease-in-out infinite;
}
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(9px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.65rem; border-radius: 10px;
  font-weight: 700; font-size: .95rem;
  border: 2px solid transparent;
  transition: all .25s; cursor: pointer;
}
.btn-green  { background: #25D366; color: #fff; }
.btn-green:hover  { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,.35); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: var(--shadow-o); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ================================================
   FEATURES BAR
   ================================================ */
.feat-bar { background: var(--orange); padding: 1.1rem 0; }
.feat-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: .8rem;
}
.feat-item { display: flex; align-items: center; gap: .6rem; color: #fff; font-weight: 600; font-size: .88rem; }
.feat-item i { font-size: 1rem; opacity: .9; }
.feat-sep { width: 1px; height: 28px; background: rgba(255,255,255,.3); }

/* ================================================
   SECTION HEADERS
   ================================================ */
section { padding: 6rem 0; }

.sec-hdr { text-align: center; margin-bottom: 3.5rem; }
.sec-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: 3px;
  color: var(--orange); text-transform: uppercase;
  margin-bottom: .6rem;
}
.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 2.65rem);
  font-weight: 800; line-height: 1.2; margin-bottom: .85rem;
}
.sec-sub { font-size: 1rem; color: var(--txt-m); max-width: 480px; margin: 0 auto; }

/* ================================================
   SERVICES
   ================================================ */
.services { background: var(--bg2); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.4rem;
}

.svc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.1rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.svc-card:hover { border-color: rgba(249,115,22,.3); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-ico {
  width: 56px; height: 56px; border-radius: 13px;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.5rem; color: var(--orange);
  transition: background .3s, border-color .3s;
}
.svc-card:hover .svc-ico { background: rgba(249,115,22,.18); border-color: rgba(249,115,22,.4); }

.svc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .65rem; }
.svc-card p  { font-size: .92rem; color: var(--txt-m); line-height: 1.65; }

/* ================================================
   GALLERY
   ================================================ */
.gallery { background: var(--bg); }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1rem;
}

.gal-item {
  position: relative; border-radius: var(--r);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gal-ov {
  position: absolute; inset: 0;
  background: rgba(249,115,22,.72);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff;
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-item:hover .gal-ov { opacity: 1; }

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.93); cursor: zoom-out;
}

.lb-img {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--r);
  box-shadow: 0 24px 72px rgba(0,0,0,.8);
  transition: opacity .15s;
  animation: lbZoom .3s ease both;
}
@keyframes lbZoom {
  from { transform: scale(.87); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.lb-close, .lb-nav {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-nav:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.1); }
.lb-prev:hover { transform: translateY(-50%) scale(1.1); }
.lb-next:hover { transform: translateY(-50%) scale(1.1); }

.lb-count {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 2; background: rgba(0,0,0,.6);
  color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 600;
  padding: .3rem .85rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
}

/* ================================================
   VIDEOS
   ================================================ */
.vids { background: var(--bg2); }

.vids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vid-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.vid-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.5); }

.vid-wrap { position: relative; }
.vid-wrap video { width: 100%; display: block; aspect-ratio: 16/9; background: #000; }

.vid-info { padding: 1.4rem 1.6rem; }
.vid-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: .5rem;
}
.vid-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .45rem; }
.vid-info p  { font-size: .9rem; color: var(--txt-m); }

/* ================================================
   STATS
   ================================================ */
.stats-band {
  background: linear-gradient(135deg, var(--orange-dk) 0%, var(--orange) 60%, var(--orange-lt) 100%);
  padding: 4.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem; text-align: center;
}

.stat-item { color: #fff; }
.stat-item > i { font-size: 1.8rem; opacity: .85; margin-bottom: .6rem; display: block; }
.stat-val { font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: .4rem; }
.s-num { display: inline-block; }
.stat-suffix { font-size: 2rem; }
.stat-lbl { font-size: .88rem; font-weight: 500; opacity: .85; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-sec { background: var(--bg); padding: 5rem 0; }

.cta-box {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl); padding: 3rem 3.5rem;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}

.cta-text { flex: 1; min-width: 260px; }
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; }
.cta-text p  { color: var(--txt-m); font-size: .97rem; max-width: 460px; }

.cta-btns { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }

/* ================================================
   CONTACT
   ================================================ */
.contact { background: var(--bg2); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.contact-lead { color: var(--txt-m); font-size: .97rem; margin-bottom: 2rem; line-height: 1.7; }

.c-cards { display: flex; flex-direction: column; gap: 1.2rem; }

.c-card {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.1rem 1.3rem;
  transition: border-color .3s, transform .3s;
}
.c-card:hover { border-color: var(--border2); transform: translateX(4px); }

.c-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.c-green { background: rgba(34,197,94,.12); color: #22C55E; border: 1px solid rgba(34,197,94,.25); }
.c-orange { background: rgba(249,115,22,.12); color: var(--orange); border: 1px solid rgba(249,115,22,.25); }
.c-blue   { background: rgba(59,130,246,.12);  color: #60A5FA; border: 1px solid rgba(59,130,246,.25); }
.c-navy   { background: rgba(99,102,241,.12);  color: #818CF8; border: 1px solid rgba(99,102,241,.25); }

.c-card h4 { font-size: .82rem; font-weight: 600; color: var(--txt-d); margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .5px; }
.c-card a, .c-card p { font-size: 1rem; font-weight: 600; color: var(--txt); transition: color .2s; }
.c-card a:hover { color: var(--orange); }

.contact-visual {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 1;
  border: 2px solid var(--border);
}
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }

.cv-badge {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  background: rgba(9,9,11,.82); backdrop-filter: blur(10px);
  border: 1px solid var(--border2); border-radius: 50px;
  padding: .5rem 1.1rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--orange);
  white-space: nowrap;
}
.cv-badge i { color: var(--orange); }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: #050507; padding: 5rem 0 2rem; border-top: 1px solid var(--border); }

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
}

.ft-logo {
  margin-bottom: 1rem;
}
.ft-logo-img { height: 48px; width: auto; object-fit: contain; display: block; }

.ft-brand p { color: var(--txt-m); font-size: .88rem; line-height: 1.7; max-width: 260px; margin-bottom: 1.4rem; }

.ft-social { display: flex; gap: .65rem; }
.ft-social a {
  width: 38px; height: 38px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--txt-m);
  transition: background .2s, border-color .2s, color .2s;
}
.ft-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.ft-col h4 {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--txt); margin-bottom: 1.1rem;
}
.ft-col ul { display: flex; flex-direction: column; gap: .55rem; }
.ft-col ul li, .ft-col ul a { font-size: .88rem; color: var(--txt-m); transition: color .2s; }
.ft-col ul a:hover { color: var(--orange); }

.ft-phone {
  display: flex; align-items: center; gap: .55rem;
  font-size: .9rem; color: var(--txt-m); margin-bottom: .55rem;
  transition: color .2s;
}
.ft-phone:hover { color: var(--orange); }
.ft-phone i { color: var(--orange); width: 16px; }

.ft-hours { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--txt-d); margin-top: .55rem; }
.ft-hours i { color: var(--orange); width: 16px; }

.ft-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  font-size: .82rem; color: var(--txt-d);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-visual { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: min(280px, 80vw); height: 100vh;
    background: rgba(9,9,11,.97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: .75rem; border-left: 1px solid var(--border);
    transition: right .35s ease; z-index: 998;
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 1.05rem; padding: .65rem 1.2rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { letter-spacing: -.5px; }
  .h-sep { display: none; }
  .hero-nums { flex-wrap: wrap; gap: 1rem; }

  .svc-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .vids-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-box { padding: 2rem; flex-direction: column; align-items: flex-start; }
  .cta-btns { width: 100%; }

  .feat-sep { display: none; }
  .feat-inner { justify-content: center; gap: 1rem; }

  .wa-float span { display: none; }
  .wa-float { padding: 14px; width: 54px; height: 54px; border-radius: 50%; justify-content: center; }

  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bottom { flex-direction: column; text-align: center; }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

@media (max-width: 520px) {
  .gal-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-btns .btn { flex: 1; justify-content: center; }
}
