/* ============================================================
   SYSNOT Master Theme — sections.css
   Section-specific Styles for All Page Sections
   ============================================================ */


/* ==========================================================================
   1. HERO SPLIT
   ========================================================================== */

.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
}

/* ---- Left column ---- */

.hero-l {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 130px 4% 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--brd);
  position: relative;
  z-index: 3;
}

/* ---- Right column ---- */

.hero-r {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}

/* ---- Pill badge ---- */

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem 1rem;
  background: rgba(123, 94, 167, .1);
  border: 1px solid rgba(123, 94, 167, .3);
  border-radius: var(--radius-full);
  font-family: var(--body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--a1);
  animation: fu .7s var(--e1) both;
  margin-bottom: 1.5rem;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--a3);
  animation: blink 2s infinite;
  flex-shrink: 0;
}

/* ---- Hero H1 ---- */

.hero-h1 {
  font-family: var(--head);
  font-size: clamp(5.5rem, 10vw, 11rem);
  line-height: .88;
  letter-spacing: .02em;
  color: var(--txt);
}

.hero-h1 .ln {
  display: block;
  overflow: hidden;
}

.hero-h1 .w {
  display: inline-block;
  animation: wup .9s var(--e1) both;
}

.hero-h1 .w:nth-child(1) { animation-delay: 0s; }
.hero-h1 .ln:nth-child(2) .w { animation-delay: .12s; }
.hero-h1 .ln:nth-child(3) .w { animation-delay: .24s; }

.hero-h1 .w.outline {
  -webkit-text-stroke: 2px var(--a1);
  color: transparent;
}

/* ---- Bottom area ---- */

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fu 1s var(--e1) .4s both;
}

.hero-sub {
  font-size: 1rem;
  color: var(--mut);
  max-width: 380px;
  line-height: 1.85;
}

.hero-sub strong {
  color: var(--txt);
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Photo ---- */

.hero-photo {
  position: absolute;
  inset: 0;
  background: #0a0a18;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.1) saturate(.85);
  transition: transform 10s var(--e1);
}

.hero-photo:hover img {
  transform: scale(1.06);
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 4, 10, .6) 0%, transparent 50%),
    linear-gradient(0deg, rgba(4, 4, 10, .7) 0%, transparent 40%);
  pointer-events: none;
}

[data-theme="light"] .hero-photo::before {
  background:
    linear-gradient(90deg, rgba(245, 244, 255, .5) 0%, transparent 50%),
    linear-gradient(0deg, rgba(245, 244, 255, .6) 0%, transparent 40%);
}

/* ---- Photo info ---- */

.hero-photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hpi-name {
  font-family: var(--head);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: .02em;
}

.hpi-role {
  font-size: .68rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hpi-tag {
  display: inline-block;
  padding: .25rem .8rem;
  border-radius: var(--radius-full);
  background: rgba(0, 229, 180, .15);
  color: var(--a3);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---- Blend title ---- */

.hero-blend-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  font-family: var(--head);
  font-size: clamp(6rem, 12vw, 13rem);
  color: #fff;
  mix-blend-mode: overlay;
  opacity: .9;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .02em;
  left: 5%;
}

/* ---- Floating cards ---- */

.hfc {
  position: absolute;
  z-index: 5;
  background: rgba(4, 4, 10, .82);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(123, 94, 167, .35);
  border-radius: var(--radius-sm);
  padding: .9rem 1.3rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.hfc1 {
  bottom: 8rem;
  right: 2rem;
  animation: float 7s ease-in-out infinite;
}

.hfc2 {
  top: 7rem;
  right: 2rem;
  animation: float 5s ease-in-out infinite reverse;
}

.hfc-val {
  font-family: var(--head);
  font-size: 1.7rem;
  color: var(--a3);
  letter-spacing: .02em;
  line-height: 1;
}

.hfc-val.pu {
  color: var(--a1);
}

.hfc-lbl {
  font-size: .65rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ---- Scroll indicator ---- */

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.hs-lbl {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mut);
}

.hs-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--a1), transparent);
  animation: sdown 2.5s var(--e1) infinite;
}


/* ==========================================================================
   2. HERO FULLBLEED
   ========================================================================== */

.hero-fullbleed {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-fb-bg {
  position: absolute;
  inset: 0;
}

.hero-fb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(.85);
}

.hero-fb-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 4, 10, calc(var(--overlay-opacity, .6) + .15)) 0%,
    rgba(4, 4, 10, var(--overlay-opacity, .6)) 50%,
    rgba(4, 4, 10, calc(var(--overlay-opacity, .6) - .1)) 100%
  );
  z-index: 1;
  pointer-events: none;
}

[data-theme="light"] .hero-fb-bg::before {
  background: linear-gradient(
    to right,
    rgba(245, 244, 255, calc(var(--overlay-opacity, .6) + .15)) 0%,
    rgba(245, 244, 255, var(--overlay-opacity, .6)) 50%,
    rgba(245, 244, 255, calc(var(--overlay-opacity, .6) - .1)) 100%
  );
}

.hero-fb-content {
  position: relative;
  z-index: 3;
  padding: 0 5%;
  max-width: 700px;
}

.hero-fb--center .hero-fb-content {
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
}

.hero-fb--center .hero-btns {
  justify-content: center;
}

.hero-fb--center .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
}

.hero-stars {
  color: var(--a4);
  font-size: 1.2rem;
  letter-spacing: .1em;
}

.hero-rating-count {
  font-size: .8rem;
  color: var(--mut);
}


/* ==========================================================================
   3. HERO VIDEO
   ========================================================================== */

.hero-video {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-vid-bg {
  position: absolute;
  inset: 0;
}

.hero-vid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 4, 10, calc(var(--overlay-opacity, .5) + .1)) 0%,
    rgba(4, 4, 10, var(--overlay-opacity, .5)) 50%,
    rgba(4, 4, 10, calc(var(--overlay-opacity, .5) + .15)) 100%
  );
  z-index: 1;
  pointer-events: none;
}

[data-theme="light"] .hero-vid-bg::before {
  background: linear-gradient(
    to bottom,
    rgba(245, 244, 255, calc(var(--overlay-opacity, .5) + .1)) 0%,
    rgba(245, 244, 255, var(--overlay-opacity, .5)) 50%,
    rgba(245, 244, 255, calc(var(--overlay-opacity, .5) + .15)) 100%
  );
}

.hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vid-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-vid-content {
  position: relative;
  z-index: 3;
  padding: 0 5%;
  max-width: 700px;
}

.hero-vid-content .hero-sub {
  margin-top: 1.5rem;
}

.hero-vid-content .hero-btns {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .hero-vid {
    display: none;
  }

  .hero-vid-fallback {
    display: block;
  }
}


/* ==========================================================================
   4. TICKER
   ========================================================================== */

.ticker {
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
  background: var(--bg2);
}

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

.tk-track:hover {
  animation-play-state: paused;
}

.tk-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: var(--head);
  font-size: 1rem;
  color: var(--mut);
  letter-spacing: .1em;
  transition: color .3s var(--e1);
}

.tk-item:hover {
  color: var(--a1);
}

.tk-sep {
  color: var(--a1);
  opacity: .4;
  font-size: 1.2rem;
}


/* ==========================================================================
   5. EDITORIAL BAND
   ========================================================================== */

.editorial-band {
  overflow: hidden;
  padding: 2rem 0;
  border-bottom: 1px solid var(--brd);
  background: var(--sur);
  white-space: nowrap;
}

.ed-track {
  display: inline-flex;
  align-items: center;
  animation: tk 40s linear infinite;
  font-family: var(--head);
  font-size: 1.1rem;
  color: var(--mut);
  letter-spacing: .05em;
}

.ed-item {
  padding: 0 2.5rem;
  border-right: 1px solid var(--brd);
  white-space: nowrap;
}

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

.ed-bold strong,
.ed-item strong {
  color: var(--a1);
}


/* ==========================================================================
   6. CLIENTS
   ========================================================================== */

.section-clients {
  padding: 4.5rem 5%;
  background: var(--bg2);
  border-bottom: 1px solid var(--brd);
}

.section-clients .slbl {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.cl-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem 5rem;
}

.cl-item {
  opacity: .25;
  filter: grayscale(1);
  transition: all .5s var(--e1);
}

.cl-item:hover {
  opacity: .95;
  filter: grayscale(0);
  transform: scale(1.1);
}

.cl-item img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}


/* ==========================================================================
   7. SERVICES
   ========================================================================== */

.section-services {
  padding: 10rem 0;
  overflow: hidden;
  position: relative;
}

.s-pad {
  padding: 0 5%;
}

.s-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
}

.s-hd--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s-hd--center .stitle {
  text-align: center;
}

.sv-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 5% 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}

.sv-track::-webkit-scrollbar {
  display: none;
}

.sv-track.dragging {
  cursor: grabbing;
}

.sv-track.dragging a {
  pointer-events: none;
}

.sv {
  flex: 0 0 300px;
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.sv-thumb {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.sv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: transform .6s var(--e1), filter .6s var(--e1);
}

.sv:hover .sv-thumb img {
  transform: scale(1.08);
  filter: grayscale(0);
}

.sv-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--sur), transparent);
  pointer-events: none;
}

.sv-body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

/* Radial hover glow */
.sv::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(123, 94, 167, .08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .45s var(--e1);
  pointer-events: none;
  z-index: 1;
}

.sv:hover::before {
  opacity: 1;
}

.sv:hover {
  transform: translateY(-12px) rotate(-.3deg);
  border-color: rgba(123, 94, 167, .4);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
}

[data-theme="light"] .sv:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, .1);
}

/* Bottom accent line */
.sv::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--e1);
  z-index: 2;
}

.sv:hover::after {
  transform: scaleX(1);
}

.sv-n {
  font-family: var(--head);
  font-size: .7rem;
  color: var(--a1);
  opacity: .4;
  letter-spacing: .15em;
}

.sv-title {
  font-family: var(--head);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--txt);
  letter-spacing: .01em;
}

.sv-desc {
  font-size: .86rem;
  color: var(--mut);
  line-height: 1.7;
}

.sv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .3rem;
}

.sv-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  background: rgba(123, 94, 167, .08);
  border: 1px solid rgba(123, 94, 167, .2);
  color: var(--mut);
  white-space: nowrap;
}

.sv-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--a1);
  margin-top: .5rem;
  transition: gap .35s var(--e1);
}

.sv-cta svg {
  transition: transform .35s var(--e1);
}

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


/* ==========================================================================
   8. NUMBERS
   ========================================================================== */

.section-numbers {
  padding: 10rem 5%;
  position: relative;
  overflow: hidden;
}

.num-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--head);
  font-size: 30vw;
  color: rgba(123, 94, 167, .03);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--brd);
  border-radius: 28px;
  overflow: hidden;
}

.nc {
  padding: 4rem 2.5rem;
  border-right: 1px solid var(--brd);
  text-align: center;
  transition: background .4s var(--e1);
  position: relative;
}

.nc:last-child {
  border-right: none;
}

.nc:hover {
  background: var(--sur);
}

/* Bottom accent on hover */
.nc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  transform: scaleX(0);
  transition: transform .45s var(--e1);
}

.nc:hover::after {
  transform: scaleX(1);
}

.nc-val {
  font-family: var(--head);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--txt);
  letter-spacing: .02em;
}

.nc-val span {
  color: var(--a1);
}

.nc-lbl {
  font-size: .72rem;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .5rem;
}


/* ==========================================================================
   9. PHOTO STRIP
   ========================================================================== */

.photo-strip {
  position: relative;
  overflow: hidden;
}

.ps--sm {
  height: 40vh;
  min-height: 280px;
}

.ps--md {
  height: 60vh;
  min-height: 400px;
}

.ps--lg {
  height: 80vh;
  min-height: 500px;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(.8);
  transform: scale(1.05);
  transition: transform 8s var(--e1);
}

.photo-strip:hover img {
  transform: scale(1);
}

.photo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(4, 4, 10, .4) 0%, transparent 25%),
    linear-gradient(to top, rgba(4, 4, 10, .5) 0%, transparent 30%),
    linear-gradient(to right, rgba(4, 4, 10, .35) 0%, transparent 50%);
  pointer-events: none;
}

[data-theme="light"] .photo-strip::before {
  background:
    linear-gradient(to bottom, rgba(245, 244, 255, .3) 0%, transparent 25%),
    linear-gradient(to top, rgba(245, 244, 255, .4) 0%, transparent 30%),
    linear-gradient(to right, rgba(245, 244, 255, .25) 0%, transparent 50%);
}

.photo-strip-text {
  position: absolute;
  z-index: 3;
  font-family: var(--head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: .01em;
}

.ps-txt--bl {
  bottom: 4rem;
  left: 5%;
}

.ps-txt--br {
  bottom: 4rem;
  right: 5%;
  text-align: right;
}

.ps-txt--c {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.photo-strip-text em,
.photo-strip-text .accent {
  color: var(--a1);
  font-style: normal;
  display: block;
}


/* ==========================================================================
   10. PORTFOLIO
   ========================================================================== */

.section-portfolio {
  padding: 10rem 0;
}

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

.pg-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.pg-item--lg {
  grid-column: span 2;
}

.pg-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.pg-thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--e1);
}

.pg-item:hover .pg-thumb img {
  transform: scale(1.08);
}

.pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 4, 10, .8), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity .4s var(--e1);
}

.pg-item:hover .pg-overlay {
  opacity: 1;
}

.pg-cat {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--a1);
  margin-bottom: .5rem;
}

.pg-name {
  font-family: var(--head);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.05;
}


/* ==========================================================================
   11. APPROACH
   ========================================================================== */

.section-approach {
  padding: 10rem 0;
}

.ap-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.ap-sticky {
  position: sticky;
  top: 120px;
}

.ap-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.ap-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.ap-step-num {
  font-family: var(--head);
  font-size: 2.5rem;
  color: var(--a1);
  opacity: .3;
  line-height: 1;
  letter-spacing: .02em;
}

.ap-step-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ap-step-title {
  font-family: var(--head);
  font-size: 1.4rem;
  color: var(--txt);
  line-height: 1.05;
}

.ap-step-desc {
  font-size: .86rem;
  color: var(--mut);
  line-height: 1.75;
}

/* ---- Visual metric cards ---- */

.ap-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ap-card {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.ap-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(123, 94, 167, .08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .45s var(--e1);
  pointer-events: none;
}

.ap-card:hover::before {
  opacity: 1;
}

.ap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 94, 167, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

[data-theme="light"] .ap-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.ap-card-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--mut);
  margin-bottom: 1rem;
}

.ap-card-val {
  font-family: var(--head);
  font-size: 4rem;
  line-height: 1;
  color: var(--txt);
  letter-spacing: .02em;
}

.ap-card-val span {
  font-size: 1.8rem;
  color: var(--a1);
}

.ap-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-top: 1.5rem;
}

.ap-sparkline span {
  flex: 1;
  background: linear-gradient(to top, var(--a1), rgba(123, 94, 167, .2));
  border-radius: 3px 3px 0 0;
  animation: spup 1.2s var(--e1) both;
}

.ap-sparkline span:nth-child(1) { animation-delay: .1s; }
.ap-sparkline span:nth-child(2) { animation-delay: .2s; }
.ap-sparkline span:nth-child(3) { animation-delay: .3s; }
.ap-sparkline span:nth-child(4) { animation-delay: .4s; }
.ap-sparkline span:nth-child(5) { animation-delay: .5s; }
.ap-sparkline span:nth-child(6) { animation-delay: .6s; }
.ap-sparkline span:nth-child(7) { animation-delay: .7s; }
.ap-sparkline span:nth-child(8) { animation-delay: .8s; }


/* ==========================================================================
   12. WHY GRID
   ========================================================================== */

.section-why {
  padding: 10rem 0;
}

.wgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--brd);
  border-radius: 28px;
  overflow: hidden;
}

.wc {
  background: var(--sur);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .4s var(--e1);
}

.wc:hover {
  background: var(--sur2);
}

.wc-ghost {
  position: absolute;
  top: .5rem;
  right: 1rem;
  font-family: var(--head);
  font-size: 5rem;
  color: rgba(123, 94, 167, .06);
  line-height: 1;
  pointer-events: none;
  transition: opacity .4s var(--e1), transform .4s var(--e1);
}

.wc:hover .wc-ghost {
  opacity: .12;
  transform: scale(1.1);
  color: var(--a1);
}

.wc-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.wc-title {
  font-family: var(--head);
  font-size: 1.4rem;
  color: var(--txt);
  line-height: 1.05;
  margin-bottom: .8rem;
}

.wc-desc {
  font-size: .86rem;
  color: var(--mut);
  line-height: 1.75;
}


/* ==========================================================================
   13. TESTIMONIALS
   ========================================================================== */

.section-testimonials {
  padding: 10rem 0;
  overflow: hidden;
}

.testi-hd {
  text-align: center;
  padding: 0 5%;
  margin-bottom: 5rem;
}

.testi-hd .slbl {
  justify-content: center;
}

.testi-hd .stitle {
  text-align: center;
}

.ttrack {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 5% 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}

.ttrack::-webkit-scrollbar {
  display: none;
}

.ttrack.dragging {
  cursor: grabbing;
}

.ttrack.dragging a {
  pointer-events: none;
}

.tc {
  flex: 0 0 370px;
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.tc:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 94, 167, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

[data-theme="light"] .tc:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.tc-stars {
  color: var(--a4);
  font-size: 1rem;
  letter-spacing: .1em;
}

.tc-text {
  font-size: .92rem;
  color: var(--mut);
  line-height: 1.85;
  flex: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: auto;
}

.tc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.tc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--txt);
}

.tc-role {
  font-size: .75rem;
  color: var(--mut);
}


/* ==========================================================================
   14. ABOUT
   ========================================================================== */

.section-about {
  padding: 10rem 0;
  overflow: hidden;
  position: relative;
}

.ab-ghost {
  position: absolute;
  top: 5%;
  left: 5%;
  font-family: var(--head);
  font-size: clamp(6rem, 15vw, 16rem);
  color: rgba(123, 94, 167, .04);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.ab-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ab-media {
  position: relative;
}

.ab-frame {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
}

.ab-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--e1);
}

.ab-frame:hover img {
  transform: scale(1.04);
}

.ab-accent-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--a1), var(--a2), var(--a3));
}

.ab-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ab-text {
  font-size: .95rem;
  color: var(--mut);
  line-height: 1.85;
}

.ab-text p {
  margin-bottom: 1rem;
  color: var(--mut);
}

.ab-text p:last-child {
  margin-bottom: 0;
}

.ab-signature {
  font-family: var(--head);
  font-size: 2rem;
  color: var(--a1);
  margin-top: .5rem;
  letter-spacing: .02em;
}

.ab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}


/* ==========================================================================
   15. FAQ
   ========================================================================== */

.section-faq {
  padding: 10rem 0;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 8rem;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.fi {
  border-bottom: 1px solid var(--brd);
}

.fi-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  cursor: pointer;
  font-family: var(--head);
  font-size: 1.3rem;
  color: var(--txt);
  letter-spacing: .01em;
  line-height: 1.15;
  transition: color .3s var(--e1);
  user-select: none;
}

.fi-q:hover {
  color: var(--a1);
}

.fi-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sur);
  border: 1px solid var(--brd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--a1);
  flex-shrink: 0;
  transition: transform .4s var(--e2), background .3s, border-color .3s;
}

.fi.open .fi-ico {
  transform: rotate(45deg);
  background: var(--a1);
  color: #fff;
  border-color: var(--a1);
}

.fi-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--e1), padding .5s var(--e1);
  font-size: .9rem;
  color: var(--mut);
  line-height: 1.85;
  padding: 0;
}

.fi.open .fi-a {
  max-height: 200px;
  padding-bottom: 2rem;
}


/* ==========================================================================
   16. CTA
   ========================================================================== */

/* Card variant */
.cta-card-wrap {
  padding: 8rem 5%;
}

.cta-box {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: 32px;
  padding: 7rem 5%;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(123, 94, 167, .12), transparent 70%);
  animation: pulse-r 6s ease-in-out infinite;
  pointer-events: none;
}

.cta-title {
  font-family: var(--head);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: .92;
  color: var(--txt);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 1rem;
  color: var(--mut);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Fullbleed variant */
.cta-fullbleed {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 10, .7);
}

[data-theme="light"] .cta-overlay {
  background: rgba(245, 244, 255, .7);
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 5%;
}


/* ==========================================================================
   17. TEXT + IMAGE
   ========================================================================== */

.section-text-image {
  padding: 10rem 0;
}

.ti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.ti--reversed .ti-grid {
  direction: rtl;
}

.ti--reversed .ti-grid > * {
  direction: ltr;
}

.ti-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ti-text {
  font-size: .95rem;
  color: var(--mut);
  line-height: 1.85;
}

.ti-text p {
  margin-bottom: 1rem;
  color: var(--mut);
}

.ti-text p:last-child {
  margin-bottom: 0;
}

.ti-img {
  overflow: hidden;
}

.ti-img--rounded {
  border-radius: var(--radius);
}

.ti-img--square {
  border-radius: 0;
}

.ti-img--circle {
  border-radius: 50%;
}

.ti-img--shadow {
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4);
}

[data-theme="light"] .ti-img--shadow {
  box-shadow: 0 32px 80px rgba(0, 0, 0, .1);
}

.ti-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--e1);
}

.ti-img:hover img {
  transform: scale(1.05);
}


/* ==========================================================================
   18. FEATURES
   ========================================================================== */

.section-features {
  padding: 10rem 0;
}

.ft-grid {
  display: grid;
  gap: 2rem;
}

.ft-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.ft-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.ft-card {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.ft-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(123, 94, 167, .08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .45s var(--e1);
  pointer-events: none;
}

.ft-card:hover::before {
  opacity: 1;
}

.ft-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 94, 167, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

[data-theme="light"] .ft-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.ft-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.ft-title {
  font-family: var(--head);
  font-size: 1.3rem;
  color: var(--txt);
  margin-bottom: .5rem;
  line-height: 1.1;
}

.ft-desc {
  font-size: .86rem;
  color: var(--mut);
  line-height: 1.75;
}


/* ==========================================================================
   19. PRICING
   ========================================================================== */

.section-pricing {
  padding: 10rem 0;
}

.pr-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pr-card {
  flex: 0 0 320px;
  max-width: 380px;
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.pr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(123, 94, 167, .08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .45s var(--e1);
  pointer-events: none;
}

.pr-card:hover::before {
  opacity: 1;
}

.pr-card--featured {
  border-color: var(--a1);
  transform: scale(1.05);
  box-shadow: 0 32px 80px rgba(123, 94, 167, .2);
}

.pr-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 94, 167, .4);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4);
}

.pr-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

[data-theme="light"] .pr-card:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, .08);
}

.pr-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--a1), color-mix(in srgb, var(--a1) 65%, white));
  color: #fff;
}

.pr-name {
  font-family: var(--head);
  font-size: 1.2rem;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.pr-price {
  margin: .5rem 0;
  display: flex;
  align-items: baseline;
  gap: .4rem;
}

.pr-amount {
  font-family: var(--head);
  font-size: 3.5rem;
  color: var(--txt);
  line-height: 1;
  letter-spacing: .02em;
}

.pr-period {
  font-size: 1rem;
  color: var(--mut);
}

.pr-desc {
  font-size: .86rem;
  color: var(--mut);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pr-features {
  list-style: none;
  margin: 1rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  flex: 1;
}

.pr-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .86rem;
  color: var(--mut);
}

.pr-features li svg {
  flex-shrink: 0;
}

.pr-cta {
  margin-top: auto;
}


/* ==========================================================================
   20. TEAM
   ========================================================================== */

.section-team {
  padding: 10rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 94, 167, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

[data-theme="light"] .team-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform .6s var(--e1), filter .6s var(--e1);
}

.team-card:hover .team-photo img {
  transform: scale(1.08);
  filter: grayscale(0);
}

.team-info {
  padding: 1.5rem 2rem;
}

.team-name {
  font-family: var(--head);
  font-size: 1.3rem;
  color: var(--txt);
  line-height: 1.1;
}

.team-role {
  font-size: .8rem;
  color: var(--mut);
  margin-top: .2rem;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--a1);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .5rem;
  transition: color .3s var(--e1);
}

.team-linkedin:hover {
  color: var(--txt);
}


/* ==========================================================================
   21. VIDEO
   ========================================================================== */

.section-video {
  padding: 10rem 0;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(123, 94, 167, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .35s var(--e2), background .35s;
  z-index: 2;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--a1);
}

.video-play svg {
  fill: #fff;
  width: 24px;
  height: 24px;
  color: #fff;
}

.video-wrap.playing .video-poster,
.video-wrap.playing .video-play {
  display: none;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-fullwidth {
  max-width: none;
  border-radius: 0;
}


/* ==========================================================================
   22. MAP
   ========================================================================== */

.section-map {
  padding: 0 5%;
}

.section-map iframe {
  border-radius: var(--radius);
  width: 100%;
  display: block;
}

.map--fullwidth {
  padding: 0;
}

.map--fullwidth iframe {
  border-radius: 0;
}

.map--petite iframe {
  height: 300px;
}

.map--moyenne iframe {
  height: 400px;
}

.map--grande iframe {
  height: 550px;
}


/* ==========================================================================
   23. LATEST POSTS
   ========================================================================== */

.section-latest-posts {
  padding: 10rem 0;
}

.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


/* ==========================================================================
   24. CONTACT
   ========================================================================== */

.contact-page {
  padding: 10rem 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-header .ssub {
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 5rem;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-group {
  flex: 1 1 calc(50% - .75rem);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.form-group label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mut);
}

.form-group--full {
  flex: 1 1 100%;
}

.form-feedback {
  flex: 1 1 100%;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
}

.form-feedback.success {
  background: rgba(0, 229, 180, .1);
  color: var(--a3);
  border: 1px solid rgba(0, 229, 180, .3);
}

.form-feedback.error {
  background: rgba(232, 65, 90, .1);
  color: var(--a2);
  border: 1px solid rgba(232, 65, 90, .3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sur);
  border: 1px solid var(--brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a1);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mut);
  margin-bottom: .2rem;
}

.contact-info-item a {
  color: var(--txt);
  transition: color .3s;
}

.contact-info-item a:hover {
  color: var(--a1);
}

.contact-map {
  margin-top: 5rem;
}


/* ==========================================================================
   25. SPACER
   ========================================================================== */

.section-spacer {
  display: block;
  padding: 0;
}

.spacer--petit {
  height: 2rem;
}

.spacer--moyen {
  height: 5rem;
}

.spacer--grand {
  height: 10rem;
}

.spacer-line {
  border-top: 1px solid var(--brd);
}


/* ==========================================================================
   26. MENU CARDS
   ========================================================================== */

.section-menu-cards {
  padding: 10rem 0;
}

.mc-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.mc-tab {
  padding: .5rem 1.5rem;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--brd);
  font-size: .8rem;
  color: var(--mut);
  cursor: pointer;
  transition: all .3s var(--e1);
}

.mc-tab:hover {
  border-color: rgba(123, 94, 167, .4);
  color: var(--txt);
}

.mc-tab.active {
  background: var(--a1);
  border-color: var(--a1);
  color: #fff;
}

.mc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mc-card {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.mc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 94, 167, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

[data-theme="light"] .mc-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.mc-card-img {
  height: 200px;
  overflow: hidden;
}

.mc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--e1);
}

.mc-card:hover .mc-card-img img {
  transform: scale(1.05);
}

.mc-card-body {
  padding: 1.5rem 2rem;
}

.mc-card-name {
  font-family: var(--head);
  font-size: 1.3rem;
  color: var(--txt);
  margin-bottom: .3rem;
}

.mc-card-desc {
  font-size: .86rem;
  color: var(--mut);
  line-height: 1.7;
  margin-bottom: .8rem;
}

.mc-card-price {
  font-family: var(--head);
  font-size: 1.4rem;
  color: var(--a1);
  letter-spacing: .02em;
}


/* ==========================================================================
   27. LOCATIONS
   ========================================================================== */

.section-locations {
  padding: 10rem 0;
}

.loc-grid {
  display: grid;
  gap: 2rem;
}

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

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

.loc-card {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.loc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 94, 167, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

[data-theme="light"] .loc-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.loc-photo {
  height: 240px;
  overflow: hidden;
}

.loc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--e1);
}

.loc-card:hover .loc-photo img {
  transform: scale(1.06);
}

.loc-info {
  padding: 2rem;
}

.loc-name {
  font-family: var(--head);
  font-size: 1.5rem;
  color: var(--txt);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.loc-detail {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  margin-bottom: .8rem;
  font-size: .86rem;
  color: var(--mut);
  line-height: 1.6;
}

.loc-detail svg {
  flex-shrink: 0;
  color: var(--a1);
  margin-top: .15rem;
}


/* ==========================================================================
   28. EVENTS
   ========================================================================== */

.section-events {
  padding: 10rem 0;
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ev-card {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform .45s var(--e1),
    border-color .45s var(--e1),
    box-shadow .45s var(--e1);
}

.ev-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 94, 167, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

[data-theme="light"] .ev-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.ev-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.ev-title {
  font-family: var(--head);
  font-size: 1.3rem;
  color: var(--txt);
  margin-bottom: .5rem;
  line-height: 1.1;
}

.ev-desc {
  font-size: .86rem;
  color: var(--mut);
  line-height: 1.75;
}

.ev-date {
  font-size: .72rem;
  color: var(--a1);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-top: 1rem;
}


/* ==========================================================================
   29. RESPONSIVE — TABLET (max-width: 1100px)
   ========================================================================== */

@media (max-width: 1100px) {

  /* Hero Split */
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .hero-l {
    grid-column: 1;
    grid-row: 1;
    border-right: none;
    border-bottom: 1px solid var(--brd);
    padding: 120px 5% 60px;
  }

  .hero-r {
    grid-column: 1;
    grid-row: 2;
    height: 60vw;
    min-height: 350px;
  }

  /* Approach */
  .ap-wrap {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .ap-sticky {
    position: relative;
    top: auto;
  }

  /* About */
  .ab-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .ab-media {
    max-width: 500px;
  }

  /* FAQ */
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-sticky {
    position: relative;
    top: auto;
  }

  /* Numbers */
  .num-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nc:nth-child(2) {
    border-right: none;
  }

  .nc:nth-child(1),
  .nc:nth-child(2) {
    border-bottom: 1px solid var(--brd);
  }

  /* Portfolio */
  .pg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-item--lg {
    grid-column: span 1;
  }

  /* Text + Image */
  .ti-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ti--reversed .ti-grid {
    direction: ltr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Features */
  .ft-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Events */
  .ev-grid {
    grid-template-columns: 1fr;
  }

  /* Menu Cards */
  .mc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Locations */
  .loc-grid-2 {
    grid-template-columns: 1fr;
  }

  /* Latest Posts */
  .lp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   30. RESPONSIVE — MOBILE (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

  /* Hero */
  .hero-h1 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero-blend-title {
    display: none;
  }

  .hero-r {
    min-height: 300px;
  }

  .hero-fb-content {
    max-width: 100%;
  }

  .hero-vid-content {
    max-width: 100%;
  }

  /* Why Grid */
  .wgrid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pr-row {
    flex-direction: column;
    align-items: center;
  }

  .pr-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .pr-card--featured {
    transform: none;
  }

  .pr-card--featured:hover {
    transform: translateY(-8px);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Numbers */
  .num-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Portfolio */
  .pg-grid {
    grid-template-columns: 1fr;
  }

  /* Features */
  .ft-grid--3,
  .ft-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Services card size */
  .sv {
    flex: 0 0 270px;
  }

  /* Testimonials card size */
  .tc {
    flex: 0 0 300px;
  }

  /* Section padding reductions */
  .section-services,
  .section-numbers,
  .section-approach,
  .section-why,
  .section-testimonials,
  .section-about,
  .section-faq,
  .section-text-image,
  .section-features,
  .section-pricing,
  .section-team,
  .section-video,
  .section-menu-cards,
  .section-locations,
  .section-events,
  .section-latest-posts,
  .section-portfolio {
    padding: 6rem 0;
  }

  .s-hd {
    margin-bottom: 3rem;
  }

  /* CTA */
  .cta-box {
    padding: 5rem 5%;
    border-radius: var(--radius);
  }

  .cta-card-wrap {
    padding: 5rem 5%;
  }

  /* Menu Cards */
  .mc-grid {
    grid-template-columns: 1fr;
  }

  /* Latest Posts */
  .lp-grid {
    grid-template-columns: 1fr;
  }

  /* Floating cards */
  .hfc {
    display: none;
  }
}


/* ==========================================================================
   31. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {

  /* Buttons stack */
  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn-main,
  .hero-btns .btn-out,
  .cta-btns .btn-main,
  .cta-btns .btn-out {
    justify-content: center;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-group {
    flex: 1 1 100%;
  }

  /* Features */
  .ft-grid--2,
  .ft-grid--3,
  .ft-grid--4 {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Numbers */
  .nc {
    padding: 2.5rem 1.5rem;
  }

  .nc-val {
    font-size: 3.5rem;
  }
}
