/* ============================================================
   NIRZOX® STUDIO — MODERN 3D DIGITAL AGENCY DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --orange: #ff4500;
  --orange-light: #ff6a1a;
  --amber: #ff9100;
  --green-wa: #25d366;
  --green-wa-glow: rgba(37, 211, 102, 0.35);
  --black: #050608;
  --black-2: #0c0d12;
  --card-bg: rgba(15, 17, 24, 0.95);
  --card-hover: rgba(24, 27, 38, 0.98);
  --card-border: rgba(255, 255, 255, 0.1);
  --border-ora: rgba(255, 69, 0, 0.45);
  --muted: #a0a0b2;
  --dim: #65657a;
  --white: #ffffff;
  --glass: rgba(15, 17, 24, 0.92);
  --blur: blur(24px);
  --r-xl: 24px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 8px;
  --r-pill: 9999px;
  --shadow-ora: 0 0 45px rgba(255, 69, 0, 0.38);
  --glow-ora: 0 8px 36px rgba(255, 69, 0, 0.32);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  width: 100%;
  min-height: 100%;
  background-color: var(--black);
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  position: relative;
}

/* ─── Fixed Video Frame Canvas Background (Hero Only) ───────── */
canvas#video-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

/* Vignette Light Overlay */
.canvas-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 35%, rgba(5, 6, 8, 0.88) 100%),
    linear-gradient(to bottom, rgba(5, 6, 8, 0.35) 0%, transparent 30%, rgba(5, 6, 8, 0.95) 100%);
}

.page-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ─── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  background: rgba(5, 6, 8, 0.95);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--card-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(70, 127, 254, 0.5));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.logo:hover .brand-logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 22px rgba(70, 127, 254, 0.85));
}

.logo-desktop {
  display: block;
}

.logo-mobile {
  display: none;
}

.nav-capsule {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  padding: 5px 6px;
  backdrop-filter: var(--blur);
  list-style: none;
}

.nav-capsule a {
  display: block;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-capsule a:hover,
.nav-capsule a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-get-started {
  padding: 11px 26px;
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
}

/* ─── NAV TOGGLE BUTTON (MOBILE & TABLET) ───────────────────── */
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 0;
}

.nav-toggle:hover,
.nav-toggle.active {
  background: rgba(255, 69, 0, 0.15);
  border-color: var(--orange-light);
  box-shadow: var(--glow-ora);
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated Hamburger to X */
.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO SECTION (Drives Scroll Video) ────────────────────── */
.hero {
  min-height: 220vh;
  position: relative;
  padding-top: 130px;
  width: 100%;
}

.hero-sticky-wrap {
  position: sticky;
  top: 130px;
  height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-left {
  padding-right: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  background: rgba(16, 17, 24, 0.85);
  border: 1px solid var(--card-border);
  backdrop-filter: var(--blur);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 10px var(--orange-light);
}

.hero-title {
  font-size: clamp(2.9rem, 5.4vw, 4.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 38px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.95);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--shadow-ora);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 69, 0, 0.6);
}

.btn-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.avatar-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 17, 24, 0.7);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--card-border);
  backdrop-filter: var(--blur);
}

.avatar-imgs {
  display: flex;
}

.avatar-imgs img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--black);
  object-fit: cover;
}

.avatar-imgs img:not(:first-child) {
  margin-left: -10px;
}

.avatar-txt strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.avatar-txt span {
  font-size: 0.75rem;
  color: var(--dim);
}

.hero-stats {
  display: flex;
  gap: 16px;
}

.hstat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: var(--blur);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  min-width: 140px;
}

.hstat-num {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--white);
}

.hstat-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-right-badge {
  position: absolute;
  top: 20%;
  right: 0;
  background: rgba(12, 13, 20, 0.88);
  border: 1px solid var(--border-ora);
  backdrop-filter: var(--blur);
  border-radius: var(--r-md);
  padding: 16px 24px;
  box-shadow: var(--glow-ora);
  z-index: 3;
}

.hero-right-badge .label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hero-right-badge .value {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--orange-light);
}

/* ─── METRICS STRIP (Solid Opaque Dark Background) ───────────── */
.metrics-strip {
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: #06070a;
  padding: 28px 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.metrics-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.metric-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.metric-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
}

.metric-txt {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* ─── MINDS SECTION (Solid Opaque Dark Background) ───────────── */
.minds-section {
  padding: 110px 0;
  position: relative;
  z-index: 2;
  background: #06070a;
  width: 100%;
}

.minds-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-ora);
  background: rgba(255, 69, 0, 0.08);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.minds-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  width: 100%;
}

.minds-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.minds-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: rgba(255, 69, 0, 0.15);
  border-color: var(--border-ora);
  color: var(--white);
}

.minds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.minds-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  width: 100%;
}

.minds-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.minds-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.minds-text {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--white);
}

.minds-text strong {
  color: var(--orange-light);
}

.minds-geo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  font-size: 0.85rem;
  color: var(--muted);
}

.minds-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
  width: 100%;
}

.mcard-dark {
  background: var(--black-2);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 28px;
}

.mcard-num {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.mcard-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.mcard-partners {
  font-size: 0.75rem;
  color: var(--dim);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mcard-orange {
  background: linear-gradient(145deg, var(--orange) 0%, #ff5500 60%, #ff7800 100%);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-ora);
  min-height: 220px;
}

.fact-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.fact-num {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin: 10px 0 6px;
}

.fact-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.book-call-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.book-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ─── PURPOSE & FEATURED WORK SHOWCASE (Solid Dark BG) ─────── */
.purpose-section {
  padding: 110px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  background: #080a0e;
  border-top: 1px solid var(--card-border);
  width: 100%;
}

.purpose-title {
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.purpose-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.purpose-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 55px;
  line-height: 1.7;
}

/* 3-Column Modern Work Showcase Cards Grid */
.work-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}

.wcard {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.wcard:hover {
  border-color: var(--border-ora);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.22);
  transform: translateY(-4px);
}

.wcard img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.wcard-label {
  padding: 22px 24px;
  background: var(--card-bg);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex: 1;
}

/* ─── 14 SERVICES MATRIX SECTION (Solid Dark BG) ──────────── */
.services-section {
  padding: 110px 0 120px;
  position: relative;
  z-index: 2;
  background: #050608;
  border-top: 1px solid var(--card-border);
  width: 100%;
}

.svc-header-box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.svc-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-ora);
  background: rgba(255, 69, 0, 0.08);
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.15);
}

.svc-header-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.svc-header-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svc-header-desc {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
}

.svc-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.svc-filter {
  padding: 11px 26px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: var(--blur);
}

.svc-filter.active,
.svc-filter:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--glow-ora);
  transform: translateY(-2px);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  width: 100%;
}

.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-card:hover {
  border-color: var(--border-ora);
  box-shadow: 0 16px 45px rgba(255, 69, 0, 0.22);
  background: var(--card-hover);
}

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

.svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.svc-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 69, 0, 0.12);
  border: 1px solid var(--border-ora);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(255, 69, 0, 0.15);
}

.svc-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--orange-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.svc-name {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.3px;
}

.svc-desc {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.svc-list {
  list-style: none;
  margin-bottom: 24px;
}

.svc-list li {
  font-size: 0.86rem;
  color: var(--dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 9px;
  line-height: 1.45;
}

.svc-list li i {
  color: var(--orange-light);
  font-weight: 800;
  font-style: normal;
  flex-shrink: 0;
}

.svc-tech-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-tech-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.svc-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.svc-btn-primary {
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  flex: 1;
  text-align: center;
  border: none;
  box-shadow: 0 4px 16px rgba(255, 69, 0, 0.25);
}

.svc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
}

.svc-btn-sec {
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.svc-btn-sec:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--border-ora);
}

/* ─── CLIENT TESTIMONIALS SECTION (Solid Dark BG) ───────────── */
.testimonials-section {
  padding: 110px 0;
  position: relative;
  z-index: 2;
  background: #080a0e;
  border-top: 1px solid var(--card-border);
  width: 100%;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
  margin-top: 50px;
  width: 100%;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testi-card:hover {
  border-color: var(--border-ora);
  box-shadow: var(--glow-ora);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--amber);
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--orange-light);
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.testi-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.testi-role {
  font-size: 0.82rem;
  color: var(--muted);
}

.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ─── CONTACT US & WHATSAPP SECTION (Solid Dark BG) ────────── */
.contact-section {
  padding: 110px 0;
  position: relative;
  z-index: 2;
  background: #050608;
  border-top: 1px solid var(--card-border);
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  margin-top: 50px;
  width: 100%;
}

.whatsapp-banner {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(12, 13, 19, 0.95) 100%);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--r-xl);
  padding: 36px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px var(--green-wa-glow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  background: var(--green-wa);
  color: #000000;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px var(--green-wa-glow);
}

.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
}

.contact-card-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}

.cinfo-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cinfo-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid var(--border-ora);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.cinfo-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.cinfo-lbl {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── QUOTE BUILDER SECTION ─────────────────────────────────── */
.quote-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: #050608;
  border-top: 1px solid var(--card-border);
  width: 100%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid var(--border-ora);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.quote-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.chk-list::-webkit-scrollbar {
  width: 3px;
}

.chk-list::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

.chk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.chk-row:hover,
.chk-row.selected {
  background: rgba(255, 69, 0, 0.1);
  border-color: var(--border-ora);
}

.chk-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.chk-price {
  font-size: 0.82rem;
  color: var(--orange-light);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

.quote-summary {
  background: rgba(8, 9, 14, 0.92);
  border: 1px solid var(--border-ora);
  border-radius: var(--r-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--card-border);
}

.sum-label {
  font-size: 0.88rem;
  color: var(--muted);
}

.sum-val {
  font-size: 0.95rem;
  font-weight: 700;
}

.sum-total {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange-light);
  text-shadow: 0 0 20px rgba(255, 106, 26, 0.4);
}

.range-wrap {
  margin-bottom: 20px;
}

.range-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
  height: 5px;
  border-radius: 3px;
  outline: none;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(255, 69, 0, 0.25);
}

.form-control::placeholder {
  color: var(--dim);
}

.btn-full-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-ora);
  transition: all 0.3s ease;
}

.btn-full-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255, 69, 0, 0.5);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--card-border);
  background: #030406;
  padding: 65px 0 32px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
  width: 100%;
}

.footer-brand-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.65;
}

.foot-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}

.foot-col ul {
  list-style: none;
}

.foot-col li {
  margin-bottom: 10px;
}

.foot-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--dim);
  width: 100%;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-light);
}

.status-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 8px var(--orange-light);
  flex-shrink: 0;
}

/* ─── LOADER ─────────────────────────────────────────────────── */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: #050608;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--orange-light);
  animation: spin 0.8s linear infinite;
  margin-bottom: 18px;
  box-shadow: 0 0 24px rgba(255, 69, 0, 0.4);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.loader-status {
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: #888888;
  font-family: 'JetBrains Mono', monospace;
}

/* ─── MODAL ──────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.9);
  backdrop-filter: blur(18px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--black-2);
  border: 1px solid var(--border-ora);
  border-radius: 24px;
  width: 100%;
  max-width: 640px;
  padding: 40px;
  position: relative;
  transform: translateY(18px);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 69, 0, 0.2);
  color: var(--white);
}

/* ─── TOAST ──────────────────────────────────────────────────── */
.toast-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--black-2);
  border: 1px solid var(--orange-light);
  padding: 14px 20px;
  border-radius: var(--r-md);
  color: var(--white);
  box-shadow: var(--glow-ora);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ─── 4-STEP PROCESS ROADMAP ─────────────────────────────────── */
.process-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.08) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-card:hover {
  background: var(--card-hover);
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--glow-ora);
}

.process-step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.process-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange-light);
  background: rgba(255, 69, 0, 0.12);
  border: 1px solid rgba(255, 69, 0, 0.3);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
  width: fit-content;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.3;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.process-deliverables {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
}

/* ─── TECH STACK & ECOSYSTEM ─────────────────────────────────── */
.tech-section {
  padding: 100px 0;
  background: var(--black-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tech-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all 0.3s ease;
}

.tech-card:hover {
  border-color: rgba(255, 145, 0, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.tech-cat-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-cat-icon {
  font-size: 1.4rem;
}

.tech-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.tech-pill:hover {
  background: rgba(255, 69, 0, 0.15);
  border-color: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── AGENCY COMPARISON MATRIX ────────────────────────────────── */
.comp-section {
  padding: 100px 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comp-table th,
.comp-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-table th {
  background: rgba(255, 255, 255, 0.02);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.comp-table th.highlight-col,
.comp-table td.highlight-col {
  background: rgba(255, 69, 0, 0.08);
  border-left: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.comp-table th.highlight-col {
  color: var(--orange-light);
  font-size: 1.1rem;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.check-icon {
  color: var(--green-wa);
  font-weight: 800;
  margin-right: 6px;
}

.cross-icon {
  color: #ff4d4d;
  font-weight: 800;
  margin-right: 6px;
}

/* ─── FREQUENTLY ASKED QUESTIONS ─────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--black-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion {
  max-width: 860px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--orange-light);
}

.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--orange-light);
}

.faq-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  color: var(--orange-light);
  margin-left: 16px;
}

.faq-content {
  display: none;
  padding: 0 28px 22px 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-capsule {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12, 13, 18, 0.98);
    border: 1px solid var(--border-ora);
    border-radius: var(--r-xl);
    padding: 16px;
    backdrop-filter: blur(28px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.9), var(--glow-ora);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-capsule.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-capsule a {
    padding: 12px 18px;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: var(--r-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-capsule a:last-child {
    border-bottom: none;
  }

  .btn-get-started {
    font-size: 0.82rem;
    padding: 9px 16px;
  }
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .work-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

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

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

  .quote-inner {
    grid-template-columns: 1fr;
  }
}

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

  .logo-mobile {
    display: block;
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.6));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  }

  .logo:hover .logo-mobile {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.9));
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }

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

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

  .work-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

  .comp-table {
    font-size: 0.85rem;
  }

  .comp-table th,
  .comp-table td {
    padding: 14px 12px;
  }

  .btn-get-started {
    display: none;
  }
}