/* =============================================
   Ugratars Printers — styles.css
   Color Theme: Dark Blue, Orange, White
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a0f2c;
  --navy-mid:   #0e1740;
  --navy-light: #1a2456;
  --navy-card:  #111936;
  --orange:     #f97316;
  --orange-dk:  #ea6c0c;
  --orange-lt:  #ff9a4d;
  --white:      #ffffff;
  --white-80:   rgba(255,255,255,.80);
  --white-50:   rgba(255,255,255,.50);
  --white-20:   rgba(255,255,255,.20);
  --white-10:   rgba(255,255,255,.10);
  --white-05:   rgba(255,255,255,.05);
  --font-sans:  'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.45);
}
.btn-ghost {
  background: var(--white-10);
  color: var(--white);
  border: 1px solid var(--white-20);
}
.btn-ghost:hover {
  background: var(--white-20);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 10px 22px;
  font-size: .875rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* ---------- Section Shared ---------- */
.section-tag {
  display: inline-block;
  background: rgba(249,115,22,.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--white-80);
  max-width: 560px;
}
.text-accent { color: var(--orange); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all .3s var(--ease);
}
.navbar.scrolled {
  background: rgba(10,15,44,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--white-10);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800;
}
.logo-icon { color: var(--orange); font-size: 1rem; }
.logo-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.logo-accent { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: .9rem; font-weight: 500;
  color: var(--white-80);
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--orange-dk); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg-animation {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .45;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.4), transparent 70%);
  top: -200px; right: -100px;
  animation-duration: 9s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,.8), transparent 70%);
  bottom: -100px; left: -80px;
  animation-duration: 12s; animation-delay: -4s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,.2), transparent 70%);
  top: 50%; left: 30%;
  animation-duration: 7s; animation-delay: -2s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--white-05) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.08); }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--white-80);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(249,115,22,.3); }
  50%      { box-shadow: 0 0 0 8px rgba(249,115,22,.1); }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-title-accent {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-80);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 72px; }
.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2.5rem; font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-serif);
}
.stat-plus { display: inline; font-size: 1.5rem; color: var(--orange); font-weight: 700; }
.stat-label { font-size: .8rem; color: var(--white-50); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--white-20); }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  animation: bounceY 2s ease-in-out infinite;
}
.scroll-dot {
  width: 26px; height: 40px;
  border: 2px solid var(--white-30);
  border-radius: 13px;
  position: relative;
}
.scroll-dot::before {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SERVICES
   ============================================= */
.services { padding: 120px 0; background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all .35s var(--ease);
}
.service-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 var(--ease);
}
.service-card:hover {
  border-color: rgba(249,115,22,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(249,115,22,.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(249,115,22,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all .3s var(--ease);
}
.service-card:hover .service-icon-wrap {
  background: rgba(249,115,22,.2);
  transform: scale(1.1);
}
.service-icon { width: 28px; height: 28px; color: var(--orange); }
.service-title {
  font-size: 1.125rem; font-weight: 700;
  margin-bottom: 12px; line-height: 1.3;
}
.service-desc {
  font-size: .9rem; color: var(--white-80);
  line-height: 1.65; margin-bottom: 24px;
}
.service-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white-10);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.service-arrow svg { width: 16px; height: 16px; color: var(--orange); }
.service-card:hover .service-arrow {
  background: var(--orange);
  transform: translateX(4px);
}
.service-card:hover .service-arrow svg { color: white; }

/* =============================================
   GALLERY
   ============================================= */
.gallery { padding: 120px 0; background: var(--navy-mid); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item { position: relative; cursor: pointer; }
.gallery-img-wrap {
  position: relative; overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  border: 1px solid var(--white-10);
}
.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,15,44,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-overlay svg { width: 32px; height: 32px; color: white; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  display: block;
  font-size: .8125rem; font-weight: 600;
  color: var(--white-50);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 12px; padding-left: 4px;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,8,20,.95);
  backdrop-filter: blur(12px);
}
.lightbox-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox-img-wrap {
  max-width: 880px; max-height: 80vh;
  position: relative; z-index: 2;
  transform: scale(.92);
  transition: transform .35s var(--ease-spring);
}
.lightbox.open .lightbox-img-wrap { transform: scale(1); }
.lightbox-img-wrap img {
  max-width: 100%; max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; z-index: 3;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 50%;
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-prev, .lightbox-next { top: 50%; width: 52px; height: 52px; }
.lightbox-prev { left: 16px; transform: translateY(-50%); }
.lightbox-next { right: 16px; transform: translateY(-50%); }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: .8125rem; font-weight: 600; color: var(--white-80);
  z-index: 3;
}

/* =============================================
   LOCATION
   ============================================= */
.location { padding: 120px 0; background: var(--navy); }
.location-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.location-info .section-tag { display: block; width: fit-content; margin-bottom: 16px; }
.location-info .section-title { margin-bottom: 16px; text-align: left; }
.location-text {
  color: var(--white-80); font-size: 1.0625rem;
  line-height: 1.7; margin-bottom: 36px;
}
.location-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px;
  background: var(--navy-card);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 20px;
}
.location-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(249,115,22,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.location-detail strong { display: block; margin-bottom: 4px; font-size: .9rem; color: var(--white-80); }
.location-detail p { font-size: 1rem; line-height: 1.6; }
.map-btn { font-size: .9375rem; }
.location-map-card {
  background: var(--navy-card);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  overflow: hidden;
}
.map-placeholder {
  height: 380px; position: relative;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--white-05) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin-anim { position: relative; z-index: 1; margin-bottom: 8px; }
.map-pin {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto;
  box-shadow: 0 0 0 8px rgba(249,115,22,.2);
  animation: pinBounce 2s ease-in-out infinite;
}
.map-ping {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: pingAnim 2s ease-in-out infinite;
  opacity: 0;
}
@keyframes pinBounce {
  0%,100% { transform: rotate(-45deg) translateY(0); }
  50%      { transform: rotate(-45deg) translateY(-8px); }
}
@keyframes pingAnim {
  0%   { transform: translateX(-50%) scale(1); opacity: .8; }
  100% { transform: translateX(-50%) scale(2.5); opacity: 0; }
}
.map-labels { text-align: center; z-index: 1; }
.map-city { display: block; font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.map-addr { display: block; font-size: .9rem; color: var(--white-80); }
.map-open-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: .8125rem; font-weight: 600;
  color: var(--white-80);
  z-index: 1;
  transition: all .2s var(--ease);
}
.map-open-link:hover { background: var(--orange); border-color: var(--orange); color: white; }

/* =============================================
   CONTACT
   ============================================= */
.contact { padding: 120px 0; background: var(--navy-mid); }
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--navy-card);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all .3s var(--ease);
}
.contact-card:hover {
  border-color: rgba(249,115,22,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.contact-card-icon {
  width: 60px; height: 60px;
  background: rgba(249,115,22,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}
.contact-card-icon svg { width: 26px; height: 26px; }
.whatsapp-icon { background: rgba(37,211,102,.12); color: #25D366; }
.contact-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; }
.contact-link {
  display: block; font-size: 1rem;
  color: var(--white-80);
  transition: color .2s;
  margin-bottom: 4px;
}
.contact-link:hover { color: var(--orange); }
.contact-sub { font-size: .875rem; color: var(--white-50); margin-bottom: 16px; }
.contact-sub-small { font-size: .8rem; color: var(--white-50); margin-top: 6px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--white-10);
  padding: 40px 0;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800;
}
.footer-address { font-size: .875rem; color: var(--white-50); }
.footer-copy { font-size: .8125rem; color: var(--white-50); margin-top: 4px; }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: waPulse 3s ease-in-out infinite;
  transition: transform .3s var(--ease-spring);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.8); }
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-fade {
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-fade.visible { opacity: 1; }

.delay-1 { transition-delay: .15s !important; }
.delay-2 { transition-delay: .3s !important; }
.delay-3 { transition-delay: .45s !important; }

/* Gallery items get staggered delays from JS */

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .location-inner { grid-template-columns: 1fr; gap: 48px; }
  .location-map-card { display: none; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--navy-mid);
    border-left: 1px solid var(--white-10);
    flex-direction: column; justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    padding: 40px;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; z-index: 1001; }
  .hero { padding: 100px 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 2rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 48px; height: 1px; }
}
