@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --black: #050505;
  --deep: #0a0a0a;
  --surface: #111111;
  --card: #0d0d0d;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --gold: #d4a843;
  --gold-dim: #a17c2f;
  --gold-glow: rgba(212, 168, 67, 0.12);
  --gold-bright: #f0d060;
  --cream: #f5f0e3;
  --white: #ededed;
  --muted: #6a6a6a;
  --text: #8a8a8a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  overflow-x: hidden;
  scrollbar-width: none;
  scroll-behavior: auto;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

/* ═══ THREE.JS CANVAS ═══ */
#three-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2.5s ease;
}

#three-bg.loaded {
  opacity: 1;
}

/* ═══ GRAIN ═══ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 99990;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ═══ PROGRESS BAR ═══ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
  z-index: 99995;
}

@keyframes shimmerBar {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

/* ═══ PRELOADER — SPLIT WIPE WITH LOGO ═══ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.preloader-left,
.preloader-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--black);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
}

.preloader-left {
  left: 0;
  transform-origin: left;
}

.preloader-right {
  right: 0;
  transform-origin: right;
}

.preloader.done .preloader-left {
  transform: translateX(-100%);
}

.preloader.done .preloader-right {
  transform: translateX(100%);
}

.preloader.done {
  pointer-events: none;
}

.preloader-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0;
  animation: preloaderLogoIn 0.8s 0.2s var(--ease-expo) forwards;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: preloaderLogoIn 0.8s 0.4s var(--ease-expo) forwards;
}

.preloader-line {
  width: 120px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: preloaderLogoIn 0.6s 0.5s var(--ease-expo) forwards;
}

.preloader-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.1s linear;
}

.preloader.done .preloader-center {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes preloaderLogoIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }

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

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

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

/* ═══ CURSOR ═══ */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  position: fixed;
  z-index: 99998;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  position: fixed;
  z-index: 99997;
  pointer-events: none;
  transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), border-color 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring.hover {
  width: 72px;
  height: 72px;
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.06);
}

@media(hover:none), (max-width:768px) {

  .cursor-dot,
  .cursor-ring {
    display: none !important
  }
}

/* ═══ WHITE REVEAL ═══ */
.white-reveal {
  position: fixed;
  inset: 0;
  z-index: 99991;
  background: var(--gold);
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: top
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s var(--ease-smooth);
}

.header.scrolled {
  padding: 14px 48px;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(30px) saturate(1.8);
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  z-index: 9001;
}

.logo-text span {
  color: var(--white);
  font-weight: 300;
}

.logo-img {
  height: 40px!important;
  z-index: 9001;
  transition: height 0.5s var(--ease-expo);
}

.header.scrolled .logo-img {
  height: 40px !important; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.4s;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 1.2em;
}

.nav-links a .n-t {
  display: inline-block;
  transition: transform 0.4s var(--ease-expo);
}

.nav-links a .n-c {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-expo);
}

.nav-links a:hover .n-t {
  transform: translateY(-110%);
}

.nav-links a:hover .n-c {
  transform: translateY(0);
}

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

.btn-contact {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 13px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-expo);
}

.btn-contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-expo);
}

.btn-contact:hover::after {
  transform: translateY(0);
}

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

/* Hamburger */
.hamburger {
  display: none;
  z-index: 9001;
  width: 30px;
  height: 22px;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all 0.5s var(--ease-expo);
}

.hamburger span:nth-child(1) {
  top: 0
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%)
}

.hamburger span:nth-child(3) {
  bottom: 0;
  width: 55%
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg)
}

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

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  width: 100%;
  transform: translateY(50%) rotate(-45deg)
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 40px) 32px);
  transition: clip-path 0.8s var(--ease-expo);
}

.nav-mobile.active {
  clip-path: circle(150% at calc(100% - 40px) 32px);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  padding: 10px 0;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.6s var(--ease-expo), opacity 0.6s, color 0.3s;
}

.nav-mobile.active a {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile.active a:nth-child(1) {
  transition-delay: .15s
}

.nav-mobile.active a:nth-child(2) {
  transition-delay: .2s
}

.nav-mobile.active a:nth-child(3) {
  transition-delay: .25s
}

.nav-mobile.active a:nth-child(4) {
  transition-delay: .3s
}

.nav-mobile.active a:nth-child(5) {
  transition-delay: .35s
}

.nav-mobile.active a:nth-child(6) {
  transition-delay: .4s
}

.nav-mobile a:hover {
  color: var(--gold);
}

@media(max-width:960px) {

  .nav-links,
  .btn-contact-wrap {
    display: none !important
  }

  .hamburger {
    display: block
  }

  .header {
    padding: 22px 24px
  }

  .header.scrolled {
    padding: 14px 24px
  }
}

/* ════════════════════════════════════════════
   HERO — CINEMATIC
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, var(--gold-glow) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(212, 168, 67, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.3) 50%, var(--black) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 250px rgba(0, 0, 0, 0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
  clip-path: inset(0 100% 0 0);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .line {
  display: block;
  clip-path: inset(0 100% 0 0);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.95;
  opacity: 0;
  transform: translateY(30px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 40px;
  border: 1px solid rgba(212, 168, 67, 0.35);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.4s, border-color 0.4s;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-expo);
}

.hero-cta:hover::before {
  transform: translateY(0);
}

.hero-cta:hover {
  color: var(--black);
  border-color: var(--gold);
}

.hero-cta span,
.hero-cta svg {
  position: relative;
  z-index: 1;
}

.hero-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.scroll-hint span {
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-lr;
}

.scroll-hint .line {
  width: 1px;
  height: 56px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-hint .line::after {
  content: '';
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    top: -40%
  }

  100% {
    top: 140%
  }
}

/* ════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .5)!important;
  white-space: nowrap;
  padding: 0 36px
}

.marquee-track span em {
  font-style: italic;
  color: rgba(212, 168, 67, .5) !important;
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════ */
.sec {
  position: relative;
  padding: 140px 48px;
  overflow: hidden;
}

.sec-dark {
  background: var(--black);
}

.sec-deep {
  background: var(--deep);
}

.sec-header {
  text-align: center;
  margin-bottom: 80px;
}

.sec-label {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}

.sec-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin: 18px auto 0;
  line-height: 1.9;
}

/* ════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════ */
.cta-sec {
  padding: 180px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15)
  }
}

.cta-sec h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}

.cta-sec h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sec p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 44px;
  position: relative;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-gold {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  transition: background 0.4s;
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-outline {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 16px 40px;
  transition: all 0.4s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 48px 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto 60px;
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  transition: all 0.4s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
  transition: color 0.3s;
}

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

/* ═══ SCROLL TOP ═══ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-expo);
  z-index: 8000;
}

.scroll-top.vis {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold-bright);
  transform: translateY(-4px);
}

/* ═══ ANIMATIONS ═══ */
[data-anim] {
  opacity: 0;
  will-change: transform, opacity;
}

[data-anim="fade-up"] {
  transform: translateY(60px);
}

[data-anim="fade-left"] {
  transform: translateX(-60px);
}

[data-anim="fade-right"] {
  transform: translateX(60px);
}

[data-anim="fade-scale"] {
  transform: scale(0.9);
}

/* ════════════════════════════════════════════
   STATS (shared across multiple pages)
   ════════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 56px 20px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-val {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ════════════════════════════════════════════
   RESPONSIVE — COMMON
   ════════════════════════════════════════════ */
@media(max-width:1024px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media(max-width:768px) {
  .sec {
    padding: 100px 24px;
  }

  .hero-content {
    padding: 0 20px;
  }

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

  .stat:not(:last-child)::after {
    display: none;
  }

  .cta-sec {
    padding: 100px 24px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    padding: 48px 24px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .sec-title {
    font-size: 1.7rem;
  }
}