/* ============================================================
   TRANSCYCLE LOGISTICS — style.css  (OPTIMIZED + CLEAN)
   Theme: Industrial Gold on White
   Fonts: Barlow Condensed (headings) + DM Sans (body)
============================================================ */

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

:root {
  --navy:        #1c2b3a;
  --navy-2:      #f4f6f8;
  --navy-3:      #e8ecf0;
  --green:       #c9a227;
  --green-dark:  #a8861c;
  --green-dim:   rgba(201,162,39,.12);
  --green-glow:  rgba(201,162,39,.25);
  --white:       #ffffff;
  --off-white:   #f4f6f8;
  --text:        #2d3748;
  --text-muted:  #718096;
  --border:      rgba(0,0,0,.08);
  --card-bg:     #ffffff;
  --card-border: rgba(0,0,0,.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --section-gap:   6rem;
  --header-height: 80px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --fast: .2s;
  --med:  .4s;
  --slow: .7s;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .2s, height .2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(201,162,39,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease), width .3s, height .3s, opacity .3s;
}
body:not(:hover) .cursor,
body:not(:hover) .cursor-follower { opacity: 0; }

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ── Utility ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }

/* ── Preloader ───────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity .5s, visibility .5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__ring {
  width: 48px; height: 48px;
  border: 2px solid rgba(0,0,0,.1);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.preloader__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .3em;
  color: var(--text-muted);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--green);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--fast) var(--ease), transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.btn-primary svg { width: 18px; height: 18px; transition: transform var(--fast); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,.35); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary--full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; border-radius: var(--radius); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: border-color var(--fast), background var(--fast), transform var(--fast);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: #25D366; }
.btn-whatsapp:hover { border-color: #25D366; background: rgba(37,211,102,.1); transform: translateY(-2px); }

.btn-cta {
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
  white-space: nowrap;
}
.btn-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,162,39,.3); }

/* ── Section Typography ──────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section-label--light { color: var(--green); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title em       { font-style: normal; color: var(--green); }
.section-title--light   { color: var(--white); }
.section-desc           { font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.7; }
.section-desc--light    { color: rgba(255,255,255,.65); }

/* ── Reveal Animation ────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 24px rgba(0,0,0,.08);
  border-bottom: 3px solid var(--green);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 24px rgba(0,0,0,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo__img { height: 52px; width: auto; object-fit: contain; display: block; }
.logo__img--white { display: none; }
.logo__img--dark  { display: block; }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: .25rem; }
.nav__link {
  position: relative;
  display: block;
  padding: .5rem .85rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--fast), background var(--fast);
  overflow: hidden;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.7rem);
  height: 1.5px;
  background: var(--green);
  border-radius: 2px;
  transition: transform var(--fast) var(--ease);
}
.nav__link.active        { color: var(--green); }
.nav__link.active::after { transform: translateX(-50%) scaleX(1); }
.nav__link:hover         { color: var(--navy); }
.nav__link:hover::after  { transform: translateX(-50%) scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.hamburger {
  display: none;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
  cursor: pointer;
  padding: .45rem 1rem;
  border-radius: 4px;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background var(--fast), color var(--fast);
}
.hamburger:hover { background: var(--green); color: var(--white); }
.hamburger__icon { display: flex; flex-direction: column; gap: 4px; }
.hamburger__icon span {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.hamburger.open .hamburger__icon span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open .hamburger__icon span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open .hamburger__icon span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

.mobile-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,.99);
  border-top: 2px solid var(--green);
  padding: 1.25rem 1.5rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu__logo { display: flex; justify-content: center; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.mobile-menu__logo-img { height: 44px; width: auto; object-fit: contain; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .15rem; }
.mobile-link {
  display: block;
  padding: .7rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--fast), background var(--fast);
  letter-spacing: .02em;
}
.mobile-link:hover { color: var(--navy); background: var(--off-white); }
.mobile-menu__contacts { display: flex; flex-direction: column; gap: .6rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.mobile-menu__contacts a { font-size: .88rem; color: var(--text-muted); transition: color var(--fast); }
.mobile-menu__contacts a:hover { color: var(--navy); }
.mobile-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(37,211,102,.12);
  color: #25a244 !important;
  padding: .6rem 1rem; border-radius: 8px;
  font-weight: 600; width: fit-content;
  border: 1px solid rgba(37,211,102,.2);
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
  background:
    linear-gradient(rgba(18, 26, 33, 0), rgba(22, 30, 39, 0.498)),
    url('Img1.jpeg') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,43,58,.45);
  z-index: 0;
}
.hero__grid,
.hero__orb { display: none !important; }

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 5rem;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: none !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}
.hero__visual { display: none; }

.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--green-dim);
  border: 1px solid rgba(201,162,39,.2);
  color: var(--green);
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.8); } }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  
}
.hero__title-line         { display: block; }
.hero__title-line--accent { color: var(--green); white-space: nowrap; }
.hero__title-sub {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--text-muted);
  font-weight: 600;
  margin-top: .3rem;
}
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 460px;
  line-height: 1.75;
  margin: 0 auto 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero__stats { display: flex; align-items: center; gap: 1.5rem; justify-content: center; }
.stat { text-align: left; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat__unit   { font-size: 1.4rem; font-weight: 700; color: var(--green); }
.stat__label  { display: block; font-size: .75rem; color: var(--text-muted); margin-top: .2rem; letter-spacing: .04em; }
.stat__divider{ width: 1px; height: 40px; background: var(--border); }

.scroll-indicator {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-indicator__line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: .5rem;
  background: rgba(14,14,14,.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .65rem 1rem;
  font-size: .8rem; font-weight: 600;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}
.float-card svg   { width: 18px; height: 18px; }
.float-card--tl   { top: -16px; left: -16px; animation-delay: 0s; }
.float-card--br   { bottom: -16px; right: -16px; animation-delay: 2s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ════════════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--green);
  padding: .85rem 0;
  overflow: hidden;
}
.ticker__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker__track span {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--navy);
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker__dot { color: rgba(28,43,58,.5); }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.ticker--hero {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 3;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services {
  margin-top: -10px;
  padding-top: 2rem;
  padding-bottom: var(--section-gap);
  background: var(--white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 10px;
  background: linear-gradient(to bottom, transparent, var(--border));
}
.services .container    { text-align: center;  }
.services .section-desc { margin-inline: auto; margin-bottom: 3.5rem; }

/* ── Flip Grid ── */
.services__flip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* ── Flip Card Shell ── */
.flip-card {
  height: 400px;
  perspective: 1200px;
  cursor: pointer;
  width: calc(30% - 1.125rem);
  
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* Desktop hover — only on real pointer devices */
@media (hover: hover) {
  .flip-card:hover .flip-card__inner {
    transform: rotateY(180deg);
  }
}

/* Tap flip — all devices via JS .flipped class */
.flip-card.flipped .flip-card__inner {
  transform: rotateY(180deg);
}

/* Front & back */
.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Front */
.flip-card__front {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.flip-card__front .svc-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: visible;
  flex-shrink: 0;
}
.flip-card__front .svc-card__photo-inner {
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.flip-card__front .svc-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform .6s var(--ease);
}
@media (hover: hover) {
  .flip-card:hover .flip-card__front .svc-card__photo img {
    transform: scale(1.05);
  }
}
.flip-card__front .svc-card__badge {
  position: absolute;
  bottom: -22px; left: 16px;
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50% 50% 50% 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(201,162,39,.4);
  z-index: 3;
}
.flip-card__front .svc-card__badge svg { width: 22px; height: 22px; fill: white; }
.flip-card__front .svc-card__badge img { width: 22px; height: 22px; filter: brightness(0) invert(1); }

.flip-card__front-body {
  padding: 2rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .65rem;
}
.flip-card__front-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.15;
}
.flip-card__front-desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.flip-card__hint {
  font-size: .7rem;
  color: var(--green);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: auto;
  padding-top: .75rem;   /* 👈 KEY FIX */
  padding-bottom: .5rem; /* 👈 breathing space */

  opacity: 0.9;
}
.flip-card__hint::before {
  content: '';
  display: inline-block;
  width: 12px; height: 1.5px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}
/* Show correct hint text per device type */
.flip-card__hint-desktop { display: inline; }
.flip-card__hint-touch   { display: none; }
@media (hover: none) {
  .flip-card__hint-desktop { display: none; }
  .flip-card__hint-touch   { display: inline; }
}

/* Back */
.flip-card__back {
  background: var(--navy);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.25rem;
  gap: .75rem;
}
.flip-card__back-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.1;
  border-bottom: 1px solid rgba(201,162,39,.2);
  padding-bottom: .6rem;
}
.flip-card__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
  text-align: left;
}
.flip-card__list li {
  position: relative;
  font-size: .80rem;
  color: rgba(255,255,255,.82);
  padding-left: 1rem;
  line-height: 1.45;
}
.flip-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
}
.flip-card__list li b { color: var(--white); font-weight: 600; }

.flip-card__btn {
  display: inline-block;
  background: var(--green);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  padding: .65rem 1.25rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background var(--fast), transform var(--fast);
  text-decoration: none;
  width: 100%;
}
.flip-card__btn:hover { background: var(--green-dark); transform: translateY(-2px); color: var(--white); }

/* ── Tablet: 2×2 ── */
@media (max-width: 1024px) {
  .services__flip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .flip-card { width: calc(50% - 0.625rem); /* 2 columns accounting for gap */
    min-height: 480px;
    height: auto; }
  .flip-card__front .svc-card__photo { aspect-ratio: 16/8; }
  .flip-card__front-body { padding: 1.75rem 1.25rem 1.1rem; }
  .flip-card__back { padding: 1.35rem 1.35rem 1.1rem; gap: .65rem; }
}

/* ── Mobile: 1×4 ── */
@media (max-width: 640px) {
  .services {
    padding-top: 1.5rem;
    margin-top: -8px;
  }
  .services__flip-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .flip-card { min-height: 360px;
  height: auto;
width: 100%; }
  .flip-card__front .svc-card__photo { aspect-ratio: 16/7; }
  .flip-card__front-body { padding: 1.5rem 1rem 1rem; gap: .35rem; }
  .flip-card__front-title { font-size: 1rem; }
  .flip-card__front-desc  { font-size: .8rem; }
  .flip-card__hint        { font-size: .65rem; }
  .flip-card__back { padding: 1.1rem 1.1rem 1rem; gap: .55rem; }
  .flip-card__back-title  { font-size: 1rem; padding-bottom: .45rem; }
  .flip-card__list li     { font-size: .76rem; }
  .flip-card__btn         { font-size: .8rem; padding: .55rem 1rem; }
  .flip-card__front .svc-card__badge { width: 38px; height: 38px; bottom: -18px; left: 12px; }
  .flip-card__front .svc-card__badge svg,
  .flip-card__front .svc-card__badge img { width: 18px; height: 18px; }
}

/* ════════════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding-block: 5rem;
  background: url('Img2.jpg') center/cover no-repeat;
  overflow: hidden;
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,43,58,.82) 0%, rgba(28,43,58,.68) 100%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  max-width: 780px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.cta-banner__btn {
  display: inline-block;
  padding: .9rem 2.8rem;
  border: 2px solid var(--white);
  border-radius: 6px;
  background: transparent;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
}
.cta-banner__btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════ */
.why {
  position: relative;
  padding-block: var(--section-gap);
  overflow: hidden;
}
.why__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #080808 100%);
}
.why__bg::after {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.why__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why__features { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.5rem; }
.why__feature  { display: flex; gap: 1.25rem; align-items: flex-start; }
.why__feature-icon {
  width: 48px; height: 48px;
  background: var(--green-dim);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  transition: background var(--fast), transform var(--fast);
}
.why__feature:hover .why__feature-icon { background: rgba(201,162,39,.2); transform: scale(1.05); }
.why__feature-icon svg { width: 22px; height: 22px; }
.why__feature h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .35rem; }
.why__feature p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* Desktop collage */
.why__visual { position: relative; height: 560px; }
.why__frame { position: absolute; border-radius: 18px; pointer-events: none; }
.why__frame--1 { top: -20px; right: -20px; width: 55%; height: 42%; transform: rotate(2deg); }
.why__frame--2 { bottom: -20px; left: -20px; width: 52%; height: 40%; transform: rotate(-2deg); }
.why__img-main {
  position: absolute; top: 0; left: 0;
  width: 62%; height: 50%;
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 2;
}
.why__img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 56%; height: 46%;
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 3;
}
.why__img-tr {
  position: absolute; top: 0; right: 0;
  width: 34%; height: 42%;
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 1;
}
.why__img-bl {
  position: absolute; bottom: 0; left: 0;
  width: 34%; height: 42%;
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 1;
}
.why__img-main img,
.why__img-secondary img,
.why__img-tr img,
.why__img-bl img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.why__img-bottom {
  position: absolute;
  bottom: -180px; left: 0;
  width: 100%; height: 150px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 1;
}
.why__img-bottom img { width: 100%; height: 100%; object-fit: cover; object-position: center 80%; }
.why__cert-badge {
  position: absolute;
  top: 50%; left: 58%;
  transform: translate(-50%, -50%);
  background: var(--green);
  color: var(--navy);
  width: 78px; height: 78px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 800;
  text-align: center; text-transform: uppercase;
  letter-spacing: .05em; line-height: 1.3;
  box-shadow: 0 0 0 5px rgba(201,162,39,.25), 0 8px 24px rgba(201,162,39,.4);
  z-index: 5;
  animation: floatCard 3s ease-in-out infinite;
}
.why__cert-badge svg { margin-bottom: .15rem; }

/* ════════════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════════════ */
.process {
  padding-block: var(--section-gap);
  background: #eef0f3;
  text-align: center;
}
.process .section-title,
.process .section-label { text-align: center; display: block; }
.process .section-label  { margin-inline: auto; width: fit-content; }
.process .section-title  { margin-bottom: 3rem; color: var(--navy); }
.process__steps {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  max-width: 860px;
  margin-inline: auto;
}
.process__step {
  flex: 1;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
  transition: border-color var(--med), transform var(--med), box-shadow var(--med);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.process__step:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: 0 12px 36px rgba(201,162,39,.18); }
.process__step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--green);
  line-height: 1; margin-bottom: .5rem;
}
.process__step-icon {
  width: 60px; height: 60px;
  background: var(--green-dim);
  border: 2px solid rgba(201,162,39,.35);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green);
  transition: background var(--fast), transform var(--fast);
}
.process__step:hover .process__step-icon { background: var(--green); color: var(--white); transform: scale(1.08); }
.process__step-icon svg { width: 28px; height: 28px; }
.process__step h4 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  color: var(--navy); margin-bottom: .6rem; letter-spacing: .01em;
}
.process__step p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.process__connector {
  font-size: 1.75rem;
  color: var(--green);
  flex-shrink: 0;
  align-self: center;
  font-weight: 700;
  opacity: .7;
}

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact {
  padding-block: var(--section-gap);
  background: var(--off-white);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.contact__container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact__channels { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.contact__channel {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: border-color var(--fast), transform var(--fast), background var(--fast);
}
.contact__channel:hover        { border-color: rgba(201,162,39,.3); transform: translateX(4px); background: var(--off-white); }
.contact__channel--wa:hover    { border-color: #25D366; }
.contact__channel-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.contact__channel--wa .contact__channel-icon { color: #25D366; background: rgba(37,211,102,.1); }
.contact__channel-icon svg { width: 20px; height: 20px; }
.contact__channel--wa .contact__channel-icon svg { fill: #25D366; stroke: none; }
.contact__channel-label {
  display: block;
  font-size: .72rem; color: var(--text-muted);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem;
}
.contact__channel-value { display: block; font-size: .92rem; font-weight: 600; color: var(--navy); }
.contact__form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 1.75rem; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group  { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }
.optional { font-weight: 400; text-transform: none; opacity: .6; letter-spacing: 0; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(0,0,0,.03);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-family: var(--font-body);
  font-size: .92rem; color: var(--text);
  outline: none;
  transition: border-color var(--fast), background var(--fast), box-shadow var(--fast);
  -webkit-appearance: none; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,.3); }
.form-group select { color: var(--text-muted); cursor: pointer; }
.form-group select option { background: var(--white); color: var(--navy); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: rgba(201,162,39,.05);
  box-shadow: 0 0 0 3px rgba(201,162,39,.1);
}
.form-group input.invalid,
.form-group textarea.invalid { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,.1); }
.form-error { display: none; font-size: .77rem; color: #f87171; }
.form-group.show-error .form-error { display: block; }
.spin { animation: spin .7s linear infinite; }
.spin svg, .btn-arrow { width: 18px; height: 18px; }
.form-success {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.form-success[hidden] { display: none !important; }
.form-success svg     { width: 24px; height: 24px; flex-shrink: 0; }
.form-success strong  { display: block; font-size: .9rem; color: var(--green); margin-bottom: .15rem; }
.form-success span    { font-size: .82rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer { background: #0d1520; border-top: 3px solid var(--green); }
.footer__inner {
  display: grid;
  /* grid-template-columns: 1.8fr 1fr 1fr; */
  gap: 2.5rem;
  padding-block: 2.75rem;
  align-items: center;
  justify-content: center;
}
.footer__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer__brand .logo__img { height: 44px; margin-bottom: .85rem; }
.footer__brand p { font-size: .85rem; color: rgba(255,255,255,.45); max-width: 260px; line-height: 1.65; }
.footer__links h5,
.footer__contact h5 {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1rem;
}
.footer__links ul,
.footer__contact ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__links a,
.footer__contact li { font-size: .85rem; color: rgba(255,255,255,.45); transition: color var(--fast); }
.footer__links a:hover   { color: var(--green); }
.footer__contact a       { color: rgba(255,255,255,.45); transition: color var(--fast); }
.footer__contact a:hover { color: var(--green); }
.footer__links,
.footer__contact { align-self: start; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding-block: 1rem; }
.footer__bottom .container {
  display: flex;
  justify-content: center;
  font-size: .76rem;
  color: rgba(255,255,255,.4);
}

/* ════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, box-shadow .2s;
}
.wa-float.show { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-float svg  { width: 28px; height: 28px; fill: white; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.wa-float.show:hover { transform: scale(1.1); }
.wa-float__tooltip {
  position: absolute; right: 120%;
  background: rgba(14,14,14,.95);
  color: var(--white); font-size: .78rem; font-weight: 600;
  padding: .45rem .85rem; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--fast);
  border: 1px solid var(--border);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

@keyframes gridShift { 0% { transform: translate(0,0); } 100% { transform: translate(40px,40px); } }
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,40px) scale(1.05); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-30px); } }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    background:
      linear-gradient(rgba(18, 26, 33, 0), rgba(22, 30, 39, 0.498)),
      url('Img1.jpeg') center/cover no-repeat;
    min-height: 100dvh;
  }
  .hero__container { grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; padding-top: 3rem; }
  .hero__visual      { display: none; }
  .hero__content     { background: rgba(225, 207, 207, 0.04); border: 1px solid rgba(255,255,255,.06); max-width: 640px; }
  .hero__desc        { color: #ffffffdf; }
  .scroll-indicator  { display: none; }
  .why__container    { grid-template-columns: 1fr; gap: 3rem; }
  .contact__container{ grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner     { grid-template-columns: 1fr 1fr; }
  .footer__brand     { grid-column: 1 / -1; }
}

/* Why visual — tablet 2×2 grid */
@media (min-width: 769px) and (max-width: 1024px) {

  .why__visual {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    height: auto !important;
    position: static !important;
  }


  .why__img-main,
  .why__img-secondary {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important; 
    border-radius: 8px !important;
    overflow: hidden !important;
    display: block !important;
    transform: none !important;
    z-index: auto !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* ❌ HIDE EXTRA IMAGES */
  .why__img-tr,
  .why__img-bl,
  .why__img-bottom,
  .why__frame,
  .why__cert-badge {
    display: none !important;
  }

  /* ORDER */
  .why__img-main      { order: 1; }
  .why__img-secondary { order: 2; }

  /* ✅ PERFECT IMAGE FIT */
  .why__img-main img,
  .why__img-secondary img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;   /* looks premium now */
    object-position: center !important;
    display: block !important;
  }

  /* FOOTER (unchanged from yours) */
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
  }

  .footer__links h5,
  .footer__contact h5 {
    font-size: .75rem;
    margin-bottom: .4rem;
  }

  .footer__links a,
  .footer__contact a,
  .footer__contact li {
    font-size: .8rem;
    line-height: 1.5;
    color: rgba(255,255,255,.75);
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 768px
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-gap: 4rem; }
  .nav, .header__actions { display: none; }
  .hamburger { display: flex; align-items: center; }
  .header__inner { height: 64px; }
  .hero { min-height: 100svh; padding-top: 70px; padding-bottom: 0; flex-direction: column; justify-content: space-between; }
  .hero__container  { padding-block: 3rem; }
  .hero__title      { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero__stats      { gap: 1rem; }
  .stat__num        { font-size: 1.6rem; }
  .ticker--hero     { position: relative; margin-top: auto; }
  .scroll-indicator { bottom: 70px; }

  /* Why — 2 images side by side */
  .why__visual {
    height: auto !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px;
    gap: .6rem;
  }
  .why__img-main      { display: block; order: 1; }
  .why__img-secondary { display: block; order: 2; }
  .why__img-tr,
  .why__img-bl        { display: none; }
  .why__frame,
  .why__img-bottom,
  .why__cert-badge    { display: none; }
  .why__img-main,
  .why__img-secondary {
    position: static;
    width: 100%; height: 100%;
    border-radius: 10px; overflow: hidden;
  }
  .why__img-main img,
  .why__img-secondary img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

  /* Process */
  .process__steps {
    display: flex; flex-direction: column;
    gap: .8rem; position: relative;
    padding-left: 14px; align-items: center;
  }
  .process__steps::before {
    content: '';
    position: absolute;
    left: 5px; top: 0; bottom: 0;
    width: 2px;
    background: rgba(201,162,39,.25);
  }
  .process__step {
    display: flex; align-items: flex-start; gap: .75rem;
    padding: .7rem .9rem; border-radius: 10px;
    background: #ffffff; box-shadow: 0 3px 10px rgba(0,0,0,.035);
    text-align: left; position: relative;
  }
  .process__step:first-child { border: 1.2px solid rgba(201,162,39,.5); }
  .process__step-num {
    position: absolute; left: -7px; top: 12px;
    width: 18px; height: 18px;
    background: var(--green); color: #fff;
    font-size: .6rem; font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .process__step-icon { width: 32px; height: 32px; flex-shrink: 0; opacity: .85; }
  .process__step-icon svg { transform: scale(.9); }
  .process__step > div:last-child { display: flex; flex-direction: column; }
  .process__step h4 { font-weight: 600; font-size: .88rem; color: var(--navy); letter-spacing: .2px; margin-bottom: 2px; white-space: nowrap; }
  .process__step p  { font-size: .80rem; line-height: 1.35; color: #7a8a9a; margin: 0; }
  .process__connector { display: none; }

  /* Contact */
  .form-row           { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 1.5rem; }

  /* Footer */
  .footer { padding: 1.8rem 1.2rem; }
  .footer__inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand  { grid-column: auto; }
  .footer__grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer__bottom { margin-top: 1rem; padding-top: .6rem; font-size: .7rem; text-align: center; }
  .footer__bottom .container { flex-direction: column; gap: .5rem; text-align: center; }
  .footer__bottom p { margin: .2rem 0; }
  .footer h4  { font-size: .75rem; margin-bottom: .4rem; letter-spacing: .08em; color: var(--green); }
  .footer a   { font-size: .78rem; line-height: 1.4; color: rgba(255,255,255,.75); }
  .footer p   { font-size: .78rem; line-height: 1.4; color: rgba(255,255,255,.75); }

  .wa-float     { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Small ≤ 480px
════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__actions   { flex-direction: column; align-items: flex-start; }
  .hero__stats     { flex-wrap: wrap; gap: 1rem; }
  .stat__divider   { display: none; }
  .ticker__track span { font-size: .82rem; }
}

@media (hover: none) {
  .flip-card__hint {
    font-size: .75rem;
    padding-top: 1rem;
    padding-bottom: .6rem;
  }
}
/* tablet */
@media (max-width: 820px) {
  .flip-card {
    min-height: 400px;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {

  /* RESET EVERYTHING FIRST */
  .why__visual * {
    all: unset;
  }

  /* REBUILD CLEAN */
  .why__visual {
    display: flex !important;
    gap: 1rem;
  }

  /* ONLY 2 IMAGES */
  .why__img-main,
  .why__img-secondary {
    display: block !important;
    width: 50% !important;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
  }

  /* HIDE OTHERS */
  .why__img-tr,
  .why__img-bl,
  .why__img-bottom,
  .why__frame,
  .why__cert-badge {
    display: none !important;
  }

  /* IMAGE FIT */
  .why__img-main img,
  .why__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}
@media (min-width: 769px) and (max-width: 1024px) {

  .why__visual {
    display: none !important;
  }

}
@media (min-width: 768px) and (max-width: 1024px) {

  .why__visual {
    display: none !important;
  }

}
@media (min-width: 540px) and (max-width: 720px) {

  .why__visual {
    display: none !important;
  }

}

/* ===== FOOTER CENTER FIX ===== */

.footer {
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers horizontally */
  justify-content: center;
  gap: 0.6rem;
}

/* Logo center */
.footer .logo,
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text center */
.footer p,
.footer__text,
.footer__copyright {
  text-align: center;
}

/* If logo + text are in same row earlier → force column */
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}