/* =============================================
   LUMINARY — MARKETING AGENCY
   style.css | Bootstrap-first, external CSS only
   Prefixes:
     nav-*       → Navbar (shared)
     hm-*        → Home page
     ab-*        → About page
     sv-*        → Services page
     pf-*        → Portfolio page
     ct-*        → Contact page
     ft-*        → Footer (shared)
     g-*         → Global / shared utilities
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap");

/* ---------- CSS Variables ---------- */
:root {
  --white: #ffffff;
  --cream: #faf8f4;
  --soft: #dbd2c39e;
  --accent: #ff5c35;
  --accent-h: #e0441e;
  --accent2: #ffb347;
  --dark: #1a1a2e;
  --mid: #4a4a6a;
  --light-txt: #9090aa;
  --border: #e8e4dc;
  --green: #22c55e;
  --blue: #3b82f6;
  --font-d: "Playfair Display", serif;
  --font-b: "DM Sans", sans-serif;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(26, 26, 46, 0.06);
  --shadow: 0 8px 40px rgba(26, 26, 46, 0.09);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.15);
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   GLOBAL / RESET
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-d);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* page switching */
/* .g-page {
  display: none;
} */
.g-page.g-active {
  display: block;
}

/* reveal on scroll */
.g-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.g-reveal.g-visible {
  opacity: 1;
  transform: translateY(0);
}
.g-reveal.g-d1 {
  transition-delay: 0.1s;
}
.g-reveal.g-d2 {
  transition-delay: 0.2s;
}
.g-reveal.g-d3 {
  transition-delay: 0.3s;
}
.g-reveal.g-d4 {
  transition-delay: 0.4s;
}
.g-reveal.g-d5 {
  transition-delay: 0.5s;
}

/* shared section label pill */
.g-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.g-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.g-pill.g-pill-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent2);
}
.g-pill.g-pill-light::before {
  background: var(--accent2);
}

/* shared section heading */
.g-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--dark);
}
.g-section-title span {
  color: var(--accent);
}
.g-section-title.g-light {
  color: var(--white);
}

.g-section-sub {
  font-size: 1.02rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 560px;
}
.g-section-sub.g-light {
  color: rgba(255, 255, 255, 0.6);
}

/* shared CTA buttons */
.g-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-family: var(--font-b);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
}
.g-btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 92, 53, 0.3);
  color: var(--white);
}

.g-btn-outline {
  /* display: inline-flex; */
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--mid);
  border-radius: 50px;
  padding: 0.8rem 1.9rem;
  font-family: var(--font-b);
  font-size: 0.94rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition:
  
    border-color var(--tr),
    background var(--tr),
    color var(--tr),
    transform var(--tr);
}
.g-btn-outline:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.g-btn-white {
  /* display: inline-flex; */
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  color: var(--accent);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-family: var(--font-b);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.g-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  color: var(--accent);
}

/* divider line */
.g-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* =============================================
   NAV — SHARED NAVBAR
   ============================================= */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  transition: box-shadow var(--tr);
}
.nav-bar.nav-scrolled {
  box-shadow: var(--shadow);
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.4px;
}
.nav-logo span {
  color: var(--accent);
}

.nav-link-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  margin: 0 0.25rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  transition:
    color var(--tr),
    background var(--tr);
  cursor: pointer;
  border: none;
  background: none;
}
.nav-link-item:hover,
.nav-link-item.nav-active {
  color: var(--white);
  background: var(--dark);
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  padding: 0.45rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background var(--tr),
    transform var(--tr);
}
.nav-cta:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  color: var(--white);
}

/* =============================================
   HOME PAGE  (prefix: hm-)
   ============================================= */

/* ── HM SECTION 1: HERO ─────────────────────── */
.hm-hero {
  min-height: 100vh;
  padding-top: 88px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hm-hero-blob-1 {
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(255, 178, 71, 0.678) 0%,
    transparent 68%
  );
  border-radius: 50%;
  top: -140px;
  right: -100px;
  pointer-events: none;
  filter: blur(60px);
}
.hm-hero-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 93, 53, 0.521) 0%,
    transparent 68%
  );
  border-radius: 50%;
  bottom: 0;
  left: -80px;
  pointer-events: none;
  filter: blur(60px);
}
.hm-hero-blob-3 {
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.199) 0%, transparent 68%);
  border-radius: 50%;
  bottom: -254px;
  right: 411px;
  pointer-events: none;
  filter: blur(60px);
}

.hm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.42rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hm-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: hm-pulse 2s infinite;
}
@keyframes hm-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hm-hero-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 1.1rem;
}
.hm-hero-title-hl {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hm-hero-desc {
  font-size: 1.08rem;
  color: var(--mid);
  line-height: 1.82;
  max-width: 900px;
  margin-bottom: 2.2rem;
}

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

.hm-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-bottom: 5rem;
  /* border-top: 1px solid var(--border); */
  flex-wrap: wrap;
}
.hm-stat-num {
  font-family: var(--font-d);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.hm-stat-lbl {
  font-size: 0.8rem;
  color: var(--light-txt);
  font-weight: 500;
  margin-top: 0.2rem;
}

.hm-hero-visual {
  position: relative;
}
.hm-hero-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hm-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: hm-float 4s ease-in-out infinite;
}
@keyframes hm-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hm-float-card-a {
  bottom: 48px;
  left: -36px;
  min-width: 186px;
}
.hm-float-card-b {
  top: 48px;
  right: -24px;
  min-width: 168px;
  animation-delay: -2s;
}

.hm-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hm-float-icon-or {
  background: #fff0ec;
}
.hm-float-icon-gn {
  background: #f0fdf4;
}

.hm-float-val {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.hm-float-lbl {
  font-size: 0.75rem;
  color: var(--light-txt);
  font-weight: 500;
}

/* ── HM SECTION 2: MARQUEE CLIENTS ────────── */
.hm-clients {
  background: var(--white);
  padding: 2.6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 30px;
}
.hm-clients-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-txt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 2.5rem;
  flex-shrink: 0;
}
.hm-marquee-wrap {
  overflow: hidden;
  flex: 1;
}
.hm-marquee-track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  width: max-content;
  animation: hm-scroll 20s linear infinite;
}
.hm-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes hm-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.hm-client-name {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: #dddad4;
  white-space: nowrap;
  transition: color var(--tr);
}
.hm-client-name:hover {
  color: var(--mid);
}

/* ── HM SECTION 3: SERVICES SNAPSHOT ───────── */
.hm-services {
  background: var(--white);
  padding: 6rem 0;
}

.hm-svc-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.2rem;
  height: 100%;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr);
  cursor: default;
}
.hm-svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.hm-svc-icon {
  width: 58px;
  height: 58px;
  /* background: var(--white); */
  /* border: 1px solid var(--border); */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.hm-svc-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.hm-svc-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.72;
  margin-bottom: 1.2rem;
}
.hm-svc-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  transition:
    background var(--tr),
    transform var(--tr),
    color var(--tr);
}
.hm-svc-card:hover .hm-svc-arrow {
  background: var(--accent);
  color: var(--white);
  transform: rotate(-45deg);
}

/* ── HM SECTION 4: PROCESS ──────────────────── */
.hm-process {
  background: var(--soft);
  padding: 6rem 0;
}

.hm-process-step {
  text-align: center;
  padding: 0 1rem;
}
.hm-process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0 auto 1.2rem;
  transition:
    background var(--tr),
    border-color var(--tr),
    color var(--tr);
}
.hm-process-step:hover .hm-process-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.hm-process-connector {
  position: absolute;
  top: 30px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.hm-process-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hm-process-desc {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.68;
}

/* ── HM SECTION 5: WHY CHOOSE US ──────────── */
.hm-why {
  background: var(--dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hm-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 75% 50%,
    rgba(255, 92, 53, 0.13) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hm-why-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hm-why-badge {
  position: absolute;
  bottom: 28px;
  right: -14px;
  background: var(--accent);
  color: var(--white);
  border-radius: 18px;
  padding: 1.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.hm-why-badge-num {
  font-family: var(--font-d);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}
.hm-why-badge-txt {
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.88;
}

.hm-why-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.hm-why-ico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.hm-why-item-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.28rem;
}
.hm-why-item-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
}

/* ── HM SECTION 6: TESTIMONIALS ────────────── */
.hm-testi {
  background: var(--cream);
  padding: 6rem 0;
}

.hm-testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.1rem;
  height: 100%;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.hm-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.hm-testi-stars {
  color: var(--accent2);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.hm-testi-quote {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hm-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.hm-testi-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}
.hm-testi-role {
  font-size: 0.8rem;
  color: var(--light-txt);
}

/* ── HM SECTION 7: CTA BANNER ───────────────── */
.hm-cta {
  background: var(--accent);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.hm-cta::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.hm-cta::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* =============================================
   ABOUT PAGE  (prefix: ab-)
   ============================================= */

/* ── AB SECTION 1: PAGE HERO ────────────────── */
.ab-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.212)),
    url("../Images/image.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ab-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 440px;
  height: 440px;
  background: radial-gradient(
    circle,
    rgba(255, 179, 71, 0.28) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.ab-hero-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.84rem;
  color: var(--light-txt);
  margin-bottom: 1.2rem;
}
.ab-hero-breadcrumb a {
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}
.ab-hero-breadcrumb a:hover {
  text-decoration: underline;
}
.ab-hero-breadcrumb span {
  color: var(--dark);
}
.ab-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.ab-hero-title span {
  color: var(--accent);
}
.ab-hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.78;
  max-width: 540px;
}

/* ── AB SECTION 2: STORY ────────────────────── */
.ab-story {
  background: var(--white);
  padding: 6rem 0;
}
.ab-story-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.ab-story-img-sm {
  border-radius: var(--radius);
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.ab-story-text {
  font-size: 0.96rem;
  color: var(--mid);
  line-height: 1.82;
  margin-bottom: 1.2rem;
}
.ab-story-highlight {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.4rem;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.02rem;
  color: var(--dark);
  font-style: italic;
  font-weight: 500;
  margin: 1.8rem 0;
}

/* ── AB SECTION 3: NUMBERS ──────────────────── */
.ab-numbers {
  background: var(--soft);
  padding: 0rem 0;
}
.ab-num-card {
  text-align: center;
  padding: 2rem;
}
.ab-num-val {
  font-family: var(--font-d);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ab-num-label {
  font-size: 0.9rem;
  color: var(--mid);
  font-weight: 500;
}

/* ── AB SECTION 4: VALUES ───────────────────── */
.ab-values {
  background: var(--white);
  padding: 6rem 0;
}
.ab-value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.2rem;
  height: 100%;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.ab-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.ab-value-ico {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ab-value-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ab-value-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.72;
}

/* ── AB SECTION 5: TEAM ─────────────────────── */
.ab-team {
  background: var(--cream);
  padding: 6rem 0;
}
.ab-team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.ab-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ab-team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.ab-team-body {
  padding: 1.4rem;
}
.ab-team-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.ab-team-role {
  font-size: 0.83rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.ab-team-bio {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.ab-team-socs {
  display: flex;
  gap: 0.5rem;
}
.ab-soc-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--mid);
  transition:
    background var(--tr),
    color var(--tr);
}
.ab-soc-btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── AB SECTION 6: AWARDS / PARTNERS ───────── */
.ab-awards {
  background: var(--dark);
  padding: 5rem 0;
}
.ab-award-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: background var(--tr);
}
.ab-award-item:hover {
  background: rgba(255, 255, 255, 0.09);
}
.ab-award-ico {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ab-award-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.ab-award-year {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}

/* ── AB SECTION 7: CTA ──────────────────────── */
.ab-cta {
  background: var(--accent);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.ab-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.sv-grid {
  background: var(--white);
  padding: 6rem 0;
}

.sv-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr);
}
.sv-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.sv-card-ico {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
}
.sv-ico-or {
  background: #fff0ec;
}
.sv-ico-yw {
  background: #fff8ed;
}
.sv-ico-gn {
  background: #f0fdf4;
}
.sv-ico-bl {
  background: #eff6ff;
}
.sv-ico-pk {
  background: #fdf2f8;
}
.sv-ico-vl {
  background: #f5f3ff;
}

.sv-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.sv-card-desc {
  font-size: 0.91rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.sv-feature-list {
  padding: 0;
  margin: 0;
}
.sv-feature-list li {
  font-size: 0.87rem;
  color: var(--mid);
  padding: 0.28rem 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.sv-feature-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ── SV SECTION 3: PROCESS ──────────────────── */
.sv-process {
  background: var(--soft);
  padding: 6rem 0;
}
.sv-process-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.sv-process-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(6px);
}
.sv-process-num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
}
.sv-process-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.sv-process-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── SV SECTION 4: PRICING ──────────────────── */
.sv-pricing {
  background: var(--white);
  padding: 6rem 0;
}

.sv-price-card {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.sv-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.sv-price-card.sv-featured {
  background: var(--dark);
  border-color: var(--accent);
  transform: scale(1.03);
}
.sv-price-card.sv-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.sv-price-tag {
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
    justify-self: start;
}
.sv-price-name {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0.9rem 0 0.25rem;
}
.sv-price-desc {
  font-size: 0.87rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.sv-featured .sv-price-name,
.sv-featured .sv-price-desc {
  color: rgba(255, 255, 255, 0.7);
}
.sv-featured .sv-price-name {
  color: var(--white);
}

.sv-price-amount {
  font-family: var(--font-d);
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.sv-featured .sv-price-amount {
  color: var(--white);
}
.sv-price-per {
  font-size: 0.85rem;
  color: var(--light-txt);
}
.sv-featured .sv-price-per {
  color: rgba(255, 255, 255, 0.45);
}

.sv-price-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}
.sv-featured .sv-price-hr {
  border-color: rgba(255, 255, 255, 0.12);
}

.sv-price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--mid);
  padding: 0.28rem 0;
}
.sv-featured .sv-price-row {
  color: rgba(255, 255, 255, 0.65);
}
.sv-price-check {
  color: var(--green);
  font-weight: 700;
}

/* ── SV SECTION 5: TOOLS ────────────────────── */
.sv-tools {
  background: var(--soft);
  padding: 5rem 0;
}
.sv-tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.sv-tool-badge:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.sv-tool-badge span {
  font-size: 1.2rem;
}

/* ── SV SECTION 6: FAQ ──────────────────────── */
.sv-faq {
  background: var(--white);
  padding: 6rem 0;
}
.sv-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow var(--tr);
}
.sv-faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.sv-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size:1.1rem;
  cursor: pointer;
  background: var(--cream);
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--tr);
}
.sv-faq-q:hover {
  background: var(--soft);
}
.sv-faq-q.sv-open {
  background: var(--dark);
  color: var(--white);
}
.sv-faq-icon {
  font-size: .81rem;
  transition: transform var(--tr);
  flex-shrink: 0;
}
.sv-faq-q.sv-open .sv-faq-icon {
  transform: rotate(45deg);
}
.sv-faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  transition:
    max-height 0.4s ease,
    padding var(--tr);
}
.sv-faq-a.sv-open {
  max-height: 200px;
  padding: 1.1rem 1.5rem;
}

/* ── PF SECTION 2: FILTER + GRID ───────────── */
.pf-grid-section {
  background: var(--white);
  padding: 5rem 0;
}

.pf-filters {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.pf-filter-btn {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.44rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition:
    background var(--tr),
    color var(--tr),
    border-color var(--tr);
}
.pf-filter-btn:hover,
.pf-filter-btn.pf-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.pf-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}
.pf-item-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pf-item:hover .pf-item-img {
  transform: scale(1.07);
}
.pf-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.88) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
}
.pf-item:hover .pf-item-overlay {
  opacity: 1;
}
.pf-item-title {
  font-family: var(--font-d);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
}
.pf-item-tag {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.2rem;
}
.pf-link-ico {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.75);
  transition:
    opacity var(--tr),
    transform var(--tr);
}
.pf-item:hover .pf-link-ico {
  opacity: 1;
  transform: scale(1);
}

/* ── PF SECTION 3: FEATURED CASE STUDY ──────── */
.pf-case {
  background: var(--dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.pf-case::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 179, 71, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.pf-case-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.pf-case-label {
  color: var(--accent2);
  background: rgba(255, 179, 71, 0.12);
}
.pf-case-label::before {
  background: var(--accent2);
}
.pf-case-title {
  color: var(--white);
}
.pf-case-desc {
  color: rgba(255, 255, 255, 0.58);
}
.pf-case-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
}
.pf-case-stat-num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent2);
  line-height: 1;
}
.pf-case-stat-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
  text-align: center;
}

/* ── PF SECTION 4: CLIENT LOGOS ─────────────── */


/* ── PF SECTION 5: TESTIMONIAL ───────────────── */
.pf-testi {
  background: var(--white);
  padding: 6rem 0;
}
.pf-big-quote {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 2rem;
}
.pf-big-quote span {
  color: var(--accent);
}
.pf-testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}
.pf-testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}
.pf-testi-role {
  font-size: 0.82rem;
  color: var(--light-txt);
}

/* ── PF SECTION 6: CTA ───────────────────────── */
.pf-cta {
  background: var(--accent);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.pf-cta::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -90px;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

/* =============================================
   CONTACT PAGE  (prefix: ct-)
   ============================================= */

/* ── CT SECTION 1: PAGE HERO ────────────────── */
.ct-hero {
  padding: 120px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 60%,
    rgba(255, 179, 71, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.ct-hero-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.2rem;
}
.ct-hero-breadcrumb a {
  color: var(--accent2);
  font-weight: 600;
  cursor: pointer;
}
.ct-hero-breadcrumb a:hover {
  text-decoration: underline;
}
.ct-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}
.ct-hero-title {
  color: var(--white);
}
.ct-hero-title span {
  color: var(--accent2);
}
.ct-hero-sub {
  color: rgba(255, 255, 255, 0.56);
}

/* ── CT SECTION 2: CONTACT INFO + FORM ──────── */
.ct-main {
  background: var(--white);
  padding: 6rem 0;
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  transition: box-shadow var(--tr);
  margin-bottom: 1.2rem;
}
.ct-info-card:hover {
  box-shadow: var(--shadow);
}
.ct-info-ico {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.ct-info-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--light-txt);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.18rem;
}
.ct-info-val {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
}
.ct-info-note {
  font-size: 0.8rem;
  color: var(--light-txt);
  margin-top: 0.1rem;
}

.ct-social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.ct-soc {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--mid);
  transition:
    background var(--tr),
    color var(--tr);
}
.ct-soc:hover {
  background: var(--accent);
  color: var(--white);
}

.ct-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.8rem;
}
.ct-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.ct-form-sub {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 2rem;
}
.ct-lbl {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  display: block;
}
.ct-input,
.ct-textarea,
.ct-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.76rem 1rem;
  font-family: var(--font-b);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition:
    border-color var(--tr),
    box-shadow var(--tr);
  margin-bottom: 1.2rem;
}
.ct-input:focus,
.ct-textarea:focus,
.ct-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 92, 53, 0.1);
}
.ct-textarea {
  resize: vertical;
  min-height: 130px;
}
.ct-select {
  appearance: none;
  cursor: pointer;
}

/* ── CT SECTION 3: MAP ───────────────────────── */
.ct-map {
  background: var(--soft);
  padding: 5rem 0;
}
.ct-map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.ct-map-placeholder {
  background: var(--soft);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--light-txt);
}
.ct-map-placeholder span {
  font-size: 3rem;
}
.ct-map-placeholder p {
  font-size: 0.92rem;
}

/* ── CT SECTION 4: QUICK STATS ───────────────── */
.ct-stats {
  background: var(--white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.ct-stat-item {
  text-align: center;
  padding: 1rem;
}
.ct-stat-num {
  font-family: var(--font-d);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ct-stat-lbl {
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 500;
}

/* ── CT SECTION 5: FAQ ───────────────────────── */
.ct-faq {
  background: var(--cream);
  padding: 6rem 0;
}
.ct-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow var(--tr);
}
.ct-faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.ct-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--tr);
}
.ct-faq-q:hover {
  background: var(--soft);
}
.ct-faq-q.ct-open {
  background: var(--dark);
  color: var(--white);
}
.ct-faq-ico {
  font-size: .81rem;
  transition: transform var(--tr);
  flex-shrink: 0;
}
.ct-faq-q.ct-open .ct-faq-ico {
  transform: rotate(45deg);
}
.ct-faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  transition:
    max-height 0.4s ease,
    padding var(--tr);
}
.ct-faq-a.ct-open {
  max-height: 200px;
  padding: 1.1rem 1.5rem;
}

/* ── CT SECTION 6: CTA ───────────────────────── */
.ct-cta {
  background: var(--accent);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.ct-cta::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

/* =============================================
   FOOTER  (prefix: ft-)
   ============================================= */
.ft-footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
}
.ft-brand {
  font-family: var(--font-d);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.ft-brand span {
  color: var(--accent);
}
.ft-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.46);
  max-width: 270px;
  margin-bottom: 1.5rem;
}
.ft-socs {
  display: flex;
  gap: 0.55rem;
}
.ft-soc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background var(--tr),
    color var(--tr);
}
.ft-soc:hover {
  background: var(--accent);
  color: var(--white);
}

.ft-heading {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.ft-links li {
  margin-bottom: 0.52rem;
}
.ft-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.46) !important;
  transition: color var(--tr);
  cursor: pointer;
}
.ft-links a:hover {
  color: var(--accent);
}

.ft-newsletter-input {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.ft-nl-inp {
  flex: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-family: var(--font-b);
  font-size: 0.88rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition: border-color var(--tr);
}
.ft-nl-inp::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.ft-nl-inp:focus {
  border-color: var(--accent);
}
.ft-nl-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--tr);
  white-space: nowrap;
}
.ft-nl-btn:hover {
  background: var(--accent-h);
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ft-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}
.ft-legal {
  display: flex;
  gap: 1.4rem;
}
.ft-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--tr);
}
.ft-legal a:hover {
  color: var(--accent);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .hm-float-card {
    display: none;
  }
  .hm-why-badge {
    right: 10px;
  }
  .sv-price-card.sv-featured {
    transform: scale(1);
  }
  .sv-price-card.sv-featured:hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 767.98px) {
  .hm-hero-stats {
    gap: 1.5rem;
  }
  .hm-hero-img {
    height: 320px;
  }
  .hm-why-img {
    height: 300px;
  }
  .ab-story-img-main {
    height: 300px;
  }
  .pf-case-img {
    height: 280px;
  }
  .ft-bottom {
    justify-content: center;
    text-align: center;
  }
  .ft-legal {
    justify-content: center;
  }
  .ct-form-wrap {
    padding: 1.8rem;
  }
}
.shape.v2 {
  bottom: 0px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
  width: 100%;
  height: auto;
}
.shape.v2 > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
}
.sk-section {
  /* background: var(--dark); */
  padding: 6rem 0 5rem;
  overflow: hidden;
  position: relative;
  font-family: var(--font-b);
}

/* ambient glow orbs */
.sk-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.sk-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 92, 53, 0.08);
  top: -160px;
  right: -100px;
}

.sk-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 179, 71, 0.07);
  bottom: -120px;
  left: -80px;
}

.sk-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.06);
  top: 50%;
  left: 40%;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.sk-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 3;
  padding: 0 1rem;
}

.sk-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.sk-pill-dot {
  width: 7px;
  height: 7px;
  background: var(--accent2);
  border-radius: 50%;
  animation: sk-pulse 2s infinite;
}

@keyframes sk-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 179, 71, 0.4);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 6px rgba(255, 179, 71, 0);
  }
}

.sk-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.sk-title span {
  color: var(--accent);
}

.sk-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   3-LANE STAGGERED MARQUEE
   Lane 1: slow  → right
   Lane 2: fast  → left
   Lane 3: medium→ right
   Each lane offset vertically + horizontally
   for a cascading waterfall feel
═══════════════════════════════════════ */
.sk-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* left+right fade */
.sk-stage::before,
.sk-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}

.sk-stage::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 20%, transparent);
}

.sk-stage::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 20%, transparent);
}

.sk-lane {
  display: flex;
  gap: 1.3rem;
  width: max-content;
  align-items: stretch;
}

.sk-lane-1 {
  animation: sk-right 35s linear infinite;
}

.sk-lane-2 {
  animation: sk-left 22s linear infinite;
  margin-left: -120px;
}

.sk-lane-3 {
  animation: sk-right 28s linear infinite;
  margin-left: -60px;
}

.sk-lane-1:hover,
.sk-lane-2:hover,
.sk-lane-3:hover {
  animation-play-state: paused;
}

@keyframes sk-right {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes sk-left {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ═══════════════════════════════════════
   CARD TYPES — 3 different shapes
═══════════════════════════════════════ */

/* TYPE A — Image card (tall) */
.sk-card-a {
  flex-shrink: 0;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
}

.sk-card-a:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 92, 53, 0.5);
  z-index: 20;
}

.sk-card-a-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sk-card-a:hover .sk-card-a-img {
  transform: scale(1.08);
}

.sk-card-a-body {
  padding: 0.9rem 1rem;
}

.sk-card-a-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.18rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
}

.sk-card-a-name {
  font-family: var(--font-d);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.sk-card-a-stat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}

.sk-card-a-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.1rem;
}

/* TYPE B — Stat card (wide, no image) */
.sk-card-b {
  flex-shrink: 0;
  width: 200px;
  border-radius: 20px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
  overflow: hidden;
}

.sk-card-b:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 179, 71, 0.5);
  z-index: 20;
}

.sk-card-b-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.sk-card-b-num {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sk-card-b-num span {
  color: var(--accent);
}

.sk-card-b-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.sk-card-b-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
  margin-top: 0.8rem;
  width: fit-content;
}

/* accent stripe top */
.sk-card-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}

.sk-b-orange::before {
  background: var(--accent);
}

.sk-b-amber::before {
  background: var(--accent2);
}

.sk-b-green::before {
  background: var(--green);
}

.sk-b-blue::before {
  background: #60a5fa;
}

/* TYPE C — Quote card */
.sk-card-c {
  flex-shrink: 0;
  width: 260px;
  border-radius: 20px;
  background:black;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.4rem 1.3rem;
  position: relative;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
  overflow: hidden;
}

.sk-card-c:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 92, 53, 0.4);
  z-index: 20;
}

.sk-card-c-quote {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.1rem;
}

.sk-card-c-quote::before {
  content: "\201C";
  font-family: var(--font-d);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 0.2rem;
}

.sk-card-c-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sk-card-c-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.sk-card-c-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.sk-card-c-role {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.35);
}

/* big quote watermark */
.sk-card-c::after {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 12px;
  font-family: var(--font-d);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

/* ── shared tag colors ── */
.sk-tag-or {
  background: rgba(255, 92, 53, 0.18);
  color: #ff7a5a;
}

.sk-tag-am {
  background: rgba(255, 179, 71, 0.18);
  color: var(--accent2);
}

.sk-tag-gn {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.sk-tag-bl {
  background: rgba(96, 165, 250, 0.15);
  color: #93c5fd;
}

/* ── shared ico colors ── */
.sk-ico-or {
  background: rgba(255, 92, 53, 0.15);
}

.sk-ico-am {
  background: rgba(255, 179, 71, 0.15);
}

.sk-ico-gn {
  background: rgba(34, 197, 94, 0.12);
}

.sk-ico-bl {
  background: rgba(96, 165, 250, 0.12);
}

/* shine sweep on all cards */
.sk-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.055),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.sk-card-a:hover .sk-shine,
.sk-card-b:hover .sk-shine,
.sk-card-c:hover .sk-shine {
  left: 130%;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.sk-footer {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 3;
}

.sk-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.88rem 2.2rem;
  font-family: var(--font-b);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

.sk-cta:hover {
  background: #e0441e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 92, 53, 0.32);
}

.sk-cta-ico {
  transition: transform 0.3s;
}

.sk-cta:hover .sk-cta-ico {
  transform: translateX(5px);
}
