/*
Theme Name: Pixel Waves Design
Theme URI: https://pixelwavesdesign.com
Author: Pixel Waves
Author URI: https://pixelwavesdesign.com
Description: Custom WordPress theme for Pixel Waves Design.
Version: 1.0.2
Text Domain: pixelwaves
*/

/* ============================================================
   PIXEL WAVES DESIGN — Unified Stylesheet
   All pages share this file. Page-specific rules are sectioned.
   ============================================================ */

/* ─── CSS Variables ─── */
:root {
  --brand: #C63087;
  --brand-dark: #9b2169;
  --brand-light: #e85aac;
  --dark: #0d0d0d;
  --dark2: #161616;
  --muted: #888;
  --white: #fff;
  --fh: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--fb);
  background: var(--dark);
  color: var(--white);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 2px;
}

/* ─── HEADER (Custom Navbar — No Bootstrap JS Required) ─── */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all .4s;
}

#hdr.on,
#hdr.scrolled {
  background: #fff;
  padding: .7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .12);
}

.pw-nav {
  display: flex;
  align-items: center;
}

.pw-logo {
  font-family: var(--fh);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  transition: all .4s;
  width: 120px;
}

.pw-logo img {
  width: 100%;
}

.on.scrolled .pw-logo .log-static {
  display: none;
}

.on.scrolled .pw-logo .log-scroll {
  display: block;
}

.pw-logo .log-scroll {
  display: none;
}

@media (max-width: 991px) {

  .pw-logo .log-static {
    display: none;
  }

  .pw-logo .log-scroll {
    display: block;
  }

  .pw-hamburger span {
    background: #000000 !important;
  }

  #hdr {
    padding: 0.5rem 0;
  }

}

#hdr.on .pw-logo,
#hdr.scrolled .pw-logo {
  color: var(--dark);
  font-size: 1.45rem;
}

.pw-logo span {
  color: var(--brand);
}

/* Desktop nav links */
.pw-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .15rem;
}

.pw-link {
  font-weight: 500;
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  padding: .38rem .9rem;
  border-radius: 6px;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.pw-link:hover,
.pw-link.active-pg {
  color: var(--brand-light);
}

#hdr.on .pw-link,
#hdr.scrolled .pw-link {
  color: var(--dark);
}

#hdr.on .pw-link:hover,
#hdr.on .pw-link.active-pg,
#hdr.scrolled .pw-link:hover,
#hdr.scrolled .pw-link.active-pg {
  color: var(--brand);
}

/* Services Dropdown */
.pw-dropdown {
  position: relative;
  padding-bottom: .7rem;
  margin-bottom: -.7rem;
}

.pw-drop-toggle i {
  font-size: .62rem;
  transition: transform .3s;
}

.pw-dropdown:hover .pw-drop-toggle i {
  transform: rotate(180deg);
}

.pw-drop-menu {
  position: absolute;
  top: calc(100% + .7rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: 14px;
  padding: .5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 0, 0, .06);
  min-width: 230px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}

.pw-drop-menu::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}

.pw-dropdown:hover .pw-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.pw-drop-menu li a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  transition: all .2s;
  white-space: nowrap;
}

.pw-drop-menu li a i {
  color: var(--brand);
  font-size: .88rem;
  width: 16px;
}

.pw-drop-menu li a:hover {
  background: rgba(198, 48, 135, .08);
  color: var(--brand);
}

/* CTA button */
.pw-cta {
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: .5rem 1.3rem;
  font-size: .85rem;
  white-space: nowrap;
  font-weight: 600;
  transition: all .25s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.pw-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 48, 135, .4);
  color: #fff;
}

/* Hamburger */
.pw-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.pw-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

#hdr.on .pw-hamburger span,
#hdr.scrolled .pw-hamburger span {
  background: var(--dark);
}

.pw-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.pw-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.pw-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 998;
  padding-top: 66px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.pw-mobile-menu.open {
  max-height: 100dvh;
  overflow-y: auto;
}

.pw-mob-links {
  list-style: none;
  padding: .8rem 1.2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.pw-mob-link {
  display: block;
  padding: .75rem 1rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 10px;
  transition: all .2s;
}

.pw-mob-link:hover,
.pw-mob-link.active-pg {
  background: rgba(198, 48, 135, .08);
  color: var(--brand);
}

.pw-mob-drop-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 10px;
  transition: all .2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fb);
}

.pw-mob-drop-toggle:hover {
  background: rgba(198, 48, 135, .08);
  color: var(--brand);
}

.pw-mob-drop-toggle i {
  font-size: .65rem;
  transition: transform .3s;
}

.pw-mob-drop.open .pw-mob-drop-toggle {
  color: var(--brand);
  background: rgba(198, 48, 135, .06);
}

.pw-mob-drop.open .pw-mob-drop-toggle i {
  transform: rotate(180deg);
}

.pw-mob-sub {
  list-style: none;
  padding: .3rem 0 .4rem 1rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.16, 1, .3, 1);
}

.pw-mob-drop.open .pw-mob-sub {
  max-height: 300px;
}

.pw-mob-sub li a {
  display: block;
  padding: .5rem 1rem;
  font-size: .86rem;
  color: rgba(0, 0, 0, .6);
  border-radius: 8px;
  transition: all .2s;
}

.pw-mob-sub li a:hover {
  background: rgba(198, 48, 135, .06);
  color: var(--brand);
}

.pw-mob-cta {
  display: block;
  margin: .4rem 1.2rem 1.5rem;
  text-align: center;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s;
}

.pw-mob-cta:hover {
  background: var(--brand-dark);
  color: #fff;
}

@media(max-width:991px) {

  .pw-nav {
    justify-content: space-between;
  }

  .pw-links,
  .pw-cta {
    display: none;
  }

  .pw-hamburger {
    display: flex;
  }

  .pw-mobile-menu {
    display: block;
  }
}

section#work {
  padding: 6rem 0;
}

section#faq {
  padding: 6rem 0;
}

/* ─── SHARED TYPOGRAPHY & UTILITIES ─── */
.sec-label,
.sl {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: .8rem;
  display: block;
}

.sec-title,
.st {
  font-family: var(--fh);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.sec-title span,
.st span {
  color: var(--brand);
}

.div-line,
.dl {
  width: 48px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

/* Shared Buttons */
.btn-p,
.bp {
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: .85rem 2.2rem;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
}

.btn-p:hover,
.bp:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(198, 48, 135, .45);
  background: var(--brand-dark);
  color: #fff;
}

.btn-s,
.bs {
  background: transparent;
  color: #fff;
  border-radius: 50px;
  padding: .85rem 2.2rem;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255, 255, 255, .3);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
}

.btn-s:hover,
.bs:hover {
  transform: translateY(-4px);
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/* Breadcrumb */
.breadcrumb-custom,
.bc {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb-custom a,
.bc a {
  color: var(--muted);
  transition: color .2s;
}

.breadcrumb-custom a:hover,
.bc a:hover {
  color: var(--brand-light);
}

.breadcrumb-custom span,
.bc span {
  color: var(--brand-light);
}

/* ─── BLOBS & ANIMATIONS ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: blobf 12s ease-in-out infinite alternate;
}

.b1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #C63087, transparent 70%);
  top: -150px;
  right: -100px;
}

.b2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #6622cc, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-duration: 9s;
  animation-direction: alternate-reverse;
}

.b3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #ff5580, transparent 70%);
  top: 40%;
  left: 55%;
  opacity: .3;
  animation-duration: 15s;
}

@keyframes blobf {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(40px, 30px) scale(1.12)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes fadeIn {
  to {
    opacity: 1
  }
}

@keyframes pinb {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rev-l,
.revl {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.rev-l.visible,
.revl.visible {
  opacity: 1;
  transform: translateX(0);
}

.rev-r,
.revr {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.rev-r.visible,
.revr.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

.d5 {
  transition-delay: .4s
}

.d6 {
  transition-delay: .48s
}

/* ─── FOOTER (Shared) ─── */
footer {
  position: relative;
  z-index: 50;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 5rem 0 2rem;
}

.f-logo,
.flogo {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.f-logo span,
.flogo span {
  color: var(--brand);
}

.f-desc,
.fdesc {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: .8rem;
  max-width: 240px;
}

.f-soc,
.fsoc {
  display: flex;
  gap: .6rem;
  margin-top: 1.4rem;
}

.soc-btn,
.socbtn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  transition: all .25s;
}

.soc-btn:hover,
.socbtn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px);
}

.f-title,
.ftitle {
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}

.f-links,
.flinks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-links li,
.flinks li {
  margin-bottom: .6rem;
}

.f-links a,
.flinks a {
  font-size: .85rem;
  color: var(--muted);
  transition: all .2s;
  display: inline-block;
}

.f-links a:hover,
.flinks a:hover {
  color: var(--brand-light);
  padding-left: 4px;
}

.f-bot,
.fbot {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-bot p,
.fbot p {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
}

.f-bot span,
.fbot span {
  color: var(--brand);
}

/* ─── PAGE HERO (Shared inner pages) ─── */
.pg-hero,
.pg-hero-section {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.pg-hbg,
.hbg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1e0a16 40%, #0d0d0d 100%);
}

.pg-hero-in,
.pg-in,
.hero-in {
  position: relative;
  z-index: 2;
}

.pg-title,
h1.hero-title,
h1.pg-t {
  font-family: var(--fh);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin: 1rem 0;
}

.pg-title span,
h1.hero-title span,
h1.pg-t span {
  color: var(--brand);
}

.pg-sub,
.hero-sub-page {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  max-width: 600px;
  margin: 1.2rem 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(198, 48, 135, .12);
  border: 1px solid rgba(198, 48, 135, .3);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-light);
  animation: pulse 1.5s infinite;
}

.hero-stats,
.hstats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hstat-n {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.hstat-l {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .2rem;
}

/* ─── PAGE CTA (Shared) ─── */
#page-cta {
  padding: 7rem 0;
  text-align: center;
  background: linear-gradient(135deg, #1a0a14, #0d0d0d 50%, #12051a);
  position: relative;
  overflow: hidden;
}

#page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(198, 48, 135, .18), transparent 70%);
}

.cta-in {
  position: relative;
  z-index: 1;
}

.cta-t {
  font-family: var(--fh);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cta-s {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  margin: 1rem 0 2.5rem;
}

.btn-cta2 {
  position: relative;
  z-index: 1;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: 1rem 2.8rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .25s;
}

.btn-cta2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(198, 48, 135, .5);
  color: #fff;
}

/* ─── FAQ (Shared) ─── */
.faq-section {
  padding: 6rem 0;
}

.faq-wrap {
  max-width: 860px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 700;
  text-align: left;
  transition: background .3s;
}

.faq-q:hover {
  background: rgba(255, 255, 255, .03);
}

.faq-q.open {
  background: rgba(198, 48, 135, .07);
  color: var(--brand-light);
}

.faq-q i {
  transition: transform .3s;
  font-size: .85rem;
  flex-shrink: 0;
  color: var(--muted);
}

.faq-q.open i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16, 1, .3, 1);
}

.faq-a p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 1.8rem 1.4rem;
  margin: 0;
}

/* ─── CONTACT FORM (Shared) ─── */
.cf .form-control {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: #fff;
  padding: .9rem 1.2rem;
  font-family: var(--fb);
  font-size: .9rem;
  transition: all .25s;
}

.cf .form-control::placeholder {
  color: rgba(255, 255, 255, .3);
}

.cf .form-control:focus {
  background: rgba(198, 48, 135, .07);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}

.cf .form-label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .5rem;
}

.btn-send {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .9rem 2.5rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  width: 100%;
}

.btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(198, 48, 135, .4);
  background: var(--brand-dark);
}

.ferr {
  color: #ff6b8a;
  font-size: .75rem;
  margin-top: .25rem;
  display: none;
}

.ferr.show {
  display: block;
}

.ok-msg {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(40, 200, 100, .1);
  border: 1px solid rgba(40, 200, 100, .3);
  color: #5de89b;
  font-size: .9rem;
  text-align: center;
}

.ok-msg.show {
  display: block;
}

/* Contact Info Items */
.ci {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.ci-i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(198, 48, 135, .15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brand-light);
}

.ci h6 {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .15rem;
}

.ci p {
  font-size: .9rem;
  margin: 0;
}

/* ─── INTRO ARTICLE SECTION (Service Pages) ─── */
#intro {
  background: var(--dark2);
  padding: 6rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.intro-text h2 {
  font-family: var(--fh);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.intro-text h2 span {
  color: var(--brand);
}

.intro-text p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

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

.intro-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all .3s;
}

.intro-card:hover {
  border-color: rgba(198, 48, 135, .3);
  background: rgba(198, 48, 135, .06);
  transform: translateX(6px);
}

.intro-card h6 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.intro-card h6 i {
  color: var(--brand-light);
}

.intro-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

@media(max-width:991px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.why-vis img {
  width: 100%;
}

/* ─── SERVICES OFFERED GRID (Service Pages) ─── */
#offered {
  background: var(--dark);
  padding: 6rem 0;
}

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

.off-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}

.off-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left;
}

.off-card:hover {
  border-color: rgba(198, 48, 135, .3);
  background: rgba(198, 48, 135, .06);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .4);
}

.off-card:hover::before {
  transform: scaleX(1);
}

.off-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(198, 48, 135, .14);
  border: 1px solid rgba(198, 48, 135, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-light);
  margin-bottom: 1.2rem;
  transition: all .3s;
}

.off-card:hover .off-ico {
  background: rgba(198, 48, 135, .28);
  transform: scale(1.08);
}

.off-card h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .55rem;
}

.off-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.off-price {
  display: inline-block;
  margin-top: .9rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: .05em;
}

@media(max-width:991px) {
  .off-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .off-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── WHY SECTION (Service Pages) ─── */
#why {
  background: var(--dark2);
  padding: 6rem 0;
}

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

.why-visual {
  border-radius: 24px;
  background: linear-gradient(135deg, #1e0f18, #2a1028);
  border: 1px solid rgba(198, 48, 135, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
  align-self: start;
  z-index: 10;
  overflow: hidden;
}

.why-visual img {
  width: 100%;
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(198, 48, 135, .25), transparent 65%);
}

.why-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 26px 26px;
}

.why-icon {
  font-size: 5rem;
  position: relative;
  z-index: 1;
}

.why-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.wsr {
  background: rgba(198, 48, 135, .14);
  border: 1px solid rgba(198, 48, 135, .2);
  border-radius: 12px;
  padding: .9rem .5rem;
  text-align: center;
}

.wsr-n {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.wsr-l {
  font-size: .68rem;
  color: var(--muted);
  margin-top: .2rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .02);
  transition: all .3s;
}

.why-item:hover {
  border-color: rgba(198, 48, 135, .25);
  background: rgba(198, 48, 135, .05);
}

.wi-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(198, 48, 135, .15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
  font-size: .95rem;
}

.why-item h6 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .25rem;
}

.why-item p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media(max-width:991px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── PROCESS SECTION (Service Pages) ─── */
#process {
  background: var(--dark);
  padding: 6rem 0;
}

.proc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pstep {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2.5rem;
}

.pstep:last-child {
  padding-bottom: 0;
}

.pstep::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(198, 48, 135, .4), transparent);
  z-index: 0;
}

.pstep:last-child::before {
  display: none;
}

.pstep-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand);
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid rgba(198, 48, 135, .3);
  position: relative;
  z-index: 1;
}

.pstep-body {
  flex: 1;
  padding-top: .4rem;
}

.pstep-body h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .4rem;
}

.pstep-body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

/* ─── PACKAGES (Service Pages) ─── */
#packages {
  background: var(--dark2);
  padding: 6rem 0;
}

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

.pkg-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 2.2rem;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.pkg-card.featured {
  background: linear-gradient(135deg, rgba(198, 48, 135, .15), rgba(198, 48, 135, .05));
  border-color: rgba(198, 48, 135, .4);
}

.pkg-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--brand);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 50px;
}

.pkg-card h4 {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: .3rem;
}

.pkg-desc {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pkg-price {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.pkg-price small {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 400;
}

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.pkg-features li {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.pkg-features li i {
  color: var(--brand-light);
  font-size: .9rem;
  flex-shrink: 0;
}

.pkg-features li.off {
  color: var(--muted);
}

.pkg-features li.off i {
  color: rgba(255, 255, 255, .2);
}

.pkg-btn {
  width: 100%;
  padding: .8rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .25s;
}

.pkg-btn:hover,
.pkg-card.featured .pkg-btn {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

@media(max-width:991px) {
  .pkg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:576px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── PORTFOLIO SAMPLE (Service Pages) ─── */
#portfolio-sample {
  background: var(--dark);
  padding: 6rem 0;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.ps-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: all .35s;
  cursor: pointer;
  position: relative;
}

.ps-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .5);
  border-color: rgba(198, 48, 135, .3);
}

.ps-thumb {
  aspect-ratio: 3/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.ps-thumb img,
.cs-visual img {
  width: 100%;
}

.ps-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(198, 48, 135, .8), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}

.ps-item:hover .ps-thumb::after {
  opacity: 1;
}

.ps-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s;
}

.ps-item:hover .ps-info {
  opacity: 1;
  transform: translateY(0);
}


.ps1 {
  background: linear-gradient(135deg, #1e0f18, #2d1030);
}

.ps2 {
  background: linear-gradient(135deg, #0a1020, #18243a);
}

.ps3 {
  background: linear-gradient(135deg, #0e1a0a, #1e3212);
}

.ps4 {
  background: linear-gradient(135deg, #1a1000, #302000);
}

.ps5 {
  background: linear-gradient(135deg, #1a0a10, #2a1020);
}

.ps6 {
  background: linear-gradient(135deg, #0a0a1a, #12122e);
}

.ps-caption {
  padding: 1rem 1.2rem;
  background: var(--dark2);
}

.ps-caption h6 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: .15rem;
}

.ps-caption span {
  font-size: .75rem;
  color: var(--muted);
}

.tops_mani {
  padding-top: 100px;
}

@media(max-width:768px) {
  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tops_mani {
    padding-top: 50px;
  }
}

@media(max-width:480px) {
  .ps-grid {
    grid-template-columns: 1fr;
  }

  .ctr-n {
    font-size: 1.6rem !important;
  }

  .stat-n,
  .stat-box .stat-n {
    font-size: 2rem !important;
  }

  .why-visual {
    position: static !important;
  }
}

/* ─── TESTIMONIAL CARD (Service Pages) ─── */
#testimonial {
  background: var(--dark2);
  padding: 6rem 0;
}

.tcard {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 2rem auto 0;
}

.tcard::before {
  content: '"';
  font-family: var(--fh);
  font-size: 8rem;
  color: rgba(198, 48, 135, .12);
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  line-height: 1;
}

.tcard p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  line-height: 1.85;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.8rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tcard-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  border: 3px solid rgba(198, 48, 135, .35);
  flex-shrink: 0;
}

.tcard-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
}

.tcard-role {
  font-size: .8rem;
  color: var(--muted);
}

/* ─── RELATED SERVICES GRID (Service Pages) ─── */
#related {
  background: var(--dark2);
  padding: 6rem 0;
}

.rel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.rel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .8rem;
  padding: 1.8rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  transition: all .35s;
  color: #fff;
}

.rel-card:hover {
  border-color: rgba(198, 48, 135, .3);
  background: rgba(198, 48, 135, .07);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  color: #fff;
}

.rel-ico {
  font-size: 2.2rem;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(198, 48, 135, .12);
  border: 1px solid rgba(198, 48, 135, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.rel-card:hover .rel-ico {
  background: rgba(198, 48, 135, .25);
  transform: scale(1.08);
}

.rel-card h6 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .93rem;
  margin: 0;
}

.rel-card span {
  font-size: .78rem;
  color: var(--muted);
}

@media(max-width:992px) {
  .rel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .rel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── HOME PAGE STYLES ─── */
#hero {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 4rem;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d, #1a0a14 30%, #0d0d0d 60%, #12051a);
}

.fs {
  position: absolute;
  animation: sfloat linear infinite;
  pointer-events: none;
  z-index: 1;
}

.fs-circle {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.fs-rect {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.fs-tri {
  width: 0 !important;
  height: 0 !important;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid rgba(255, 255, 255, 0.15);
  background: transparent !important;
}

.fs1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 8%;
  animation-duration: 18s;
}

.fs2 {
  width: 30px;
  height: 30px;
  top: 65%;
  left: 15%;
  animation-duration: 22s;
}

.fs3 {
  width: 90px;
  height: 90px;
  top: 30%;
  right: 12%;
  animation-duration: 14s;
}

.fs4 {
  width: 45px;
  height: 45px;
  top: 15%;
  right: 25%;
  animation-duration: 19s;
  animation-direction: reverse;
}

.fs5 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 10%;
  animation-duration: 15s;
}

.fs6 {
  width: 35px;
  height: 35px;
  top: 40%;
  left: 80%;
  animation-duration: 25s;
  animation-direction: reverse;
}

.fs7 {
  top: 70%;
  right: 8%;
  animation-duration: 16s;
}

.fs8 {
  width: 50px;
  height: 50px;
  top: 10%;
  left: 40%;
  animation-duration: 21s;
}

.fs9 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  right: 20%;
  animation-duration: 20s;
  animation-direction: reverse;
}

.fs10 {
  top: 50%;
  left: 10%;
  animation-duration: 17s;
}

@keyframes sfloat {
  0% {
    transform: rotate(0deg) translateY(0)
  }

  50% {
    transform: rotate(180deg) translateY(-30px)
  }

  100% {
    transform: rotate(360deg) translateY(0)
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn .6s .2s forwards;
}

.hero-h {
  font-family: var(--fh);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -.04em;
}

.hl {
  display: block;
  overflow: hidden;
}

.hl span {
  display: block;
}

.hl1 span {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  opacity: 0;
  transform: translateY(-60px);
  animation: slideD .8s .5s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hl2 span {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--brand);
  opacity: 0;
  transform: translateY(60px);
  animation: slideU .8s .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hl3 span {
  font-size: clamp(2rem, 7vw, 5.5rem);
  opacity: 0;
  animation: fadeIn .9s 1.3s forwards;
}

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

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

.hero-sub {
  max-width: 560px;
  margin: 1.8rem auto 0;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  opacity: 0;
  animation: fadeIn .8s 1.8s forwards;
}

.hero-btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn .8s 2.1s forwards;
}

/* Marquee */
.mq-strip {
  background: var(--brand);
  padding: 1rem 0;
  overflow: hidden;
}

.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mq 25s linear infinite;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  padding-right: 2rem;
}

.mq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

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

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

/* About Section (Home) */
#about {
  background: var(--dark2);
  padding: 7rem 0;
}

.about-wrap {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.about-left {
  flex: 0 0 42%;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.acard {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all .35s;
}

.acard:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 48, 135, .45);
  background: rgba(198, 48, 135, .07);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.ac-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(198, 48, 135, .12);
  border: 1px solid rgba(198, 48, 135, .28);
  border-radius: 50px;
  padding: .28rem .85rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ac-icon {
  width: 54px;
  height: 54px;
  background: rgba(198, 48, 135, .14);
  border: 1px solid rgba(198, 48, 135, .22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--brand-light);
  margin-bottom: 1rem;
}

.acard h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.acard p {
  font-size: .89rem;
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
}

.astats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.anum {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.albl {
  font-size: .74rem;
  color: var(--muted);
  margin-top: .25rem;
}

@media(max-width:991px) {
  .about-wrap {
    flex-direction: column;
    gap: 3rem;
  }

  .about-left {
    position: static;
    flex: none;
    width: 100%;
  }
}

/* Services Sticky Stack (Home) */
#services {
  background: var(--dark);
  padding: 7rem 0;
}

.svc-head {
  padding-bottom: 3.5rem;
}

.svc-stack {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}

.sp {
  position: sticky;
  width: 100%;
  border-radius: 22px;
  padding: 2.8rem 3.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: border-color .3s, box-shadow .3s;
  cursor: pointer;
}

.sp:last-child {
  margin-bottom: 0;
}

.sp:hover {
  border-color: rgba(198, 48, 135, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.sp:nth-child(1) {
  background: #111;
  top: 80px;
  z-index: 1;
}

.sp:nth-child(2) {
  background: #141414;
  top: 96px;
  z-index: 2;
}

.sp:nth-child(3) {
  background: #161616;
  top: 112px;
  z-index: 3;
}

.sp:nth-child(4) {
  background: #181818;
  top: 128px;
  z-index: 4;
}

.sp:nth-child(5) {
  background: #1a1a1a;
  top: 144px;
  z-index: 5;
}

.sp:nth-child(6) {
  background: #1d1d1d;
  top: 160px;
  z-index: 6;
}

.sp-num {
  font-family: var(--fh);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(198, 48, 135, .12);
  line-height: 1;
  flex-shrink: 0;
  width: 75px;
  text-align: right;
  letter-spacing: -.05em;
}

.sp-ico {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(198, 48, 135, .18), rgba(198, 48, 135, .04));
  border: 1px solid rgba(198, 48, 135, .25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--brand-light);
  transition: all .3s;
}

.sp:hover .sp-ico {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(198, 48, 135, .35), rgba(198, 48, 135, .1));
}

.sp-body {
  flex: 1;
}

.sp-body h3 {
  font-family: var(--fh);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .6rem;
}

.sp-body p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  max-width: 580px;
}

.sp-tags {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.sp-tag {
  padding: .25rem .8rem;
  border-radius: 50px;
  background: rgba(198, 48, 135, .1);
  border: 1px solid rgba(198, 48, 135, .2);
  font-size: .68rem;
  font-weight: 600;
  color: var(--brand-light);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.sp-arr {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, .3);
  transition: all .3s;
}

.sp:hover .sp-arr {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}

@media(max-width:768px) {
  .sp {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem;
    gap: 1rem;
  }

  .sp-num,
  .sp-arr {
    display: none;
  }
}

/* Why Section (Home) */
#why-home {
  position: relative;
  z-index: 50;
  background: var(--dark2);
  padding: 7rem 0;
}

.why-vis {
  width: 100%;
  min-height: 460px;
  background: linear-gradient(135deg, #12051a, #1e0f18, #0d0d0d);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.why-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 40%, rgba(198, 48, 135, .32), transparent 65%);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.wf {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
  transition: background .3s;
}

.wf:hover {
  background: rgba(255, 255, 255, .04);
}

.wf-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(198, 48, 135, .15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-light);
}

.wf h6 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .3rem;
}

.wf p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

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

.ctr-box {
  background: rgba(198, 48, 135, .08);
  border: 1px solid rgba(198, 48, 135, .2);
  border-radius: 16px;
  padding: 1.4rem;
  text-align: center;
}

.ctr-n {
  font-family: var(--fh);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.ctr-l {
  font-size: .76rem;
  color: var(--muted);
  margin-top: .3rem;
  letter-spacing: .05em;
}

/* Portfolio (Home) */
#portfolio {
  position: relative;
  z-index: 50;
  background: var(--dark);
  padding: 7rem 0;
}

.f-btns {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.f-btn {
  padding: .48rem 1.3rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: transparent;
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}

.f-btn.active,
.f-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(198, 48, 135, .35);
}

.pi {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .35s;
}

.pi:hover {
  transform: translateY(-6px);
}

.pt {
  width: 100%;
  aspect-ratio: 3/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform .45s;
}

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

.pi:hover .pt {
  transform: scale(1.08);
}

.po {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(198, 48, 135, .95), rgba(198, 48, 135, .4) 50%, transparent);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity .35s;
}

.pi:hover .po {
  opacity: 1;
}

.po h6 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
}

.po span {
  font-size: .78rem;
  opacity: .85;
}

.pc1 {
  background: linear-gradient(135deg, #1e0f18, #2d1030);
}

.pc2 {
  background: linear-gradient(135deg, #0a1628, #112244);
}

.pc3 {
  background: linear-gradient(135deg, #0d1f12, #1a3a22);
}

.pc4 {
  background: linear-gradient(135deg, #1f1500, #382800);
}

.pc5 {
  background: linear-gradient(135deg, #1a0a14, #2f1428);
}

.pc6 {
  background: linear-gradient(135deg, #100a1f, #201540);
}

.pi.hidden {
  display: none;
}

/* Testimonials (Home) */
#testimonials {
  position: relative;
  z-index: 50;
  background: var(--dark2);
  padding: 7rem 0;
}

.t-wrap {
  position: relative;
  min-height: 280px;
}

.t-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  opacity: 0;
  transition: opacity .7s;
  pointer-events: none;
}

.t-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.t-q {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  line-height: 1.8;
  max-width: 700px;
  font-style: italic;
  margin-bottom: 2rem;
}

.t-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto .8rem;
  font-weight: 700;
  border: 3px solid rgba(198, 48, 135, .4);
}

.t-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
}

.t-role {
  font-size: .8rem;
  color: var(--muted);
}

.t-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 2rem;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: all .3s;
}

.t-dot.active {
  background: var(--brand);
  transform: scale(1.3);
}

.stars {
  color: var(--brand-light);
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* CTA (Home) */
#cta {
  position: relative;
  z-index: 50;
  padding: 7rem 0;
  text-align: center;
  background: linear-gradient(135deg, #1a0a14, #0d0d0d 40%, #12051a);
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(198, 48, 135, .2), transparent 70%);
  animation: ctap 5s ease-in-out infinite alternate;
}

@keyframes ctap {
  0% {
    opacity: .5;
    transform: scale(.95)
  }

  100% {
    opacity: 1;
    transform: scale(1.1)
  }
}

/* Contact (Home) */
#contact {
  position: relative;
  z-index: 50;
  background: var(--dark);
  padding: 7rem 0;
}

.map-ph {
  width: 100%;
  min-height: 400px;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #0d1628, #121f2a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, .07);
  position: relative;
  overflow: hidden;
}

.map-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(198, 48, 135, .15), transparent 60%);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-pin {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  animation: pinb 2s ease-in-out infinite;
}

.map-t {
  position: relative;
  z-index: 2;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

/* ─── ABOUT PAGE ─── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story-visual {
  position: relative;
}

.story-box {
  border-radius: 24px;
  min-height: 440px;
  background: linear-gradient(135deg, #1e0f18, #2a1028);
  border: 1px solid rgba(198, 48, 135, .2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.story-box-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.story-year {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: var(--fh);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(198, 48, 135, .1);
  line-height: 1;
  letter-spacing: -.05em;
}

.story-founded {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.story-founded h3 {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.story-founded p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  margin-top: .4rem;
}

.story-badge {
  position: relative;
  z-index: 1;
  background: rgba(198, 48, 135, .18);
  border: 1px solid rgba(198, 48, 135, .35);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.story-badge-n {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-light);
}

.story-badge-l {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.4;
}

.story-text {
  padding-top: 1rem;
}

.story-text p {
  font-size: .93rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

@media(max-width:991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Values */
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.val-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all .35s;
}

.val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left;
}

.val-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .4);
  border-color: rgba(198, 48, 135, .25);
  background: rgba(198, 48, 135, .05);
}

.val-card:hover::before {
  transform: scaleX(1);
}

.val-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(198, 48, 135, .14);
  border: 1px solid rgba(198, 48, 135, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-light);
  margin-bottom: 1.4rem;
  transition: all .3s;
}

.val-card:hover .val-ico {
  background: rgba(198, 48, 135, .28);
  transform: scale(1.08);
}

.val-card h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .55rem;
}

.val-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

@media(max-width:991px) {
  .val-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .val-grid {
    grid-template-columns: 1fr;
  }
}

/* Stats Banner */
#stats-banner {
  background: var(--brand);
  padding: 4rem 0;
}

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

.stat-n,
.stat-box .stat-n {
  font-family: var(--fh);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.stat-l {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  margin-top: .4rem;
  letter-spacing: .05em;
}

@media(max-width:768px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:480px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* About – Why Us */
#why-us {
  padding: 7rem 0;
}

.why-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-col-visual {
  border-radius: 24px;
  min-height: 460px;
  background: linear-gradient(135deg, #12051a, #1e0f18, #0d0d0d);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.why-col-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(198, 48, 135, .28), transparent 65%);
}

.why-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.why-list .why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-list .why-item:last-child {
  margin-bottom: 0;
}

.why-list .why-item div h6 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .3rem;
}

.why-list .why-item div p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media(max-width:991px) {
  .why-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
}

.team-av {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.team-av::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(198, 48, 135, .2), transparent 65%);
}

.ta1 {
  background: linear-gradient(135deg, #1e0f18, #2d1030);
}

.ta2 {
  background: linear-gradient(135deg, #0a1628, #112244);
}

.ta3 {
  background: linear-gradient(135deg, #0d1f12, #1a3a22);
}

.ta4 {
  background: linear-gradient(135deg, #1f1500, #382800);
}

.team-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
}

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

.team-soc {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: .8rem;
}

.team-soc a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--muted);
  transition: all .2s;
}

.team-soc a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

@media(max-width:991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── SERVICES PAGE ─── */
.svc-tab-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: .5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
}

.stab {
  flex: 1;
  min-width: 130px;
  padding: .75rem 1rem;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, .55);
  font-family: var(--fh);
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  white-space: nowrap;
}

.stab:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.stab.active {
  background: var(--brand);
  color: #fff;
}

.svc-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 3rem;
  margin-bottom: 2rem;
  transition: all .35s;
}

.svc-card:hover {
  border-color: rgba(198, 48, 135, .25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.svc-card-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.svc-ico {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(198, 48, 135, .2), rgba(198, 48, 135, .05));
  border: 1px solid rgba(198, 48, 135, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-light);
  flex-shrink: 0;
}

.svc-card h3 {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .3rem;
}

.svc-card .svc-link {
  font-size: .82rem;
  color: var(--brand-light);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.svc-card .svc-link:hover {
  text-decoration: underline;
}

.svc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.svc-body p {
  font-size: .93rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.85;
}

.svc-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.svc-features-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
}

.svc-features-list li i {
  color: var(--brand-light);
  font-size: .85rem;
  flex-shrink: 0;
}

@media(max-width:768px) {
  .svc-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .svc-tab-bar {
    display: none;
  }
}

/* ─── PORTFOLIO PAGE ─── */
.port-filter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.fbtn {
  padding: .5rem 1.3rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: transparent;
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}

.fbtn.active,
.fbtn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(198, 48, 135, .35);
}

.pitem {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .35s;
  border: 1px solid rgba(255, 255, 255, .07);
}

.pitem:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .5);
  border-color: rgba(198, 48, 135, .3);
}

.pthumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.pover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(198, 48, 135, .92), rgba(198, 48, 135, .4) 50%, transparent);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: opacity .35s;
}

.pitem:hover .pover {
  opacity: 1;
}

.pover h6 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.pover span {
  font-size: .78rem;
  opacity: .85;
}

.pover .ext-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .8rem;
  font-size: .8rem;
  background: rgba(255, 255, 255, .2);
  padding: .3rem .8rem;
  border-radius: 50px;
}

.pcard.phide,
.pi.hidden {
  display: none !important;
}

.load-more-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* ─── CONTACT PAGE ─── */
.map-container {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  background: linear-gradient(135deg, #0d1628, #121f2a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.budget-btns {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.budget-btn {
  padding: .5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: transparent;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  cursor: pointer;
  transition: all .25s;
}

.budget-btn.sel,
.budget-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.office-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 2rem;
}

.office-card h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.office-card h5 i {
  color: var(--brand-light);
}

.office-detail {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .9rem;
  font-size: .87rem;
  color: rgba(255, 255, 255, .7);
}

.office-detail i {
  color: var(--brand-light);
  width: 16px;
}

/* ─── RESPONSIVE ─── */
@media(max-width:576px) {
  .about-wrap {
    flex-direction: column;
    gap: 2rem;
  }

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

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

/* =============================================
   INNER PAGES — MISSING COMPONENT STYLES
   ============================================= */

/* ─── SERVICES PAGE: Tabs ─── */
.svc-tabs {
  background: var(--dark2);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: sticky;
  top: 60px;
  z-index: 90;
}

.svc-tabs-inner {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  padding: .8rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.svc-tabs-inner::-webkit-scrollbar {
  display: none;
}

.stab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  border-radius: 50px;
  padding: .55rem 1.3rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s;
  font-family: var(--fh);
}

.stab:hover {
  border-color: rgba(198, 48, 135, .4);
  color: #fff;
}

.stab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ─── SERVICES PAGE: Section Layout ─── */
.svc-section {
  padding: 6rem 0;
  position: sticky;
  background: var(--dark);
}

.svc-section:nth-child(even) {
  background: var(--dark2);
}

#graphic-design {
  top: 70px;
  z-index: 1;
}

#web-dev {
  top: 85px;
  z-index: 2;
}

#digital-marketing {
  top: 100px;
  z-index: 3;
}

#seo {
  top: 115px;
  z-index: 4;
}

#mobile-apps {
  top: 130px;
  z-index: 5;
}

#content-writing {
  top: 145px;
  z-index: 6;
}

.svc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.svc-layout.reverse {
  direction: rtl;
}

.svc-layout.reverse>* {
  direction: ltr;
}

.svc-visual {
  border-radius: 24px;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 48, 135, .15);
}

.svc-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 26px 26px;
}

.svc-ico-big {
  font-size: 5rem;
  position: relative;
  z-index: 1;
}

.svc-vis-label {
  position: relative;
  z-index: 1;
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .05em;
}

.v1 {
  background: linear-gradient(135deg, #1e0f18, #2d1030);
}

.v2 {
  background: linear-gradient(135deg, #0a1020, #18243a);
}

.v3 {
  background: linear-gradient(135deg, #1a1500, #302800);
}

.v4 {
  background: linear-gradient(135deg, #0a1a12, #183028);
}

.v5 {
  background: linear-gradient(135deg, #100a1a, #221840);
}

.v6 {
  background: linear-gradient(135deg, #1a0e0a, #302018);
}


.svc-content h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
}

.svc-content h2 span {
  color: var(--brand);
}

.svc-content>p {
  font-size: .93rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 1.5rem;
}

.svc-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.svc-feat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: .45rem;
}

.svc-feat h6 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .2rem;
}

.svc-feat p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.svc-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.svc-tag {
  background: rgba(198, 48, 135, .1);
  border: 1px solid rgba(198, 48, 135, .2);
  border-radius: 50px;
  padding: .3rem .8rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brand-light);
  letter-spacing: .03em;
}

.price-note {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: rgba(198, 48, 135, .06);
  border: 1px solid rgba(198, 48, 135, .15);
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.price-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.price-note p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin: 0;
}

@media(max-width:991px) {
  .svc-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .svc-layout.reverse {
    direction: ltr;
  }
}

/* ─── SERVICES PAGE: Process Grid ─── */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.proc-step {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .35s;
}

.proc-step:hover {
  border-color: rgba(198, 48, 135, .3);
  background: rgba(198, 48, 135, .06);
  transform: translateY(-6px);
}

.proc-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand);
  margin: 0 auto 1rem;
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-step h6 {
  font-family: var(--fh);
  font-weight: 700;
  margin-bottom: .4rem;
}

.proc-step p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media(max-width:991px) {
  .proc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:576px) {
  .proc-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── PORTFOLIO PAGE: Stats Strip ─── */
.stats-strip {
  background: var(--dark2);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 2rem 0;
}

.stats-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ss-item {
  text-align: center;
}

.ss-n {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.ss-l {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .3rem;
}

/* ─── PORTFOLIO PAGE: Filter Buttons ─── */
.fbtns {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}

.fbtn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  border-radius: 50px;
  padding: .5rem 1.3rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--fh);
}

.fbtn:hover {
  border-color: rgba(198, 48, 135, .4);
  color: #fff;
}

.fbtn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ─── PORTFOLIO PAGE: Project Cards ─── */
.pcard {
  transition: all .35s;
}

.pcard-thumb {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.pc1 {
  background: linear-gradient(135deg, #1e0f18, #2d1030);
}

.pc2 {
  background: linear-gradient(135deg, #0a1020, #18243a);
}

.pc3 {
  background: linear-gradient(135deg, #1a1500, #302800);
}

.pc4 {
  background: linear-gradient(135deg, #100a1a, #221840);
}

.pc5 {
  background: linear-gradient(135deg, #1e0e12, #2d1425);
}

.pc6 {
  background: linear-gradient(135deg, #0a161a, #142a30);
}

.pc7 {
  background: linear-gradient(135deg, #1a0e0a, #302018);
}

.pc8 {
  background: linear-gradient(135deg, #180a1a, #2a1530);
}

.pc9 {
  background: linear-gradient(135deg, #0a1a12, #183028);
}

.pcard-body {
  background: var(--dark2);
  padding: 1.5rem;
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: none;
}

.pcat-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: .6rem;
}

.pcard-body h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .4rem;
}

.pcard-body p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: .8rem;
}

.pcard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--muted);
}

.pcard-result {
  color: var(--brand-light);
  display: flex;
  align-items: center;
  gap: .3rem;
  font-weight: 600;
}

/* ─── PORTFOLIO PAGE: Case Study ─── */
#case-study {
  background: var(--dark2);
  padding: 6rem 0;
}

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

.cs-visual {
  border-radius: 24px;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid rgba(198, 48, 135, .15);
  background: linear-gradient(135deg, #1e0f18, #2d1030);
}

.cs-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 26px 26px;
}

.cs-ico {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.cs-vis-title {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cs-stats {
  display: flex;
  gap: .8rem;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  width: 100%;
}

.cs-stat {
  flex: 1;
  background: rgba(198, 48, 135, .14);
  border: 1px solid rgba(198, 48, 135, .2);
  border-radius: 12px;
  padding: .9rem .5rem;
  text-align: center;
}

.cs-stat-n {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.cs-stat-l {
  font-size: .68rem;
  color: var(--muted);
  margin-top: .2rem;
}

.cs-content h2 {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
}

.cs-content h2 span {
  color: var(--brand);
}

.cs-content>p {
  font-size: .93rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.cs-points {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 1.5rem;
}

.cs-point {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}

.cs-point-ico {
  color: var(--brand-light);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.cs-point p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0;
}

@media(max-width:991px) {
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── PORTFOLIO PAGE: Testimonials ─── */
#testimonials {
  padding: 6rem 0;
}

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

.t-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 2rem;
  transition: all .35s;
}

.t-card:hover {
  border-color: rgba(198, 48, 135, .3);
  transform: translateY(-4px);
}

.stars {
  color: #f5c518;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .15em;
}

.t-card>p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.t-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.t-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .88rem;
}

.t-role {
  font-size: .75rem;
  color: var(--muted);
}

@media(max-width:991px) {
  .t-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CONTACT PAGE: Info Cards ─── */
.cinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.cinfo-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: all .35s;
}

.cinfo-card:hover {
  border-color: rgba(198, 48, 135, .3);
  background: rgba(198, 48, 135, .06);
  transform: translateY(-4px);
}

.cinfo-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(198, 48, 135, .14);
  border: 1px solid rgba(198, 48, 135, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-light);
  margin: 0 auto 1rem;
}

.cinfo-card h6 {
  font-family: var(--fh);
  font-weight: 700;
  margin-bottom: .4rem;
}

.cinfo-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.cinfo-card a {
  color: var(--brand-light);
  transition: color .2s;
}

.cinfo-card a:hover {
  color: var(--brand);
}

@media(max-width:768px) {
  .cinfo-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CONTACT PAGE: Form Wrapper ─── */
.cf-wrap {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 2.5rem;
}

.cf .form-select {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: #fff;
  padding: .9rem 1.2rem;
  font-family: var(--fb);
  font-size: .9rem;
  transition: all .25s;
}

.cf .form-select:focus {
  background: rgba(198, 48, 135, .07);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}

.cf .form-select option {
  background: var(--dark);
  color: #fff;
}

.budget-opts {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.okmsg {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  background: rgba(40, 200, 100, .1);
  border: 1px solid rgba(40, 200, 100, .3);
  color: #5de89b;
  font-size: .9rem;
  text-align: center;
}

.okmsg.show {
  display: block;
}

#contact-main {
  padding: 6rem 0;
}

/* ─── CONTACT PAGE: Social Grid ─── */
#social-connect {
  padding: 6rem 0;
  background: var(--dark2);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.social-card {
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: all .35s;
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.social-card:hover {
  transform: translateY(-6px);
}

.social-card i {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.social-card h6 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
}

.social-card p {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.social-card.ig {
  background: linear-gradient(135deg, rgba(225, 48, 108, .12), rgba(131, 58, 180, .12));
  border-color: rgba(225, 48, 108, .2);
}

.social-card.ig:hover {
  border-color: rgba(225, 48, 108, .5);
  box-shadow: 0 12px 40px rgba(225, 48, 108, .15);
}

.social-card.ig i {
  color: #e1306c;
}

.social-card.fb {
  background: rgba(24, 119, 242, .08);
  border-color: rgba(24, 119, 242, .15);
}

.social-card.fb:hover {
  border-color: rgba(24, 119, 242, .4);
  box-shadow: 0 12px 40px rgba(24, 119, 242, .12);
}

.social-card.fb i {
  color: #1877f2;
}

.social-card.li {
  background: rgba(10, 102, 194, .08);
  border-color: rgba(10, 102, 194, .15);
}

.social-card.li:hover {
  border-color: rgba(10, 102, 194, .4);
  box-shadow: 0 12px 40px rgba(10, 102, 194, .12);
}

.social-card.li i {
  color: #0a66c2;
}

.social-card.wa {
  background: rgba(37, 211, 102, .08);
  border-color: rgba(37, 211, 102, .15);
}

.social-card.wa:hover {
  border-color: rgba(37, 211, 102, .4);
  box-shadow: 0 12px 40px rgba(37, 211, 102, .12);
}

.social-card.wa i {
  color: #25d366;
}

@media(max-width:768px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── CONTACT PAGE: Map & Office Hours ─── */
#map-section {
  padding: 6rem 0;
}

.map-ph {
  border-radius: 20px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1628, #121f2a);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

.map-g {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-pin {
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

.map-title {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.map-addr {
  font-size: .85rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.office-hours {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.oh-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
}

.oh-day {
  font-family: var(--fh);
  font-weight: 600;
  font-size: .88rem;
}

.oh-time {
  font-size: .82rem;
  color: var(--muted);
}

.oh-badge {
  background: rgba(40, 200, 100, .15);
  border: 1px solid rgba(40, 200, 100, .3);
  color: #5de89b;
  border-radius: 50px;
  padding: .15rem .6rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ─── ABOUT PAGE: Story ─── */
#story {
  padding: 6rem 0;
}

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

.story-visual {}

.story-box {
  border-radius: 24px;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e0f18, #2d1030);
  border: 1px solid rgba(198, 48, 135, .15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.story-box-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 26px 26px;
}

.story-year {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--fh);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(198, 48, 135, .2);
  line-height: 1;
  z-index: 1;
}

.story-founded {
  position: relative;
  z-index: 1;
}

.story-founded h3 {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

.story-founded p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
}

.story-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  background: rgba(198, 48, 135, .15);
  border: 1px solid rgba(198, 48, 135, .3);
  border-radius: 14px;
  padding: .8rem 1rem;
  text-align: center;
}

.story-badge-n {
  font-family: var(--fh);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.story-badge-l {
  font-size: .68rem;
  color: var(--muted);
  margin-top: .15rem;
}

.story-text h2 {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
}

.story-text h2 span {
  color: var(--brand);
}

.story-text p {
  font-size: .93rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  margin-bottom: 1rem;
}

@media(max-width:991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── ABOUT PAGE: Values ─── */
#values {
  padding: 6rem 0;
  background: var(--dark2);
}

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

.val-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 2rem;
  transition: all .35s;
}

.val-card:hover {
  border-color: rgba(198, 48, 135, .3);
  background: rgba(198, 48, 135, .06);
  transform: translateY(-6px);
}

.val-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(198, 48, 135, .14);
  border: 1px solid rgba(198, 48, 135, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-light);
  margin-bottom: 1.2rem;
}

.val-card h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .5rem;
}

.val-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media(max-width:991px) {
  .val-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── ABOUT PAGE: Team ─── */
#team {
  padding: 6rem 0;
}

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

.team-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all .35s;
}

.team-card:hover {
  border-color: rgba(198, 48, 135, .3);
  transform: translateY(-4px);
}

.team-av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 3px solid rgba(198, 48, 135, .35);
}

.team-card h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .3rem;
}

.team-card .role {
  font-size: .78rem;
  color: var(--brand-light);
  font-weight: 600;
  margin-bottom: .8rem;
}

.team-card p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media(max-width:991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── ABOUT PAGE: Milestones / Timeline ─── */
#milestones {
  padding: 6rem 0;
  background: var(--dark2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2.5rem;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 22px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(198, 48, 135, .4), transparent);
  z-index: 0;
}

.tl-item:last-child::before {
  display: none;
}

.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(198, 48, 135, .3);
}

.tl-year {
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.tl-item h5 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .3rem;
}

.tl-item p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── ABOUT PAGE: Stats Banner ─── */
#stats-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a0a14, #0d0d0d, #12051a);
}

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

.stat-box {
  text-align: center;
}

.stat-n {
  font-family: var(--fh);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}

.stat-n::after {
  content: '+';
}

.stat-l {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .4rem;
}

@media(max-width:768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── ABOUT PAGE: Why Cols (Why Us Section) ─── */
#why-us {
  padding: 6rem 0;
}

.why-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--brand-light);
  font-size: 1.2rem;
}

.why-quote {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 2rem;
  font-style: italic;
  transition: all .35s;
}

.why-quote:hover {
  border-color: rgba(198, 48, 135, .3);
}

.why-quote p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: .8rem;
}

.qauthor {
  font-size: .82rem;
  color: var(--brand-light);
  font-weight: 600;
  font-style: normal;
}

@media(max-width:991px) {
  .why-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── BREADCRUMB ─── */
.bc,
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.bc a,
.breadcrumb-custom a {
  color: var(--muted);
  transition: color .2s;
}

.bc a:hover,
.breadcrumb-custom a:hover {
  color: var(--brand-light);
}

.bc span,
.breadcrumb-custom span {
  color: var(--brand-light);
}

/* =============================================
   COMPREHENSIVE RESPONSIVE RULES
   ============================================= */

/* ─── Tablet (max 991px) ─── */
@media (max-width: 991px) {

  /* Hero */
  .pg-hero,
  .pg-hero-section {
    min-height: 55vh;
    padding: 7rem 0 4rem;
  }

  .pg-title,
  h1.hero-title,
  h1.pg-t {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  .hero-stats,
  .hstats {
    gap: 1.5rem;
  }

  /* Service layout */
  .svc-layout,
  .svc-layout.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .svc-visual {
    min-height: 300px;
  }

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

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

  .cs-visual {
    min-height: 320px;
  }

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

  /* Contact */
  .cinfo-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .why-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  /* Section spacing */
  .svc-section,
  #page-cta,
  .faq-section,
  #story,
  #values,
  #team,
  #milestones,
  #stats-banner,
  #why-us,
  #case-study,
  #testimonials,
  #social-connect,
  #map-section,
  #contact-main,
  #intro,
  #offered,
  #why,
  #process,
  #packages,
  #portfolio-sample,
  #testimonial,
  #related {
    padding: 4rem 0;
  }

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

/* ─── Mobile (max 768px) ─── */
@media (max-width: 768px) {

  .pg-hero,
  .pg-hero-section {
    min-height: auto;
    padding: 6rem 0 3rem;
  }

  .pg-title,
  h1.hero-title,
  h1.pg-t {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .pg-sub,
  .hero-sub-page {
    font-size: .92rem;
  }

  /* Services */
  .svc-visual {
    min-height: 260px;
  }

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

  /* Portfolio */
  .fbtns {
    gap: .35rem;
  }

  .fbtn {
    padding: .4rem 1rem;
    font-size: .75rem;
  }

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

  .stats-strip-inner {
    gap: 1rem;
  }

  .ss-n {
    font-size: 1.5rem;
  }

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

  .cf-wrap {
    padding: 1.5rem;
  }

  /* About */
  .story-box {
    min-height: 320px;
  }

  .story-year {
    font-size: 3.5rem;
  }

  .stat-n {
    font-size: 2.2rem;
  }

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

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

  /* General section spacing */
  .svc-section,
  #page-cta,
  .faq-section,
  #story,
  #values,
  #team,
  #milestones,
  #stats-banner,
  #why-us,
  #case-study,
  #testimonials,
  #social-connect,
  #map-section,
  #contact-main,
  #intro,
  #offered,
  #why,
  #process,
  #packages,
  #portfolio-sample,
  #testimonial,
  #related {
    padding: 3.5rem 0;
  }

  /* FAQ */
  .faq-q {
    padding: 1rem 1.2rem;
    font-size: .88rem;
  }

  .faq-a p {
    padding: 0 1.2rem 1rem;
  }

  /* CTA */
  .cta-t {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
}

/* ─── Small Mobile (max 576px) ─── */
@media (max-width: 576px) {

  .pg-hero,
  .pg-hero-section {
    padding: 5.5rem 0 2.5rem;
  }

  .pg-title,
  h1.hero-title,
  h1.pg-t {
    font-size: 1.8rem;
  }

  .hero-stats,
  .hstats {
    flex-direction: column;
    gap: 1rem;
  }

  /* Services */
  .svc-visual {
    min-height: 220px;
  }

  .svc-content h2 {
    font-size: 1.5rem;
  }

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

  .svc-tabs-inner {
    gap: .3rem;
  }

  .stab {
    padding: .45rem 1rem;
    font-size: .75rem;
  }

  /* Portfolio */
  .fbtn {
    padding: .35rem .8rem;
    font-size: .72rem;
  }

  .cs-stats {
    flex-direction: column;
    gap: .5rem;
  }

  .cs-content h2 {
    font-size: 1.4rem;
  }

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

  .budget-opts,
  .budget-btns {
    flex-wrap: wrap;
  }

  .budget-btn {
    padding: .4rem .8rem;
    font-size: .72rem;
  }

  /* About */
  .val-grid {
    grid-template-columns: 1fr;
  }

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

  .story-box {
    min-height: 260px;
  }

  .story-year {
    font-size: 2.5rem;
  }

  .stat-n {
    font-size: 1.8rem;
  }

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

  .tl-item {
    gap: 1rem;
  }

  /* Related */
  .rel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
  }

  .rel-card {
    padding: 1.2rem .6rem;
  }

  /* Section spacing */
  .svc-section,
  #page-cta,
  .faq-section,
  #story,
  #values,
  #team,
  #milestones,
  #stats-banner,
  #why-us,
  #case-study,
  #testimonials,
  #social-connect,
  #map-section,
  #contact-main,
  #intro,
  #offered,
  #why,
  #process,
  #packages,
  #portfolio-sample,
  #testimonial,
  #related {
    padding: 3rem 0;
  }

  .cta-t {
    font-size: 1.5rem;
  }

  .btn-cta2 {
    padding: .8rem 2rem;
    font-size: .88rem;
  }
}


/* Custom cursor elements - hidden by default, shown only if JS activates them */
#cursor-dot {
  display: none;
}

#cursor-ring {
  display: none;
}


/* ── VARIABLES ── */
/* ── SCROLLBAR ── */
.page-template-page-get-consultation ::-webkit-scrollbar {
  width: 3px
}

.page-template-page-get-consultation ::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 2px
}

/* ── PROGRESS BAR ── */
.page-template-page-get-consultation #progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--brand), #ff80c0, var(--brand-light));
  z-index: 9997;
  width: 0%;
  transition: width 0.1s
}

/* ── TOP TRUST BAR ── */
.page-template-page-get-consultation #trust-bar {
  background: linear-gradient(135deg, var(--brand-dark), #6b11a8);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  position: relative;
  z-index: 100
}

.page-template-page-get-consultation .trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: tblink 1.4s ease-in-out infinite
}

@keyframes tblink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ── HERO SECTION ── */
.page-template-page-get-consultation #hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem
}

/* Hero background layers */
.page-template-page-get-consultation .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(198, 48, 135, 0.18) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(100, 20, 200, 0.15) 0%, transparent 55%), linear-gradient(170deg, #080810 0%, #0e0820 50%, #080810 100%)
}

/* Grid texture */
.page-template-page-get-consultation .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(198, 48, 135, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(198, 48, 135, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite
}

@keyframes gridShift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 60px 60px, 60px 60px;
  }
}

/* ── GEOMETRIC FLOATING SHAPES ── */
.page-template-page-get-consultation .geo {
  position: absolute;
  pointer-events: none;
  animation: geoFloat linear infinite
}

/* Large circles */
.page-template-page-get-consultation .geo-c1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(198, 48, 135, 0.12);
  top: -150px;
  right: -150px;
  animation: geoRotate 30s linear infinite, geoPulse 8s ease-in-out infinite
}

.page-template-page-get-consultation .geo-c2 {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(198, 48, 135, 0.18);
  top: 20%;
  right: 8%;
  animation: geoRotate 20s linear infinite reverse, geoPulse 6s ease-in-out infinite 1s
}

.page-template-page-get-consultation .geo-c3 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(198, 48, 135, 0.25);
  top: 60%;
  left: 4%;
  animation: geoRotate 12s linear infinite, geoPulse 4s ease-in-out infinite
}

/* Rectangles */
.page-template-page-get-consultation .geo-r1 {
  width: 200px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  top: 15%;
  left: 5%;
  animation: geoFloat 18s ease-in-out infinite;
  transform-origin: center
}

.page-template-page-get-consultation .geo-r2 {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(198, 48, 135, 0.15);
  border-radius: 16px;
  bottom: 25%;
  right: 6%;
  animation: geoFloat 14s ease-in-out infinite reverse
}

.page-template-page-get-consultation .geo-r3 {
  width: 60px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  bottom: 15%;
  left: 8%;
  animation: geoFloat 22s ease-in-out infinite 3s
}

/* Triangles (CSS clip) */
.page-template-page-get-consultation .geo-t1 {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(198, 48, 135, 0.1);
  top: 40%;
  left: 2%;
  animation: geoFloat 16s ease-in-out infinite 2s
}

.page-template-page-get-consultation .geo-t2 {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 44px solid rgba(255, 255, 255, 0.05);
  top: 75%;
  right: 15%;
  animation: geoFloat 10s ease-in-out infinite 1s
}

/* Dots */
.page-template-page-get-consultation .geo-d {
  border-radius: 50%;
  background: var(--brand);
  animation: geoPulse 3s ease-in-out infinite
}

.page-template-page-get-consultation .geo-d1 {
  width: 8px;
  height: 8px;
  top: 30%;
  left: 15%;
  animation-delay: 0s
}

.page-template-page-get-consultation .geo-d2 {
  width: 5px;
  height: 5px;
  top: 70%;
  left: 25%;
  animation-delay: 1s;
  opacity: 0.6
}

.page-template-page-get-consultation .geo-d3 {
  width: 10px;
  height: 10px;
  top: 20%;
  right: 30%;
  animation-delay: 0.5s
}

.page-template-page-get-consultation .geo-d4 {
  width: 6px;
  height: 6px;
  bottom: 30%;
  right: 20%;
  animation-delay: 1.5s;
  opacity: 0.7
}

.page-template-page-get-consultation .geo-d5 {
  width: 4px;
  height: 4px;
  top: 50%;
  right: 35%;
  animation-delay: 2s;
  opacity: 0.5
}

/* Animated rings */
.page-template-page-get-consultation .geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(198, 48, 135, 0.2);
  animation: ringExpand 6s ease-out infinite;
  pointer-events: none
}

.page-template-page-get-consultation .geo-ring1 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 15%;
  animation-delay: 0s
}

.page-template-page-get-consultation .geo-ring2 {
  width: 70px;
  height: 70px;
  top: 25%;
  right: 20%;
  animation-delay: 2s
}

.page-template-page-get-consultation .geo-ring3 {
  width: 50px;
  height: 50px;
  top: 55%;
  left: 30%;
  animation-delay: 4s
}

@keyframes geoFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(5deg);
  }

  66% {
    transform: translateY(15px) rotate(-4deg);
  }
}

@keyframes geoRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes geoPulse {

  0%,
  100% {
    opacity: .7;
    transform: scale(1);
  }

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

@keyframes ringExpand {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  70% {
    transform: scale(2.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Glow orbs */
.page-template-page-get-consultation .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbDrift ease-in-out infinite
}

.page-template-page-get-consultation .orb1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 48, 135, 0.25) 0%, transparent 70%);
  top: -100px;
  right: 0;
  animation: orbDrift 12s ease-in-out infinite
}

.page-template-page-get-consultation .orb2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100, 20, 200, 0.2) 0%, transparent 70%);
  bottom: 0;
  left: -80px;
  animation: orbDrift 9s ease-in-out infinite reverse
}

.page-template-page-get-consultation .orb3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(198, 48, 135, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: orbDrift 15s ease-in-out infinite 3s
}

@keyframes orbDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 20px) scale(1.1);
  }
}

/* ── HERO CONTENT ── */
.page-template-page-get-consultation .hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%
}

/* Left content */
.page-template-page-get-consultation .urgency-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(198, 48, 135, 0.12);
  border: 1px solid rgba(198, 48, 135, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-light);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: slideUp 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.page-template-page-get-consultation .urgency-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-light);
  animation: tblink 1.5s infinite
}

.page-template-page-get-consultation h1.hero-h .accent {
  color: var(--brand)
}

.page-template-page-get-consultation h1.hero-h .underline-anim {
  position: relative;
  display: inline-block
}

.page-template-page-get-consultation h1.hero-h .underline-anim::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--brand), var(--brand-light));
  border-radius: 2px;
  transform-origin: left;
  animation: underlineGrow 1s 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: scalex(0)
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

.page-template-page-get-consultation .hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

/* Trust proof items */
.page-template-page-get-consultation .trust-proof {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: slideUp 0.8s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.page-template-page-get-consultation .tp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8)
}

.page-template-page-get-consultation .tp-item i {
  color: #5de89b;
  font-size: 1rem;
  flex-shrink: 0
}

/* Social proof strip */
.page-template-page-get-consultation .social-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: slideUp 0.8s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.page-template-page-get-consultation .avatar-stack {
  display: flex
}

.page-template-page-get-consultation .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0
}

.page-template-page-get-consultation .av:first-child {
  margin-left: 0
}

.page-template-page-get-consultation .av1 {
  background: linear-gradient(135deg, #C63087, #9b2169)
}

.page-template-page-get-consultation .av2 {
  background: linear-gradient(135deg, #46c, #23a)
}

.page-template-page-get-consultation .av3 {
  background: linear-gradient(135deg, #2a6, #153)
}

.page-template-page-get-consultation .av4 {
  background: linear-gradient(135deg, #c83, #a61)
}

.page-template-page-get-consultation .av5 {
  background: linear-gradient(135deg, #a3c, #719)
}

.page-template-page-get-consultation .strip-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4
}

.page-template-page-get-consultation .strip-stars {
  color: #f5c518;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.15rem
}

/* ── FORM CARD ── */
.page-template-page-get-consultation .form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2.8rem 2.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: slideLeft 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(198, 48, 135, 0.1)
}

.page-template-page-get-consultation .form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--brand), var(--brand-light), var(--brand), transparent)
}

/* Shimmer animation on form */
.page-template-page-get-consultation .form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(198, 48, 135, 0.04) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none
}

@keyframes shimmer {

  0%,
  100% {
    background-position: -100% 0;
  }

  50% {
    background-position: 200% 0;
  }
}

.page-template-page-get-consultation .form-header {
  margin-bottom: 1.8rem;
  text-align: left
}

.page-template-page-get-consultation .form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(93, 232, 155, 0.1);
  border: 1px solid rgba(93, 232, 155, 0.25);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5de89b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem
}

.page-template-page-get-consultation .form-title {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem
}

.page-template-page-get-consultation .form-subtitle {
  font-size: 0.85rem;
  color: var(--muted)
}

/* Form inputs */
.page-template-page-get-consultation .form-group {
  margin-bottom: 1rem;
  position: relative
}

.page-template-page-get-consultation .form-group label {
  display: block;
  text-align: left;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}

.page-template-page-get-consultation .form-group {
  margin-bottom: 1rem;
  position: relative;
}

.page-template-page-get-consultation .form-group input,
.page-template-page-get-consultation .form-group select,
.page-template-page-get-consultation .form-group textarea {
  display: block;
  width: 100%;
  padding: .85rem 1rem .85rem 2.8rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: #fff;
  font-size: .9rem;
  transition: all .25s;
  outline: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.page-template-page-get-consultation .form-group textarea {
  padding-left: 1rem;
  resize: none;
}

.page-template-page-get-consultation .form-group select {
  padding-left: 1rem;
  cursor: pointer;
}

.page-template-page-get-consultation .form-group select option {
  background: #1a1a2e;
}

.page-template-page-get-consultation .form-group input::placeholder,
.page-template-page-get-consultation .form-group textarea::placeholder {
  color: rgba(255, 255, 255, .25);
}

.page-template-page-get-consultation .form-group input:focus,
.page-template-page-get-consultation .form-group select:focus,
.page-template-page-get-consultation .form-group textarea:focus {
  border-color: var(--brand);
  background: rgba(198, 48, 135, .07);
  box-shadow: 0 0 0 3px rgba(198, 48, 135, .15);
}

.page-template-page-get-consultation .input-icon {
  position: absolute;
  left: .9rem;
  bottom: .88rem;
  color: rgba(255, 255, 255, .3);
  font-size: .95rem;
  transition: color .25s;
  pointer-events: none;
  z-index: 1;
}

.page-template-page-get-consultation .form-group:focus-within .input-icon {
  color: var(--brand-light);
}

.page-template-page-get-consultation .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

/* Service checkboxes */
.page-template-page-get-consultation .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem
}

.page-template-page-get-consultation .svc-chk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.2s;
  user-select: none
}

.page-template-page-get-consultation .svc-chk:hover {
  border-color: rgba(198, 48, 135, 0.3);
  background: rgba(198, 48, 135, 0.05)
}

.page-template-page-get-consultation .svc-chk input {
  display: none
}

.page-template-page-get-consultation .svc-chk input:checked~.chk-box {
  background: var(--brand);
  border-color: var(--brand)
}

.page-template-page-get-consultation .svc-chk input:checked~.chk-box::after {
  display: block
}

.page-template-page-get-consultation .svc-chk input:checked~.chk-label {
  color: #fff
}

.page-template-page-get-consultation .chk-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.2s
}

.page-template-page-get-consultation .chk-box::after {
  content: "";
  display: none;
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg)
}

.page-template-page-get-consultation .chk-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65)
}

/* Submit button */
.page-template-page-get-consultation .btn-submit {
  width: 100%;
  padding: 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #aa1f76);
  color: #fff;
  border: none;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem
}

.page-template-page-get-consultation .btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s
}

.page-template-page-get-consultation .btn-submit:hover {
  transform: translatey(-3px);
  box-shadow: 0 20px 50px rgba(198, 48, 135, 0.45)
}

.page-template-page-get-consultation .btn-submit:hover::before {
  opacity: 1
}

.page-template-page-get-consultation .btn-submit:active {
  transform: translatey(-1px)
}

.page-template-page-get-consultation .btn-submit i {
  font-size: 1.1rem
}

/* Ripple effect */
.page-template-page-get-consultation .btn-submit .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.page-template-page-get-consultation .form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4)
}

.page-template-page-get-consultation .form-guarantee i {
  color: rgba(255, 255, 255, 0.3)
}

/* Error */
.page-template-page-get-consultation .ferr {
  color: #ff7a9a;
  font-size: 0.73rem;
  margin-top: 0.3rem;
  display: none
}

.page-template-page-get-consultation .ferr.show {
  display: block
}

/* ── SUCCESS STATE ── */
.page-template-page-get-consultation #success-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 16, 0.97);
  border-radius: 28px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 10
}

.page-template-page-get-consultation #success-overlay.show {
  display: flex
}

.page-template-page-get-consultation .success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(93, 232, 155, 0.2), rgba(93, 232, 155, 0.05));
  border: 2px solid rgba(93, 232, 155, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1)
}

@keyframes successPop {
  0% {
    transform: scale(0)
  }

  100% {
    transform: scale(1)
  }
}

.page-template-page-get-consultation #success-overlay h3 {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.6rem
}

.page-template-page-get-consultation #success-overlay p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7
}

/* ── PARALLAX FEATURE STRIP ── */
.page-template-page-get-consultation #features {
  position: relative;
  z-index: 5;
  padding: 6rem 2rem;
  background: radial-gradient(ellipse 70% 50% at 20% 50%, rgba(198, 48, 135, 0.08), transparent), var(--dark2);
  overflow: hidden
}

.page-template-page-get-consultation #features .geo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}

.page-template-page-get-consultation .feat-inner {
  max-width: 1200px;
  margin: 0 auto
}

.page-template-page-get-consultation .feat-header {
  text-align: center;
  margin-bottom: 4rem
}

.page-template-page-get-consultation .section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 0.8rem;
  display: block
}

.page-template-page-get-consultation .section-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em
}

.page-template-page-get-consultation .section-title span {
  color: var(--brand)
}

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

.page-template-page-get-consultation .feat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s
}

.page-template-page-get-consultation .feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--brand), var(--brand-light));
  transform: scalex(0);
  transform-origin: left;
  transition: transform 0.4s
}

.page-template-page-get-consultation .feat-card:hover {
  transform: translatey(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(198, 48, 135, 0.25)
}

.page-template-page-get-consultation .feat-card:hover::before {
  transform: scalex(1)
}

.page-template-page-get-consultation .feat-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(198, 48, 135, 0.2), rgba(198, 48, 135, 0.05));
  border: 1px solid rgba(198, 48, 135, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-light);
  margin-bottom: 1.4rem;
  transition: transform 0.3s
}

.page-template-page-get-consultation .feat-card:hover .feat-ico {
  transform: scale(1.1) rotate(-5deg)
}

.page-template-page-get-consultation .feat-card h4 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.6rem
}

.page-template-page-get-consultation .feat-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75
}

/* Animated number inside card */
.page-template-page-get-consultation .feat-stat {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-light);
  margin-top: 1rem
}

.page-template-page-get-consultation .feat-stat small {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.2rem
}

/* ── TESTIMONIALS ── */
.page-template-page-get-consultation #testimonials {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--dark3)
}

.page-template-page-get-consultation .test-inner {
  max-width: 1100px;
  margin: 0 auto
}

.page-template-page-get-consultation .test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem
}

.page-template-page-get-consultation .test-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s
}

.page-template-page-get-consultation .test-card:hover {
  transform: translatey(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(198, 48, 135, 0.2)
}

.page-template-page-get-consultation .test-card::before {
  content: "\"";
  font-family: var(--fh);
  font-size: 7rem;
  color: rgba(198, 48, 135, 0.08);
  position: absolute;
  top: -2rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none
}

.page-template-page-get-consultation .test-stars {
  color: var(--brand-light);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em
}

.page-template-page-get-consultation .test-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1
}

.page-template-page-get-consultation .test-author {
  display: flex;
  align-items: center;
  gap: 0.8rem
}

.page-template-page-get-consultation .test-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(198, 48, 135, 0.3)
}

.page-template-page-get-consultation .test-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.1rem
}

.page-template-page-get-consultation .test-role {
  font-size: 0.75rem;
  color: var(--muted)
}

/* ── URGENCY / BOTTOM CTA ── */
.page-template-page-get-consultation #bottom-ct #bottom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at center, rgba(198, 48, 135, 0.12), transparent 70%);
  animation: ctaGlow 5s ease-in-out infinite alternate
}

@keyframes ctaGlow {
  0% {
    opacity: .5;
    transform: scale(.9)
  }

  100% {
    opacity: 1;
    transform: scale(1.1)
  }
}

.page-template-page-get-consultation .cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto
}

.page-template-page-get-consultation .cta-inner h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem
}

.page-template-page-get-consultation .cta-inner h2 span {
  color: var(--brand)
}

.page-template-page-get-consultation .cta-inner p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7
}

.page-template-page-get-consultation .btn-cta-bottom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.25s
}

.page-template-page-get-consultation .btn-cta-bottom:hover {
  transform: translatey(-3px);
  box-shadow: 0 20px 50px rgba(198, 48, 135, 0.4);
  color: #fff
}

/* Countdown timer */
.page-template-page-get-consultation .countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem
}

.page-template-page-get-consultation .countdown-item {
  text-align: center
}

.page-template-page-get-consultation .countdown-num {
  font-family: var(--fh);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
  background: rgba(198, 48, 135, 0.1);
  border: 1px solid rgba(198, 48, 135, 0.2);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  min-width: 72px;
  display: block
}

.page-template-page-get-consultation .countdown-label {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem
}

.page-template-page-get-consultation .countdown-sep {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  align-self: flex-start;
  margin-top: 0.3rem
}

/* ── SERVICE PILLS ── */
.page-template-page-get-consultation .svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem
}

.page-template-page-get-consultation .svc-pill {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
  font-family: var(--fb)
}

.page-template-page-get-consultation .svc-pill:hover {
  border-color: rgba(198, 48, 135, 0.4);
  background: rgba(198, 48, 135, 0.07);
  color: #fff
}

.page-template-page-get-consultation .svc-pill.active {
  border-color: var(--brand);
  background: rgba(198, 48, 135, 0.18);
  color: #fff;
  box-shadow: 0 0 12px rgba(198, 48, 135, 0.25)
}

/* ── HERO H1 desktop fix ── */
.page-template-page-get-consultation h1.hero-h {
  font-family: var(--fh);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  word-break: keep-all
}

/* ── PARALLAX JS LAYER ── */
.page-template-page-get-consultation .parallax-layer {
  transition: transform 0.05s linear;
  will-change: transform
}

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

/* Reveal on scroll */
.page-template-page-get-consultation .reveal-up {
  opacity: 0;
  transform: translatey(50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1)
}

.page-template-page-get-consultation section#bottom-cta {
  padding: 4rem 0;
}

.page-template-page-get-consultation .reveal-up.visible {
  opacity: 1;
  transform: translatey(0)
}

.page-template-page-get-consultation .d1 {
  transition-delay: 0.1s
}

.page-template-page-get-consultation .d2 {
  transition-delay: 0.2s
}

.page-template-page-get-consultation .d3 {
  transition-delay: 0.3s
}

.page-template-page-get-consultation .d4 {
  transition-delay: 0.4s
}

.page-template-page-get-consultation .d5 {
  transition-delay: 0.5s
}

/* ── MOBILE ── */
@media (max-width: 960px) {
  .page-template-page-get-consultation .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .page-template-page-get-consultation .hero-left {
    text-align: center
  }

  .page-template-page-get-consultation .trust-proof {
    align-items: center
  }

  .page-template-page-get-consultation .social-strip {
    justify-content: center
  }

  .page-template-page-get-consultation .hero-desc {
    margin-left: auto;
    margin-right: auto
  }

  .page-template-page-get-consultation .form-card {
    order: -1
  }

  .page-template-page-get-consultation h1.hero-h {
    font-size: clamp(2rem, 6vw, 3rem)
  }
}

@media (max-width: 768px) {
  .page-template-page-get-consultation .feat-grid {
    grid-template-columns: 1fr
  }

  .page-template-page-get-consultation .test-grid {
    grid-template-columns: 1fr
  }

  .page-template-page-get-consultation .field-row {
    grid-template-columns: 1fr
  }

  .page-template-page-get-consultation .form-card {
    padding: 2rem 1.5rem
  }

  .page-template-page-get-consultation #cursor-dot,
  .page-template-page-get-consultation #cursor-ring {
    display: none
  }
}

@media (max-width: 500px) {
  .page-template-page-get-consultation .countdown-wrap {
    gap: 0.5rem
  }

  .page-template-page-get-consultation .countdown-num {
    font-size: 1.8rem;
    padding: 0.4rem 0.7rem;
    min-width: 55px
  }
}