/* =====================================================
   ABOUT.CSS — Sukrish SteelVridhi | Redesigned
   Matches the premium visual language of the
   Products & Services pages — gold/charcoal palette,
   scroll reveals, 3D tilts, glass surfaces, shimmer.
   Font: Playfair Display + Inter | Full Width
   ===================================================== */

/* =====================================================
   0. FULL-BLEED SAFETY NET
===================================================== */
html, body {
  overflow-x: hidden;
}

/* =====================================================
   1. ROOT VARIABLES
===================================================== */
:root {
  --gold: #d0a03a;
  --gold-2: #f3c85f;
  --gold-dark: #b8892a;
  --gold-light: #f5d98c;
  --charcoal: #141414;
  --dark-gray: #1a1a1a;
  --light-gray: #f5f5f2;
  --card-radius: 20px;
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --shadow-gold: 0 20px 60px rgba(208, 160, 58, 0.15);
}

/* =====================================================
   2. SHARED EYEBROW
===================================================== */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 34px;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
}

.eyebrow.dark { color: var(--gold-dark); }

.section-head.text-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 46px;
}

.section-head.text-center .eyebrow {
  padding-left: 0;
}

.section-head.text-center .eyebrow::before {
  left: 50%;
  transform: translate(-50%, -50%);
  top: -14px;
  width: 40px;
}

.section-head.text-center p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  margin-top: 6px;
  position: relative;
  display: inline-block;
}

.section-head.text-center p::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 3px;
}

.about-section > .wrap,
.testimonials-section > .wrap {
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 3%;
}

/* =====================================================
   3. PAGE BANNER
===================================================== */
.banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #141414, #1d1812, #141414, #12181f);
  background-size: 300% 300%;
  animation: aboutBgShift 16s ease infinite;
  color: #fff;
  padding: 210px 0 100px;
  width: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
}

@keyframes aboutBgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.banner-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: 0;
  animation: aboutGridMove 20s linear infinite;
}

@keyframes aboutGridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(46px, 46px); }
}

.banner-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: aboutGlowPulse 6s ease-in-out infinite;
}

.banner-glow--1 {
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(208,160,58,.20), transparent 70%);
}

.banner-glow--2 {
  bottom: -200px;
  left: -150px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(243,200,95,.14), transparent 70%);
  animation-delay: 2s;
}

@keyframes aboutGlowPulse {
  0%, 100% { opacity: .7; transform: scale(1) rotate(0deg); }
  50%      { opacity: 1;  transform: scale(1.12) rotate(5deg); }
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3%;
  animation: aboutContentRise 1s var(--transition-smooth) forwards;
}

@keyframes aboutContentRise {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.banner-crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #cfcfcf;
  margin-bottom: 18px;
  font-weight: 600;
}

.banner-crumb a { color: #cfcfcf; transition: .3s; text-decoration: none; position: relative; }
.banner-crumb a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-2);
  transition: width .3s var(--transition-smooth);
}
.banner-crumb a:hover { color: var(--gold-2); }
.banner-crumb a:hover::after { width: 100%; }
.banner-crumb i { opacity: .5; font-style: normal; }
.banner-crumb b { color: var(--gold-2); font-weight: 800; }

.banner .eyebrow {
  color: var(--gold-2);
  padding-left: 34px;
}

.banner .eyebrow::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.banner h1 {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.16;
  font-weight: 900;
  margin: 4px 0 20px;
  color: #fff;
}

.banner h1 span {
  color: var(--gold-2);
  position: relative;
  display: inline-block;
}

.banner h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  animation: aboutUnderlineReveal 1.2s var(--transition-bounce) 0.5s forwards;
}

@keyframes aboutUnderlineReveal {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.banner p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #d7d7d7;
  max-width: 620px;
  margin: 0;
  opacity: 0;
  animation: aboutFadeSlideUp 1s var(--transition-smooth) 0.3s forwards;
}

@keyframes aboutFadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   4. ABOUT SECTION WRAPPER
===================================================== */
.about-section {
  width: 100%;
  padding: 90px 0 20px;
  background: linear-gradient(180deg, #fff, #f5f5f2);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -18%;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,160,58,.04), transparent 70%);
  pointer-events: none;
  animation: aboutFloatBg 22s ease-in-out infinite;
}

@keyframes aboutFloatBg {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

/* =====================================================
   5. ABOUT SHOWCASE
===================================================== */
.about-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.about-left {
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}

.about-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.about-main-image {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20,20,20,.16);
  isolation: isolate;
}

.about-main-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(140deg, transparent 45%, rgba(255,255,255,.35) 50%, transparent 55%);
  background-size: 250% 250%;
  background-position: 200% 0;
  transition: background-position 1.1s var(--transition-smooth);
  pointer-events: none;
}

.about-showcase:hover .about-main-image::before {
  background-position: -50% 100%;
}

.about-main-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--transition-smooth);
}

.about-main-image:hover img {
  transform: scale(1.06);
}

.experience-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: 3;
  background: linear-gradient(135deg, var(--charcoal), #262119);
  color: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  width: 165px;
  text-align: center;
  box-shadow: var(--shadow-gold), 0 25px 50px rgba(0,0,0,.25);
  border: 1px solid rgba(208,160,58,.35);
  animation: expCardFloat 4.5s ease-in-out infinite;
}

@keyframes expCardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.experience-card i {
  font-size: 1.7rem;
  color: var(--gold-2);
  margin-bottom: 8px;
  display: inline-block;
  transition: transform .5s var(--transition-bounce);
}

.experience-card:hover i {
  transform: scale(1.2) rotate(-10deg);
}

.experience-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  margin: 0 0 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experience-card span {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #d7d7d7;
  font-weight: 600;
}

.about-small-card {
  position: absolute;
  top: -34px;
  right: -28px;
  width: 150px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
  border: 5px solid #fff;
  transform: rotate(6deg);
  transition: transform .6s var(--transition-bounce);
  z-index: 3;
}

.about-showcase:hover .about-small-card {
  transform: rotate(0deg) scale(1.04);
}

.about-small-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.about-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--transition-smooth) .1s, transform 0.9s var(--transition-smooth) .1s;
}

.about-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.about-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  line-height: 1.24;
  margin-bottom: 20px;
}

.about-right p {
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  line-height: 1.85;
  color: #5b5b5b;
  margin-bottom: 16px;
}

.about-feature-list {
  list-style: none;
  margin: 10px 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.about-feature-list li {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: #333;
}

/* ---- Counter row ---- */
.about-counter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 34px;
}

.about-counter .counter-box {
  background: #fff;
  border: 1px solid #ece6da;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .5s var(--transition-smooth);
}

.counter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--transition-smooth);
}

.counter-box:hover::before { transform: scaleX(1); }

.counter-box:hover {
  transform: translateY(-8px);
  border-color: rgba(208,160,58,.35);
  box-shadow: 0 20px 45px rgba(208,160,58,.14);
}

.counter-box i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: inline-block;
  transition: transform .5s var(--transition-bounce);
}

.counter-box:hover i {
  transform: scale(1.18) rotate(-8deg);
  color: var(--gold-dark);
}

.counter-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 4px;
}

.counter-box span {
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #777;
  font-weight: 700;
}

/* ---- CTA button ---- */
.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #16130a;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(208,160,58,.3);
  transition: all .5s var(--transition-smooth);
}

.discover-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-25deg);
  transition: left .7s var(--transition-smooth);
}

.discover-btn:hover::before { left: 125%; }

.discover-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 55px rgba(208,160,58,.42);
}

.discover-btn i {
  transition: transform .4s var(--transition-smooth);
}

.discover-btn:hover i {
  transform: translateX(6px);
}

/* =====================================================
   6. WHAT WE OFFER
===================================================== */
.offer-section {
  width: 100%;
  padding: 30px 0 90px;
  position: relative;
  z-index: 1;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offer-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  cursor: pointer;
  transition: all .6s var(--transition-smooth);
  opacity: 0;
  transform: translateY(45px) scale(.96);
  animation: offerCardReveal .8s var(--transition-bounce) forwards;
  animation-delay: calc(var(--i, 0) * .08s);
}

.offer-card:nth-child(1) { --i: 0; }
.offer-card:nth-child(2) { --i: 1; }
.offer-card:nth-child(3) { --i: 2; }
.offer-card:nth-child(4) { --i: 3; }
.offer-card:nth-child(5) { --i: 4; }
.offer-card:nth-child(6) { --i: 5; }
.offer-card:nth-child(7) { --i: 6; }
.offer-card:nth-child(8) { --i: 7; }
.offer-card:nth-child(9) { --i: 8; }

@keyframes offerCardReveal {
  from { opacity: 0; transform: translateY(45px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: calc(var(--card-radius) + 2px);
  background: linear-gradient(135deg, transparent 40%, rgba(208,160,58,.35) 50%, transparent 60%);
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity .5s var(--transition-smooth);
  animation: offerBorderShimmer 4s ease-in-out infinite;
}

@keyframes offerBorderShimmer {
  0% { background-position: -300% 0; }
  100% { background-position: 300% 0; }
}

.offer-card:hover::before { opacity: 1; }

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--transition-smooth), filter .6s var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.offer-card:hover img {
  transform: scale(1.12);
  filter: brightness(.55) saturate(1.1);
}

.offer-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 30px 65px rgba(0,0,0,.2), 0 0 35px rgba(208,160,58,.12);
}

.offer-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  z-index: 2;
  color: #d8b767;
  transition: opacity .4s var(--transition-smooth), transform .4s var(--transition-smooth);
}

.offer-name h4 {
  color: #d8b767;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-card:hover .offer-name {
  opacity: 0;
  transform: translateY(10px);
}

.offer-text {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  z-index: 3;
  transition: opacity .4s var(--transition-smooth);
}

.offer-text p {
  color: #fff;
  text-align: center;
  margin: 0;
  line-height: 1.7;
  transform: translateY(14px);
  transition: transform .5s var(--transition-smooth) .05s;
}

.offer-card:hover .offer-text {
  opacity: 1;
}

.offer-card:hover .offer-text p {
  transform: translateY(0);
}

/* =====================================================
   7. STATS STRIP
===================================================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 10px 0 60px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: linear-gradient(160deg, #fff, #fbf8f1);
  border: 1px solid #ece6da;
  border-radius: var(--card-radius);
  padding: 30px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: all .6s var(--transition-smooth);
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(208,160,58,.07), transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--transition-smooth);
  pointer-events: none;
}

.stat-card:hover::after { opacity: 1; }

.stat-card:hover {
  transform: translateY(-9px);
  border-color: rgba(208,160,58,.35);
  box-shadow: 0 25px 55px rgba(208,160,58,.14);
}

.stat-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(208,160,58,.14), rgba(243,200,95,.14));
  border: 1px solid rgba(208,160,58,.3);
  color: var(--gold);
  font-size: 1.3rem;
  transition: all .6s var(--transition-bounce);
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #16130a;
  transform: scale(1.14) rotate(-8deg);
  box-shadow: 0 12px 34px rgba(208,160,58,.4);
}

.stat-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 2px;
}

.stat-content p {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: #666;
  margin: 0;
}

/* =====================================================
   8. CEO / FOUNDER SECTION
===================================================== */
.ceo-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 54px;
  align-items: center;
  border-radius: 28px;
  padding: 54px;
  margin-bottom: 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.06);
}

.ceo-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,160,58,.15), transparent 70%);
  pointer-events: none;
  animation: aboutFloatBg 18s ease-in-out infinite reverse;
}

.ceo-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}

.ceo-photo::before {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2), var(--gold));
  background-size: 200% 200%;
  animation: ceoBorderRotate 5s linear infinite;
}

@keyframes ceoBorderRotate {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

.ceo-photo img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  transition: transform .8s var(--transition-smooth);
}

.ceo-section:hover .ceo-photo img {
  transform: scale(1.05);
}

.ceo-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #171310;
  margin-bottom: 6px;
}

.ceo-role {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ceo-info p {
  font-family: 'Inter', sans-serif;
  font-size: .96rem;
  line-height: 1.85;
  color: #46402f;
  margin-bottom: 22px;
}

.ceo-quote {
  position: relative;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 22px 26px 22px 30px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.08rem;
  font-weight: 600;
  color: #241f13;
  line-height: 1.6;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .5s var(--transition-smooth);
}

.ceo-section:hover .ceo-quote {
  transform: translateX(6px);
}

/* =====================================================
   9. MISSION / VISION TOGGLE
===================================================== */
.mission-vision-section {
  padding: 20px 0 90px;
  position: relative;
  z-index: 1;
}

.mv-switch {
  position: relative;
  display: inline-flex;
  margin: 0 auto 46px;
  padding: 6px;
  background: #fff;
  border: 1px solid #ece6da;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  left: 50%;
  transform: translateX(-50%);
}

.mv-pill {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50px;
  transition: transform .5s var(--transition-bounce);
  box-shadow: 0 8px 22px rgba(208,160,58,.35);
  z-index: 0;
}

.mv-switch.is-vision .mv-pill {
  transform: translateX(100%);
}

.mv-switch button {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #444;
  padding: 13px 34px;
  cursor: pointer;
  transition: color .4s var(--transition-smooth);
  white-space: nowrap;
}

.mv-switch button.active {
  color: #16130a;
}

.mv-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  background: linear-gradient(160deg, #fff, #fbf8f1);
  border: 1px solid #ece6da;
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}

.mv-stage::before {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,160,58,.08), transparent 70%);
  pointer-events: none;
  transition: background .6s var(--transition-smooth);
}

.mv-stage.is-vision::before {
  background: radial-gradient(circle, rgba(243,200,95,.12), transparent 70%);
}

.mv-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,.14);
}

.mv-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  animation: mvImgFade .6s var(--transition-smooth);
}

@keyframes mvImgFade {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

.mv-content {
  position: relative;
  animation: mvContentFade .55s var(--transition-smooth);
}

@keyframes mvContentFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mv-content > span {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.mv-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #171310;
  line-height: 1.26;
  margin-bottom: 16px;
}

.mv-content p {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  line-height: 1.8;
  color: #504a39;
  margin-bottom: 22px;
}

.mv-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.mv-content ul li {
  position: relative;
  padding-left: 26px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #2c2717;
}

.mv-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #16130a;
  font-size: .62rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   10. SCROLL REVEAL ANIMATIONS
===================================================== */
.anim-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s var(--transition-smooth), transform .8s var(--transition-smooth);
}

.anim-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s var(--transition-smooth), transform .8s var(--transition-smooth);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   11. RESPONSIVE BREAKPOINTS
===================================================== */

/* 1200px */
@media (max-width: 1200px) {
  .about-showcase { grid-template-columns: 1fr; gap: 90px 0; }
  .about-left { max-width: 480px; margin: 0 auto; }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .ceo-section { grid-template-columns: 1fr; padding: 44px; }
  .ceo-photo img { height: 300px; }
  .mv-stage { grid-template-columns: 1fr; padding: 40px; gap: 34px; }
  .mv-image img { height: 280px; }
}

/* 1024px */
@media (max-width: 1024px) {
  .banner { padding: 180px 0 80px; min-height: 420px; }
  .about-section { padding: 70px 0 10px; }
  .about-main-image img { height: 400px; }
  .offer-card { height: 270px; }
}

/* 992px */
@media (max-width: 992px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-counter { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-feature-list { grid-template-columns: 1fr; }
}

/* 768px */
@media (max-width: 768px) {
  .banner { padding: 160px 0 70px; min-height: 380px; }
  .banner p { font-size: .93rem; }

  .about-section { padding: 60px 0 10px; }
  .about-showcase { margin-bottom: 80px; gap: 70px 0; }
  .about-left { max-width: 420px; }
  .about-main-image img { height: 340px; }
  .experience-card { width: 140px; padding: 20px 16px; left: -16px; bottom: -22px; }
  .experience-card h3 { font-size: 1.5rem; }
  .about-small-card { width: 120px; top: -22px; right: -14px; }
  .about-small-card img { height: 90px; }

  .about-counter { grid-template-columns: 1fr 1fr; }
  .counter-box { padding: 18px 12px; }

  .offer-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .offer-card { height: 240px; }

  .stats-strip { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-card { padding: 22px 16px; gap: 14px; }
  .stat-icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .stat-content h3 { font-size: 1.25rem; }

  .ceo-section { padding: 34px 24px; border-radius: 22px; }
  .ceo-photo img { height: 260px; }
  .ceo-quote { font-size: 1rem; padding: 18px 20px 18px 24px; }

  .mv-switch { padding: 5px; }
  .mv-switch button { padding: 11px 22px; font-size: .8rem; }
  .mv-stage { padding: 30px 22px; border-radius: 22px; }
  .mv-image img { height: 230px; }
  .mv-content ul { grid-template-columns: 1fr; }
}

/* 640px */
@media (max-width: 640px) {
  .about-counter { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .counter-box h3 { font-size: 1.25rem; }
  .counter-box span { font-size: .66rem; }

  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card { height: 210px; }

  .stats-strip { grid-template-columns: 1fr; }

  .discover-btn { width: 100%; justify-content: center; }
}

/* 480px */
@media (max-width: 480px) {
  .banner { padding: 150px 0 60px; min-height: 360px; }
  .banner h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .banner-crumb { font-size: .72rem; }
  .banner .wrap, .banner-content { padding: 0 4%; }

  .about-section { padding: 50px 0 10px; }
  .about-showcase { margin-bottom: 60px; }
  .about-left { max-width: 320px; }
  .about-main-image img { height: 280px; }
  .experience-card { width: 120px; padding: 16px 12px; left: -10px; bottom: -18px; }
  .experience-card i { font-size: 1.3rem; }
  .experience-card h3 { font-size: 1.25rem; }
  .experience-card span { font-size: .64rem; }
  .about-small-card { display: none; }

  .about-right h2 { font-size: 1.6rem; }
  .about-counter { grid-template-columns: 1fr 1fr; }

  .offer-section { padding: 20px 0 60px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { height: 220px; }

  .ceo-section { padding: 26px 18px; margin-bottom: 50px; }
  .ceo-photo img { height: 220px; }
  .ceo-info h2 { font-size: 1.5rem; }
  .ceo-quote { font-size: .92rem; }

  .mission-vision-section { padding: 10px 0 60px; }
  .mv-switch { width: 100%; max-width: 320px; }
  .mv-switch button { flex: 1; padding: 11px 14px; font-size: .74rem; }
  .mv-image img { height: 200px; }
  .mv-content h2 { font-size: 1.4rem; }
}

/* 375px */
@media (max-width: 375px) {
  .banner h1 { font-size: 1.55rem; }
  .banner p { font-size: .88rem; }
  .about-right h2 { font-size: 1.4rem; }
  .counter-box h3 { font-size: 1.1rem; }
  .stat-content h3 { font-size: 1.1rem; }
  .ceo-info h2 { font-size: 1.3rem; }
  .mv-content h2 { font-size: 1.25rem; }
}

/* 320px */
@media (max-width: 320px) {
  .about-counter { grid-template-columns: 1fr 1fr; gap: 8px; }
  .counter-box { padding: 14px 8px; }
  .offer-card { height: 190px; }
  .stat-card { padding: 18px 12px; gap: 10px; }
  .ceo-section { padding: 20px 14px; }
  .mv-stage { padding: 22px 14px; }
}

/* =====================================================
   12. REDUCED MOTION
===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}