/* ═══════════════════════════════════════
   INFINITY APEX — styles.css (Modern Redesign)
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --gold: #d4af37;
  --gold-lt: #fdf0a6;
  --gold-dk: #aa8825;
  --black: #030508;
  --dark: #0a0e17;
  --dark2: #121824;
  --dark3: #1c2536;
  --white: #fdfcf7;
  --gray: #9ba4b5;
  --border: rgba(212, 175, 55, 0.15);
  --border-light: rgba(255, 255, 255, 0.05);
  --nav-h: 80px;
  --primary-font: 'Outfit', sans-serif;
  --serif-font: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--primary-font);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  border-radius: 4px;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--dark3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ── LAYOUT ── */
.inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 4rem;
}

section {
  padding: 140px 0;
  position: relative;
}

section.bg-dark {
  background: var(--dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* ── COMMON ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section-tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 2px;
}

.section-title {
  font-family: var(--serif-font);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, #b3b3b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}

.section-title strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 32px 0;
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--black);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  opacity: 0;
  transition: opacity .4s;
}

.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: all .4s ease;
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-lt);
  transform: translateY(-3px);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════
   NAVBAR
════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(3, 5, 8, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all .4s ease;
}

#navbar.scrolled {
  height: 70px;
  background: rgba(3, 5, 8, 0.85);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05) rotate(3deg);
}

.brand-name {
  display: block;
  font-family: var(--serif-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 2px;
}

.brand-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 28px !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: 30px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all .4s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--gold);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--gold);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 998;
  flex-direction: column;
  padding: 8rem 2.5rem 3rem;
  overflow-y: auto;
  clip-path: circle(0px at top right);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  display: flex;
  clip-path: circle(150% at top right);
}

.mobile-menu a {
  color: var(--gray);
  text-decoration: none;
  font-family: var(--serif-font);
  font-size: 42px;
  font-weight: 400;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color .4s, transform .4s;
}

.mobile-menu a:hover {
  color: var(--white);
  transform: translateX(15px);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ════════════════════════
   HERO
════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Hero Slider ── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 5, 8, 0.7) 0%, rgba(3, 5, 8, 0.4) 40%, rgba(3, 5, 8, 0.85) 100%);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.active {
  animation: heroSlideZoom 7s ease-out forwards;
}

@keyframes heroSlideZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

/* Slider Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

#hero:hover .hero-slider-arrow {
  opacity: 1;
}

.hero-slider-prev {
  left: 32px;
}

.hero-slider-next {
  right: 32px;
}

.hero-slider-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  padding: 0;
}

.hero-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-dot.active {
  border-color: var(--gold);
}

.hero-dot.active::after {
  transform: scale(1);
}

.hero-dot:hover {
  border-color: var(--gold-lt);
}

/* Slider Progress Bar */
.hero-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 15;
  background: rgba(255, 255, 255, 0.08);
}

.hero-slider-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  transition: width 0.3s linear;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 10%, transparent 80%);
  pointer-events: none;
}

.hero-logo-watermark {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: auto;
  opacity: .03;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: calc(var(--nav-h) + 80px) 4rem 200px;
  max-width: 1420px;
  margin: 0 auto;
  width: 100%;
}

/* ── Hero Tag ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  font-size: 11px;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
  font-weight: 400;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.9);
  }
}

/* ── Title Wrapper ── */
.hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.35s forwards;
}

/* ── Hero Title ── */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* ── "BUILDING" & "APEX" — solid white ── */
.hero-t-apex {
  font-family: var(--primary-font);
  font-size: clamp(22px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--white);
  -webkit-text-stroke: 0;
  line-height: 1;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* ── "Infinity" — large solid gold, overlapping ── */
.hero-t-infinity {
  font-family: var(--serif-font);
  font-size: clamp(70px, 11vw, 150px);
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
  margin: -0.05em 0;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
  filter: drop-shadow(0 4px 40px rgba(212, 175, 55, 0.3));
  position: relative;
  z-index: 2;
}

/* ── Hero Subtitle ── */
.hero-sub {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

.hero-sub-word {
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}

.hero-sub-word:hover {
  color: var(--gold-lt);
}

.hero-sub-sep {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Hero CTAs ── */
.hero-ctas {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  transform: translateX(-50%) translateY(50%);
  margin-top: 40px;
  z-index: 10;
  display: flex;
  width: calc(100% - 8rem);
  max-width: 1420px;
  background: rgba(18, 24, 36, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 40px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--serif-font);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 10px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════
   ABOUT
════════════════════════ */
#about {
  padding-top: 240px;
}

.about-grid {
  display: grid;
  grid-template-columns: 10fr 8fr;
  gap: 100px;
  align-items: center;
}

.about-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
  margin-top: 1.5rem;
  font-weight: 300;
}

.about-pillars {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.4s;
}

.pillar:hover {
  background: rgba(212, 175, 55, 0.03);
  border-color: var(--border);
  transform: translateX(10px);
}

.pillar-num {
  font-family: var(--primary-font);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.pillar-text strong {
  display: block;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: var(--serif-font);
  letter-spacing: 0.5px;
}

.pillar-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.about-visual-wrap {
  position: relative;
}

.about-visual {
  aspect-ratio: 4/5;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-logo-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.about-logo-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-logo-overlay {
  display: none;
}

.about-overview-bar {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(3, 5, 8, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
}

.ov-item {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ov-item:nth-child(2n) {
  border-right: none;
}

.ov-item:nth-child(3),
.ov-item:nth-child(4) {
  border-bottom: none;
}

.ov-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.ov-val {
  font-size: 13px;
  color: var(--white);
  line-height: 1.4;
  font-weight: 400;
}


/* ════════════════════════
   SERVICES
════════════════════════ */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 80px;
}

.services-header-right {
  max-width: 400px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  text-align: right;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-num {
  position: absolute;
  top: 24px;
  right: 30px;
  font-family: var(--serif-font);
  font-size: 64px;
  color: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  line-height: 1;
  transition: color 0.4s;
}

.service-card:hover .service-num {
  color: rgba(212, 175, 55, 0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  color: var(--white);
  border-radius: 50%;
  transition: all .4s ease;
  background: var(--dark3);
}

.service-card:hover .service-icon {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-family: var(--serif-font);
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--white);
  transition: color .3s;
  line-height: 1.3;
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ════════════════════════
   APPROACH
════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform 0.4s;
}

.step:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(10px);
}

.step:hover::before {
  transform: scaleY(1);
}

.step-num {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  min-width: 30px;
  padding-top: 2px;
}

.step-content h4 {
  font-family: var(--serif-font);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.step-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 3rem;
}

.why-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all .4s ease;
}

.why-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.check-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 14px;
}

.why-item h4 {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--white);
}

.why-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ════════════════════════
   PROJECTS — photo grids
════════════════════════ */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.proj-header-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 360px;
  text-align: right;
  line-height: 1.7;
  font-weight: 300;
}

.pc {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
  border-radius: 8px;
  contain: strict;
}

.pc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(.25, .46, .45, .94);
  border-radius: 0;
}

.pc:hover img {
  transform: scale(1.08);
}

.po {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 5, 8, .9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 30px;
  gap: 8px;
  opacity: 0;
  transition: all .4s ease;
  transform: translateY(10px);
}

.pc:hover .po {
  opacity: 1;
  transform: translateY(0);
}

.pt {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

.pn {
  font-family: var(--serif-font);
  font-size: 24px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.pl {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

.pb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pc:hover .pb {
  transform: scaleX(1);
}

.pg {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.pg-2 {
  grid-template-columns: 1fr 1fr;
}

.pg-2 .pc {
  aspect-ratio: 16/9;
}

.pg-2-1 {
  grid-template-columns: 2fr 1fr;
}

.pg-2-1 .pc {
  aspect-ratio: unset;
  height: 500px;
}

.pg-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pg-3 .pc {
  aspect-ratio: 4/3;
}

.pg-1-2 {
  grid-template-columns: 1.5fr 1fr;
}

.pg-1-2>.pc {
  aspect-ratio: unset;
  height: 560px;
}

.pg-stack {
  display: grid;
  gap: 16px;
  aspect-ratio: 1 / 1;
  grid-template-rows: 1fr 1fr;
}

.pg-stack .pc {
  height: 100%;
  min-height: 0;
}

.proj-count {
  text-align: center;
  margin-top: 60px;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 500;
}

/* ════════════════════════
   LIGHTBOX
════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3, 5, 8, .98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lb-stage {
  position: relative;
  width: calc(100% - 8rem);
  max-width: 1420px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.lb-stage img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: contain;
  display: block;
  background: var(--dark);
  border-radius: 12px 12px 0 0;
}

.lb-info {
  padding: 24px 32px;
  background: var(--dark2);
  display: flex;
  align-items: center;
  gap: 24px;
}

.lb-tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
}

.lb-name {
  font-family: var(--serif-font);
  font-size: 24px;
  font-weight: 500;
}

.lb-loc {
  font-size: 14px;
  color: var(--gray);
  margin-left: auto;
  white-space: nowrap;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1);
}

.lb-close {
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  font-size: 32px;
}

.lb-prev {
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  font-size: 32px;
}

.lb-next {
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  font-size: 32px;
}

.lb-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lb-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ════════════════════════
   CLIENTS
════════════════════════ */
#clients {
  padding: 100px 0;
}

.clients-center {
  text-align: center;
}

.clients-tag {
  justify-content: center;
}

.clients-tag::before {
  display: none;
}

.clients-divider {
  margin: 32px auto 64px;
}

.clients-strip {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.client-box {
  flex: 1;
  padding: 40px 20px;
  border-right: 1px solid var(--border-light);
  font-family: var(--primary-font);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
}

.client-box:last-child {
  border-right: none;
}

.client-box:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ════════════════════════
   QUALITY
════════════════════════ */
.quality-grid {
  display: grid;
  grid-template-columns: 10fr 8fr;
  gap: 100px;
  align-items: center;
}

.quality-visual {
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-logo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.quality-logo-bg img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  opacity: .05;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.quality-rings {
  position: absolute;
  width: 90%;
  height: 90%;
}

.quality-rings circle {
  fill: none;
  stroke: rgba(212, 175, 55, 0.2);
  stroke-width: 1;
  transform-origin: center;
}

.quality-rings circle:nth-child(1) {
  animation: spinRing 30s linear infinite;
  stroke-dasharray: 8 16;
}

.quality-rings circle:nth-child(2) {
  animation: spinRing 40s linear infinite reverse;
  stroke-dasharray: 4 12;
  stroke: rgba(255, 255, 255, 0.1);
}

.quality-rings circle:nth-child(3) {
  animation: spinRing 20s linear infinite;
  stroke-dasharray: 12 8;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.quality-center-label {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--serif-font);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.4;
  background: rgba(3, 5, 8, 0.8);
  padding: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.quality-intro {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.quality-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qpoint {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.qpoint:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qpoint-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.qpoint-text h4 {
  font-family: var(--serif-font);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.qpoint-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ════════════════════════
   CONTACT
════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-intro {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-line {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

.contact-line:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  border-radius: 50%;
  transition: all .4s ease;
  background: rgba(255, 255, 255, 0.02);
}

.contact-line:hover .contact-icon {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.contact-line-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-line-val {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.contact-line-val a {
  text-decoration: none;
  color: var(--white);
  transition: color .3s;
}

.contact-line-val a:hover {
  color: var(--gold);
}

.form-heading {
  font-family: var(--serif-font);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.form-heading strong {
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  color: var(--white);
  padding: 16px 20px;
  font-size: 15px;
  font-family: var(--primary-font);
  outline: none;
  transition: all .3s ease;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.02);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-row select {
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23d4af37" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 9l-7 7-7-7"></path></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.form-row select option {
  background: var(--dark2);
  color: var(--white);
}

.form-row textarea {
  height: 150px;
}

.form-submit {
  margin-top: 10px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--black);
  border: none;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--primary-font);
  transition: all .4s ease;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.form-msg {
  display: none;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gold);
  text-align: center;
  letter-spacing: 1px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.05);
}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 100px 4rem 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  margin-bottom: 30px;
  transition: transform 0.4s;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: all .3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-contact-item {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item a {
  color: var(--gray);
  text-decoration: none;
  transition: color .3s ease;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 30px 4rem;
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width:1200px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .pg-1-2>.pc {
    height: 460px;
  }

  .pg-2-1 .pc {
    height: 400px;
  }
}

@media (max-width:900px) {
  .inner {
    padding: 0 2rem;
  }

  section {
    padding: 100px 0;
  }

  #navbar {
    padding: 0 2rem;
    height: 70px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 120px 1.5rem 80px;
  }

  .hero-title {
    gap: 0;
  }

  .hero-t-apex {
    font-size: clamp(16px, 5vw, 28px);
    letter-spacing: 6px;
  }

  .hero-sub {
    gap: 10px;
  }

  .hero-sub-word {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .hero-slider-prev {
    left: 12px;
  }

  .hero-slider-next {
    right: 12px;
  }

  .hero-slider-dots {
    bottom: 100px;
  }

  .hero-slider-arrow {
    opacity: 1;
  }

  .hero-stats {
    position: relative;
    left: 0;
    transform: none;
    bottom: 0;
    width: 100%;
    border-radius: 0;
    flex-direction: column;
    border-left: none;
    border-right: none;
    margin-top: 40px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 30px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  #about {
    padding-top: 100px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual-wrap {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
  }

  .services-header-right {
    text-align: left;
    max-width: 100%;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Projects */
  .pg-2-1,
  .pg-2,
  .pg-3,
  .pg-1-2 {
    grid-template-columns: 1fr;
  }

  .pg-2-1 .pc,
  .pg-1-2>.pc {
    height: 320px;
  }

  .pg-3 .pc,
  .pg-2 .pc {
    aspect-ratio: 4/3;
  }

  .pg-stack .pc {
    aspect-ratio: unset;
    height: 320px;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }

  .proj-header-sub {
    text-align: left;
    max-width: 100%;
  }

  /* Lightbox */
  .lb-prev {
    left: 10px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .lb-next {
    right: 10px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .lb-stage {
    width: calc(100% - 4rem);
  }

  .lb-stage img {
    max-width: 96vw;
    max-height: 60vh;
  }

  .lb-info {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
  }

  .lb-loc {
    margin-left: 0;
  }

  .lb-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .clients-strip {
    flex-wrap: wrap;
  }

  .client-box {
    flex-basis: 50%;
    border-bottom: 1px solid var(--border-light);
  }

  .client-box:nth-child(2n) {
    border-right: none;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .quality-visual {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 60px 2rem 40px;
    gap: 40px;
  }

  .footer-bottom {
    padding: 24px 2rem;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}