:root {
  --blue: #1755D4;
  --blue-dark: #103FA0;
  --blue-light: #3E7DEE;
  --orange: #F5A300;
  --orange-dark: #D98C00;
  --logo-blue: #1755D4;
  --logo-yellow: #FEB902;
  --dark: #14181F;
  --gray-700: #4A5160;
  --gray-400: #8A93A3;
  --gray-100: #F4F7FB;
  --white: #FFFFFF;
  --radius: 10px;
  --header-h: 82px;
  --max-w: 1240px;

  /* ---- Theme tokens (LIGHT default) ---- */
  --page-bg: #FFFFFF;
  --text-primary: #14181F;
  --text-secondary: #4A5160;
  --text-muted: #8A93A3;

  --header-bg: rgba(255, 255, 255, 0);
  --header-bg-scrolled: rgba(255, 255, 255, 0.75);
  --header-border: rgba(20, 24, 31, 0.06);
  --header-text: #14181F;
  --header-text-hover: var(--blue);

  --hero-bg:
    radial-gradient(circle at 88% 10%, rgba(254, 185, 2, 0.35), transparent 42%),
    radial-gradient(circle at 10% 92%, rgba(23, 85, 212, 0.16), transparent 48%),
    linear-gradient(160deg, #EAF1FF 0%, #F3F7FF 45%, #FFF8EA 100%);
  --hero-text: #14181F;
  --hero-sub-text: rgba(20, 24, 31, 0.68);
  --hero-eyebrow: var(--blue);

  --card-bg: #FFFFFF;
  --card-border: rgba(20, 24, 31, 0.08);

  --section-alt-bg: var(--gray-100);
}

[data-theme="dark"] {
  --page-bg: #0A0E1A;
  --text-primary: #F3F5F9;
  --text-secondary: #B7BFCC;
  --text-muted: #7E879A;

  --header-bg: rgba(10, 14, 26, 0);
  --header-bg-scrolled: rgba(10, 14, 26, 0.72);
  --header-border: rgba(255, 255, 255, 0.08);
  --header-text: #F3F5F9;
  --header-text-hover: #6FA0FF;

  --hero-bg:
    radial-gradient(circle at 88% 8%, rgba(254, 185, 2, 0.16), transparent 40%),
    radial-gradient(circle at 15% 100%, rgba(62, 125, 238, 0.20), transparent 50%),
    linear-gradient(160deg, #0A0E1A 0%, #0C1220 45%, #0E1526 100%);
  --hero-text: #F7F9FC;
  --hero-sub-text: rgba(243, 245, 249, 0.72);
  --hero-eyebrow: #7DA6FF;

  --card-bg: #121826;
  --card-border: rgba(255, 255, 255, 0.08);

  --section-alt-bg: #0E1422;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text-primary);
  background: var(--page-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(245, 163, 0, 0.28);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 163, 0, 0.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  height: var(--header-h);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: var(--header-bg-scrolled);
  border-bottom-color: var(--header-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(10, 14, 26, 0.06);
}

/* Inner pages (About, etc.) don't have a light hero behind the header like the
   homepage does, so the header stays solid/opaque at all times instead of the
   transparent-until-scrolled homepage behavior. */
.inner-page .site-header {
  background: var(--header-bg-scrolled);
  border-bottom-color: var(--header-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(10, 14, 26, 0.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-link { flex-shrink: 0; display: flex; align-items: center; gap: 0.55rem; }
.logo-img { height: 38px; width: auto; }
.logo-icon { height: 34px; width: auto; }
.logo-text {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--header-text);
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--header-text);
  padding: 0.5rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--header-text-hover); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--logo-yellow);
  transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--header-text-hover); }
.nav-link.active::after { width: 100%; }

.caret { font-size: 0.65rem; margin-top: 1px; }

.has-dropdown { position: relative; }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 1.1rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(10, 14, 26, 0.16);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 1.6rem;
  min-width: 720px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease, background 0.35s ease;
  border-top: 3px solid var(--logo-yellow);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--logo-yellow);
}
.dropdown-panel--simple {
  grid-template-columns: 1fr;
  min-width: 160px;
  padding: 0.6rem;
  gap: 0;
}
.dropdown-panel--simple a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.dropdown-panel--simple a:hover {
  color: var(--logo-yellow);
  background: rgba(254, 185, 2, 0.10);
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--header-text-hover);
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.dropdown-col a {
  display: block;
  font-size: 0.86rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  transition: color 0.15s ease, transform 0.15s ease;
}
.dropdown-col a:hover {
  color: var(--logo-yellow);
  transform: translateX(3px);
}

.header-cta { flex-shrink: 0; }

/* Theme toggle — circular sun/moon swap button */
.theme-toggle {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--header-border);
  background: transparent;
  color: var(--header-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.theme-toggle:hover {
  border-color: var(--logo-yellow);
  color: var(--logo-yellow);
  transform: rotate(12deg);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* CTA — solid blue pill with trailing arrow, consistent across themes */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  background: linear-gradient(120deg, var(--logo-blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.25s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 6px 16px rgba(23, 85, 212, 0.35);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.btn-cta:hover {
  background: linear-gradient(120deg, var(--logo-yellow) 0%, #FFD257 100%);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(254, 185, 2, 0.45);
  gap: 0.65rem;
  animation-play-state: paused;
}
.btn-cta-text { position: relative; }
.btn-arrow { width: 15px; height: 15px; flex-shrink: 0; }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(23, 85, 212, 0.35); }
  50% { box-shadow: 0 6px 22px rgba(23, 85, 212, 0.6); }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--header-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  padding: calc(var(--header-h) + 3.5rem) 2rem 5rem;
  background: var(--hero-bg);
  overflow: hidden;
  transition: background 0.45s ease;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--logo-yellow);
  letter-spacing: 0.03em;
  margin-bottom: 1.3rem;
  transition: color 0.35s ease;
}

.eyebrow-hero-dash {
  color: var(--hero-eyebrow);
}

.hero-headline {
  font-size: clamp(2.1rem, 3.6vw, 3.15rem);
  font-weight: 800;
  line-height: 1.14;
  color: var(--hero-text);
  margin-bottom: 1.3rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.hero-headline .highlight {
  color: var(--logo-blue);
}
[data-theme="dark"] .hero-headline .highlight {
  color: #6FA0FF;
}
.highlight-yellow {
  color: var(--logo-yellow);
}

.hero-sub {
  font-size: 1.06rem;
  color: var(--hero-sub-text);
  max-width: 520px;
  margin-bottom: 0;
  transition: color 0.35s ease;
}

/* Hero visual — small auto-scrolling image filmstrip */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.image-marquee {
  width: 100%;
  height: 320px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  height: 100%;
  animation: marqueeScroll 130s linear infinite;
}

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

.marquee-item {
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 16px 32px rgba(9, 20, 56, 0.18);
  transition: border-color 0.35s ease;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ ABOUT / SERVICES VIDEO ============ */
.about-video {
  padding: 4.5rem 2rem 3rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.about-video-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about-video-heading {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.28;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.about-video-text {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  transition: color 0.35s ease;
}

.about-video-btn {
  margin-top: 1.6rem;
  padding: 0.85rem 1.7rem;
  font-size: 0.95rem;
}

.about-video-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Generic scroll-triggered fade-up (used by the about-video text) */
.reveal-up {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), translate 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.in-view {
  opacity: 1;
  translate: 0 0;
}
.reveal-up-delay-1 { transition-delay: 0.12s; }
.reveal-up-delay-2 { transition-delay: 0.24s; }

.about-video-player {
  height: 460px;
  max-width: 100%;
  width: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 16px 32px rgba(9, 20, 56, 0.18);
  background: #000;
}

/* ============ WHY CHOOSE CREATIVESTEP ============ */
.why-choose {
  padding: 3rem 2rem 5.5rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.why-choose-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.why-choose-header {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.grad-text {
  background: linear-gradient(90deg, var(--logo-blue) 0%, #3E7DEE 45%, var(--logo-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-choose-heading {
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 800;
  line-height: 1.28;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.why-choose-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.35s ease;
}

.why-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.why-block.reverse { flex-direction: row-reverse; }
.why-block.reverse .why-block-copy { padding-left: clamp(1rem, 3vw, 3rem); }

.why-block-copy {
  flex: 1 1 40%;
  min-width: 0;
}

.why-block-visual {
  flex: 0 0 56%;
  max-width: 600px;
}

.why-block-heading {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.why-block-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  transition: color 0.35s ease;
}

.why-visual-card {
  width: 100%;
  height: 352px;
  background: linear-gradient(135deg, #0E3A9E 0%, #1755D4 42%, #3E7DEE 72%, #FEB902 130%);
  border: none;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px rgba(15, 40, 110, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-illustration {
  width: 100%;
  height: 100%;
}

/* ============ TRUSTED BY / CERTIFICATIONS ============ */
.trusted-by {
  padding: 4.5rem 2rem 4.5rem;
  background: var(--section-alt-bg);
  transition: background 0.4s ease;
}

.trusted-by-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
[data-theme="dark"] .section-eyebrow { color: #6FA0FF; }
.eyebrow-dash { color: var(--logo-yellow); }

.trusted-by-heading {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.28;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.text-blue { color: var(--blue); }
[data-theme="dark"] .text-blue { color: #6FA0FF; }
.text-yellow { color: var(--logo-yellow); }

.trusted-by-sub {
  max-width: 680px;
  margin: 0 auto 2.2rem;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  transition: color 0.35s ease;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: stretch;
  column-gap: 1.4rem;
  row-gap: 1.4rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--card-bg);
  border: 1px solid rgba(23, 85, 212, 0.35);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 6px 18px rgba(10, 14, 26, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.35s ease, border-color 0.35s ease,
              opacity 0.6s ease, translate 0.6s ease;
  opacity: 0;
  translate: 0 22px;
}

[data-theme="dark"] .cert-item {
  border-color: rgba(111, 160, 255, 0.35);
}

.cert-item.in-view {
  opacity: 1;
  translate: 0 0;
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 14, 26, 0.12);
  border-color: var(--logo-yellow);
}

.cert-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

i.cert-icon {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--icon-color, var(--gray-700));
}

svg.cert-icon {
  width: 30px;
  height: 30px;
}

img.cert-icon {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
}

[data-theme="dark"] img.cert-icon {
  background: #FFFFFF;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.35s ease;
}

.cert-item:nth-child(5) svg.cert-icon,
.cert-item:nth-child(6) svg.cert-icon {
  width: auto;
  height: 26px;
}

.cert-item:hover .cert-icon {
  transform: translateY(-2px);
}

.cert-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ============ TRUSTED DIGITAL GROWTH PARTNER ============ */
.growth-partner {
  padding: 3.5rem 2rem;
  background: linear-gradient(120deg, #0E3A9E 0%, #1755D4 40%, #3E7DEE 70%, #FEB902 130%);
}

.growth-partner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.growth-partner-heading {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.growth-partner-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 500px;
  margin-bottom: 0.8rem;
}

.growth-partner-btn {
  margin-top: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.85rem;
  background: #FFFFFF;
  color: var(--logo-blue);
}
.growth-partner-btn:hover {
  background: var(--logo-yellow);
  color: var(--dark);
}

.growth-partner-visual {
  display: flex;
  justify-content: center;
}

.growth-chart-card {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 460 / 340;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============ HOW WE HELP BUSINESSES GROW ONLINE (TABS) ============ */
.growth-tabs-section {
  padding: 5rem 2rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.growth-tabs-header {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.growth-tabs-heading {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.28;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.growth-tabs-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 0.9rem;
  transition: color 0.35s ease;
}

.growth-tabs-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;
}

.growth-tabs-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
}

.growth-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: auto;
  max-width: 100%;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
  background: var(--card-bg);
  border: 1px solid rgba(23, 85, 212, 0.35);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-theme="dark"] .growth-tab-btn {
  border-color: rgba(111, 160, 255, 0.35);
}

.growth-tab-btn i {
  font-size: 0.92rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.growth-tab-btn:hover {
  border-color: var(--logo-yellow);
  transform: translateY(-2px);
}

.growth-tab-btn.active {
  background: linear-gradient(120deg, #0E3A9E 0%, #1755D4 40%, #3E7DEE 75%, #FEB902 130%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 14px 28px rgba(15, 40, 110, 0.28);
  transform: translateY(-2px);
}

.growth-tabs-panel {
  border-radius: 20px;
  background: linear-gradient(135deg, #0E3A9E 0%, #1755D4 42%, #3E7DEE 72%, #FEB902 130%);
  box-shadow: 0 24px 48px rgba(15, 40, 110, 0.24);
  padding: 2.2rem 2.4rem;
  display: flex;
  align-items: center;
}

.growth-tab-content {
  display: none;
  animation: growthTabFade 0.4s ease;
}

.growth-tab-content.active {
  display: block;
}

.growth-tab-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 1.1rem;
}
.growth-tab-content p:last-child { margin-bottom: 0; }

.seo-tab-starting {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.2rem;
}

.seo-tab-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
}
.seo-tab-price span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 0.3rem;
}

.seo-tab-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
}
.seo-tab-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.growth-tabs-panel .btn-cta {
  background: #FFFFFF;
  color: var(--logo-blue);
}
.growth-tabs-panel .btn-cta:hover {
  background: var(--logo-yellow);
  color: var(--dark);
}

@keyframes growthTabFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ INDUSTRIES WE SERVE (STATIC, NO ANIMATION) ============ */
.industries-section {
  padding: 5.5rem 2rem 6rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.industries-header {
  max-width: 880px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.industries-heading {
  font-size: clamp(1.4rem, 2.5vw, 2.05rem);
  font-weight: 800;
  line-height: 1.24;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.industries-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.industry-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 1rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.industry-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

.industry-card.plain-card {
  background: var(--card-bg);
  border: 1px solid rgba(23, 85, 212, 0.35);
  box-shadow: 0 8px 20px rgba(10, 14, 26, 0.05);
}
[data-theme="dark"] .industry-card.plain-card {
  border-color: rgba(111, 160, 255, 0.35);
}
.industry-card.plain-card:hover {
  box-shadow: 0 16px 30px rgba(10, 14, 26, 0.10);
  border-color: var(--logo-yellow);
}
.industry-card.plain-card .industry-icon {
  background: rgba(23, 85, 212, 0.08);
  color: var(--logo-blue);
}
[data-theme="dark"] .industry-card.plain-card .industry-icon {
  background: rgba(111, 160, 255, 0.14);
  color: #6FA0FF;
}
.industry-card.plain-card .industry-name {
  color: var(--text-primary);
}

.industry-card.grad-card {
  background: linear-gradient(135deg, #0E3A9E 0%, #1755D4 42%, #3E7DEE 72%, #FEB902 130%);
  border: none;
  box-shadow: 0 24px 48px rgba(15, 40, 110, 0.28);
}
.industry-card.grad-card:hover {
  box-shadow: 0 20px 40px rgba(15, 40, 110, 0.36);
}
.industry-card.grad-card .industry-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}
.industry-card.grad-card .industry-name {
  color: #FFFFFF;
}

/* ============ BUILD YOUR BUSINESS CTA ============ */
.build-cta {
  padding: 4.5rem 2rem;
  background: linear-gradient(90deg, #0E3A9E 0%, #1755D4 38%, #3E7DEE 70%, #FEB902 130%);
}

.build-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.build-cta-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.build-cta-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.build-cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.build-cta-input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: #FFFFFF;
  box-shadow: 0 10px 24px rgba(9, 20, 56, 0.18);
}
.build-cta-input::placeholder { color: #8A93A3; }
.build-cta-input:focus {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.build-cta-btn {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  background: linear-gradient(90deg, var(--logo-blue) 0%, #2E6BE6 100%);
  box-shadow: 0 12px 26px rgba(9, 20, 56, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.build-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 32px rgba(9, 20, 56, 0.34);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .dropdown-panel { min-width: 600px; grid-template-columns: repeat(3, 1fr); }
  .dropdown-panel--simple { min-width: 160px; grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); column-gap: 1.2rem; row-gap: 1.2rem; }
}

@media (max-width: 960px) {
  .growth-tabs-inner { grid-template-columns: 1fr; }
  .growth-tabs-panel { padding: 1.8rem; }
  .growth-tabs-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .growth-partner-inner { grid-template-columns: 1fr; text-align: center; }
  .growth-partner-text { margin-left: auto; margin-right: auto; }
  .growth-partner-visual { order: -1; max-width: 380px; margin: 0 auto; }

  .build-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .build-cta-text { margin-left: auto; margin-right: auto; }
  .build-cta-form { max-width: 480px; margin: 0 auto; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--page-bg);
    flex-direction: column;
    padding: 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.28s ease, background 0.35s ease;
    overflow-y: auto;
    justify-content: flex-start;
  }
  .main-nav.open { transform: translateX(0); }

  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-list > li { width: 100%; border-bottom: 1px solid var(--header-border); }
  .nav-link { padding: 0.9rem 0; width: 100%; justify-content: space-between; }
  .nav-link::after { display: none; }

  .dropdown-panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: none;
    display: none;
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 0 0 1rem 0.5rem;
    gap: 1rem;
  }
  .has-dropdown.open .dropdown-panel { display: grid; }

  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { margin-top: 2.5rem; }

  .about-video-inner { grid-template-columns: 1fr; text-align: center; }
  .about-video-text { margin-left: auto; margin-right: auto; }
  .about-video-visual { margin-top: 2.5rem; order: -1; }

  .why-block,
  .why-block.reverse {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
  }
  .why-block-visual { order: -1; max-width: 380px; margin: 0 auto; }
  .why-block-text { margin-left: auto; margin-right: auto; }
  .why-block.reverse .why-block-copy { padding-left: 0; }
  .industry-row { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .industries-heading { white-space: normal; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 1.2rem; }
  .logo-img { height: 32px; }
  .logo-icon { height: 28px; }
  .logo-text { font-size: 1.02rem; }
  .hero { padding: 3rem 1.2rem 3.5rem; }
  .image-marquee { height: 280px; }
  .about-video { padding: 3rem 1.2rem; }
  .about-video-player { height: 380px; }
  .trusted-by { padding: 3rem 1.2rem; }
  .cert-grid { grid-template-columns: 1fr; row-gap: 1rem; }
  .why-choose { padding: 3rem 1.2rem 3.5rem; }
  .why-choose-header { margin-bottom: 3rem; }
  .why-choose-heading { white-space: normal; }
  .industries-section { padding: 3.5rem 1.2rem 4rem; }
  .industries-header { margin-bottom: 2.5rem; }
  .industry-row { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .industry-card { padding: 0.9rem; }
  .industry-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .industry-name { font-size: 0.8rem; }
  .growth-partner { padding: 3rem 1.2rem; }
  .growth-tabs-section { padding: 3rem 1.2rem; }
  .growth-tab-btn { padding: 0.6rem 0.9rem; font-size: 0.84rem; }
  .growth-tabs-panel { padding: 1.5rem; }
  .seo-tab-features { grid-template-columns: 1fr; }
  .build-cta { padding: 3rem 1.2rem; }
}

/* ============ WHY CHOOSE CREATIVESTEP (GRADIENT SHOWCASE) ============ */
.digital-growth-section {
  padding: 3.75rem 2rem 4.25rem;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(135deg, #0E3A9E 0%, #1755D4 42%, #3E7DEE 72%, #FEB902 130%);
}

.digital-growth-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.digital-growth-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.digital-growth-eyebrow,
.digital-growth-eyebrow .eyebrow-dash {
  color: var(--logo-yellow);
}

[data-theme="dark"] .digital-growth-eyebrow {
  color: var(--logo-yellow);
}

.digital-growth-heading {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.digital-growth-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  align-items: center;
  gap: 1.5rem;
}

.digital-growth-col {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.digital-growth-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 20px 40px rgba(9, 20, 56, 0.22);
}

.digital-growth-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #12213F;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.digital-growth-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4A5468;
}

.digital-growth-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-growth-illustration {
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media (max-width: 1080px) {
  .digital-growth-grid { grid-template-columns: 1fr 1fr; }
  .digital-growth-visual { grid-column: 1 / -1; order: -1; margin-bottom: 1rem; }
  .digital-growth-illustration { max-width: 240px; }
  .digital-growth-heading { white-space: normal; }
}

@media (max-width: 720px) {
  .digital-growth-grid { grid-template-columns: 1fr; }
  .digital-growth-visual { order: -1; }
  .digital-growth-col { gap: 1.1rem; }
}

@media (max-width: 480px) {
  .digital-growth-section { padding: 3.5rem 1.2rem; }
  .digital-growth-header { margin-bottom: 2.5rem; }
  .digital-growth-card { padding: 1.3rem 1.4rem; }
}

/* ============ EXCLUSIVE OFFER ============ */
.exclusive-offer-section {
  padding: 5rem 2rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.exclusive-offer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.exclusive-offer-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1.3rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.exclusive-offer-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
  transition: color 0.35s ease;
}
.exclusive-offer-text:last-child { margin-bottom: 0; }

.exclusive-offer-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.exclusive-offer-card {
  width: 100%;
  aspect-ratio: 5 / 4;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.22), transparent 45%),
    linear-gradient(135deg, #0E3A9E 0%, #1755D4 42%, #3E7DEE 72%, #FEB902 130%);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 26px 54px rgba(15, 40, 110, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exclusive-offer-illustration {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@media (max-width: 960px) {
  .exclusive-offer-inner { grid-template-columns: 1fr; text-align: center; }
  .exclusive-offer-text { margin-left: auto; margin-right: auto; max-width: 560px; }
  .exclusive-offer-visual { order: -1; margin-bottom: 1rem; }
  .exclusive-offer-card { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .exclusive-offer-section { padding: 3.5rem 1.2rem; }
}

/* ============ FAQ ============ */
.faq-section {
  padding: 5.5rem 2rem 6rem;
  background: var(--section-alt-bg);
  transition: background 0.4s ease;
}

.faq-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq-heading {
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.35s ease;
}

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--logo-blue);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.35s ease;
}

.faq-item.open {
  border-color: var(--logo-blue);
  box-shadow: 0 10px 26px rgba(23, 85, 212, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--logo-blue); }
[data-theme="dark"] .faq-question:hover { color: #6FA0FF; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--logo-blue);
}
[data-theme="dark"] .faq-item.open .faq-chevron { color: #6FA0FF; }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.35s ease;
}

@media (max-width: 900px) {
  .faq-heading { white-space: normal; }
}

@media (max-width: 640px) {
  .faq-section { padding: 3.5rem 1.2rem 4rem; }
  .faq-header { margin-bottom: 2.2rem; }
  .faq-question { padding: 1rem 1.1rem; font-size: 0.94rem; }
  .faq-answer-inner p { padding: 0 1.1rem 1.1rem; font-size: 0.9rem; }
}

/* ============ FINAL CTA BANNER ============ */
.final-cta-section {
  padding: 3.5rem 2rem 4.5rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.final-cta-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  padding: 2.75rem 3rem;
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(115deg, #0E3A9E 0%, #1755D4 40%, #3E7DEE 70%, #FEB902 130%);
  box-shadow: 0 30px 60px rgba(15, 40, 110, 0.32);
}

.final-cta-arrow {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 48%;
  height: auto;
  aspect-ratio: 700 / 400;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  max-width: 640px;
}

.final-cta-heading {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.28;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.final-cta-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.85rem;
}
.final-cta-text:last-of-type { margin-bottom: 1.6rem; }

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: #FFFFFF;
  color: #1755D4;
  box-shadow: 0 10px 24px rgba(9, 20, 56, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  background: var(--logo-yellow);
  color: #12213F;
  box-shadow: 0 14px 30px rgba(9, 20, 56, 0.32);
}

@media (max-width: 720px) {
  .final-cta-card { padding: 3rem 1.8rem; text-align: center; }
  .final-cta-content { max-width: 100%; }
  .final-cta-heading { white-space: normal; }
  .final-cta-arrow { opacity: 0.5; }
}

@media (max-width: 480px) {
  .final-cta-section { padding: 3rem 1.2rem 3.5rem; }
  .final-cta-card { padding: 2.5rem 1.4rem; border-radius: 22px; }
}

/* ============ FOOTER ============ */
.site-footer {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.10), transparent 40%),
    linear-gradient(115deg, #0E3A9E 0%, #1755D4 42%, #3E7DEE 72%, #FEB902 135%);
  color: rgba(255, 255, 255, 0.92);
  padding: 4.5rem 2rem 0;
}

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.footer-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 420px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--logo-yellow);
  transition: width 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 6px;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact i {
  width: 16px;
  text-align: center;
  color: var(--logo-yellow);
  flex-shrink: 0;
}

.footer-contact li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact li a:hover {
  color: var(--logo-yellow);
}

.footer-follow-heading { margin-bottom: 0.9rem; }

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social-icon:hover {
  background: var(--logo-yellow);
  color: #12213F;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1.3rem 0;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

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

@media (max-width: 560px) {
  .site-footer { padding: 3.5rem 1.2rem 0; }
  .footer-main { grid-template-columns: 1fr; gap: 2.2rem; text-align: left; }
  .footer-text { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.2rem 0 1.6rem; }
}

/* ============ ABOUT HERO BANNER ============ */
.about-hero-banner {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 2rem 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.14), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.10), transparent 45%),
    linear-gradient(100deg, #0E3A9E 0%, #1755D4 38%, #3E7DEE 68%, #FEB902 130%);
}

.about-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-eyebrow {
  color: #FFFFFF;
  font-weight: 700;
}

.about-hero-eyebrow .eyebrow-hero-dash {
  color: var(--logo-yellow);
}

.about-hero-heading {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.7rem 0 1.3rem;
  letter-spacing: -0.01em;
}

.about-hero-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .about-hero-banner { padding: calc(var(--header-h) + 1.5rem) 1.2rem 4.5rem; }
}

/* ============ DRIVING DIGITAL GROWTH (ABOUT PAGE) ============ */
.growth-strategy-section {
  padding: 3.5rem 2rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.growth-strategy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.growth-strategy-card {
  border-radius: 22px;
  padding: 2.4rem 2.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(125deg, #0E3A9E 0%, #1755D4 45%, #3E7DEE 75%, #FEB902 135%);
  box-shadow: 0 20px 44px rgba(15, 40, 110, 0.22);
}

.growth-strategy-heading {
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  font-weight: 800;
  line-height: 1.32;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.growth-strategy-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.9rem;
}

.growth-strategy-text:last-child { margin-bottom: 0; }

.growth-strategy-image {
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
}

.growth-strategy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .growth-strategy-inner { grid-template-columns: 1fr; }
  .growth-strategy-image { min-height: 260px; order: -1; }
}

@media (max-width: 480px) {
  .growth-strategy-section { padding: 2.75rem 1.2rem; }
  .growth-strategy-card { padding: 1.9rem 1.6rem; }
}

/* ============ SERVICE DETAIL SECTION (SERVICE PAGES) ============ */
.service-detail-section {
  padding: 4rem 2rem 4.5rem;
  background: var(--section-alt-bg);
  transition: background 0.4s ease;
}

.service-detail-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-detail-top {
  max-width: 760px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.service-detail-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.service-detail-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.35s ease;
}

.service-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.service-detail-card {
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
  box-shadow: none;
}

.service-detail-subheading {
  font-size: clamp(1.2rem, 1.9vw, 1.4rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.service-detail-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
  transition: color 0.35s ease;
}

.service-detail-desc:last-child { margin-bottom: 0; }

.service-detail-image {
  border-radius: 22px;
  overflow: hidden;
  height: clamp(320px, 30vw, 440px);
  box-shadow: 0 20px 44px rgba(15, 40, 110, 0.16);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .service-detail-columns { grid-template-columns: 1fr; }
  .service-detail-image { min-height: 260px; order: -1; }
}

@media (max-width: 480px) {
  .service-detail-section { padding: 3rem 1.2rem 3.5rem; }
  .service-detail-card { padding: 1.9rem 1.6rem; }
}

/* ============ OUR CORE VALUES / PRINCIPLES (ABOUT PAGE) ============ */
.principles-section {
  padding: 4.5rem 2rem 5rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.principles-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.principles-heading {
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0.6rem 0 1rem;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.principles-sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.35s ease;
}

.principles-grid {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.principle-card {
  padding: 1.5rem 1.4rem;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
}

.principle-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.principle-title {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.principle-text {
  font-size: 0.84rem;
  line-height: 1.6;
}

.principle-card.card-fill {
  background: linear-gradient(135deg, #0E3A9E 0%, #1755D4 42%, #3E7DEE 72%, #FEB902 130%);
  border: none;
  box-shadow: 0 24px 48px rgba(15, 40, 110, 0.28);
}

.principle-card.card-fill:hover {
  box-shadow: 0 20px 40px rgba(15, 40, 110, 0.36);
}

.principle-card.card-fill .principle-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}

.principle-card.card-fill .principle-title,
.principle-card.card-fill .principle-text {
  color: #FFFFFF;
}

.principle-card.card-fill .principle-text {
  color: rgba(255, 255, 255, 0.92);
}

.principle-card.card-outline {
  background: var(--card-bg);
  border: 1px solid rgba(23, 85, 212, 0.35);
  box-shadow: 0 8px 20px rgba(10, 14, 26, 0.05);
}

[data-theme="dark"] .principle-card.card-outline {
  border-color: rgba(111, 160, 255, 0.35);
}

.principle-card.card-outline:hover {
  box-shadow: 0 16px 30px rgba(10, 14, 26, 0.10);
  border-color: var(--logo-yellow);
}

.principle-card.card-outline .principle-icon {
  background: rgba(23, 85, 212, 0.08);
  color: var(--blue);
}

[data-theme="dark"] .principle-card.card-outline .principle-icon {
  background: rgba(111, 160, 255, 0.14);
  color: #6FA0FF;
}

.principle-card.card-outline .principle-title {
  color: var(--text-primary);
}

.principle-card.card-outline .principle-text {
  color: var(--text-secondary);
}

/* ============ OUR MISSION ============ */
.our-mission-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  background: linear-gradient(120deg, #0E3A9E 0%, #1755D4 40%, #3E7DEE 70%, #FEB902 130%);
}

.our-mission-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.our-mission-heading {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.our-mission-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin-bottom: 1rem;
}
.our-mission-text:last-child { margin-bottom: 0; }

.our-mission-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  background: #FFFFFF;
  color: #1755D4;
  box-shadow: 0 10px 24px rgba(9, 20, 56, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.our-mission-btn:hover {
  transform: translateY(-2px);
  background: var(--logo-yellow);
  color: #12213F;
  box-shadow: 0 14px 30px rgba(9, 20, 56, 0.32);
}

.our-mission-watermark {
  position: absolute;
  right: 140px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  max-width: 35%;
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

@media (max-width: 900px) {
  .our-mission-watermark { opacity: 0.07; width: 380px; }
}

@media (max-width: 560px) {
  .our-mission-section { padding: 3.5rem 1.2rem; }
  .our-mission-watermark { display: none; }
}

/* ============ LET'S WORK TOGETHER (CONTACT FORM) ============ */
.join-team-section {
  padding: 5rem 2rem;
  background: var(--page-bg);
  transition: background 0.4s ease;
}

.join-team-header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.join-team-heading {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.join-team-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.35s ease;
}

.join-team-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.join-team-copy-heading {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.join-team-copy-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  transition: color 0.35s ease;
}

.join-team-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color 0.35s ease;
}

.join-team-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.join-team-contact-item a:hover {
  color: var(--logo-blue);
}

.join-team-contact-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(23, 85, 212, 0.1);
  color: var(--logo-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.join-team-contact-label { font-weight: 600; }

.join-team-form {
  border-radius: 20px;
  background: linear-gradient(120deg, #0E3A9E 0%, #1755D4 40%, #3E7DEE 70%, #FEB902 130%);
  box-shadow: 0 24px 48px rgba(15, 40, 110, 0.24);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.join-team-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.join-team-loc-toggle {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.join-team-loc-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.join-team-loc-btn.active {
  background: #FFFFFF;
  color: #1755D4;
}

.join-team-form select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--dark);
  background: #FFFFFF;
}

.join-team-form select:focus {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.join-team-custom-budget {
  margin-top: -0.2rem;
}

.join-team-form input,
.join-team-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--dark);
  background: #FFFFFF;
  resize: vertical;
}

.join-team-form input::placeholder,
.join-team-form textarea::placeholder {
  color: #8A93A3;
}

.join-team-form input:focus,
.join-team-form textarea:focus {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.join-team-submit {
  padding: 0.95rem 1.2rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}

.join-team-submit:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .join-team-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .join-team-section { padding: 3.5rem 1.2rem; }
  .join-team-row { grid-template-columns: 1fr; }
  .join-team-form { padding: 1.3rem; }
}

@media (max-width: 900px) {
  .principle-row { grid-template-columns: repeat(2, 1fr); }
  .principles-heading { white-space: normal; }
}

@media (max-width: 560px) {
  .principles-section { padding: 3.5rem 1.2rem 4rem; }
  .principle-row { grid-template-columns: 1fr; }
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whatsapp-icon-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.7rem;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-label {
  background: #FFFFFF;
  color: #14181F;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(20, 24, 31, 0.14);
  margin-right: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-icon-btn {
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}

@media (max-width: 480px) {
  .whatsapp-float { right: 16px; bottom: 16px; }
  .whatsapp-icon-btn { width: 50px; height: 50px; font-size: 1.5rem; }
  .whatsapp-label { display: none; }
}

/* ============ PRICING SECTION ============ */
.pricing-section {
  padding: 100px 40px;
  background: var(--page-bg);
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-heading {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 16px 0;
  line-height: 1.2;
  color: var(--text-primary);
}

.pricing-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: 16px;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto 48px;
  position: relative;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-light);
  box-shadow: 0 20px 60px rgba(23, 85, 212, 0.15);
}

.pricing-card--featured {
  border-color: var(--logo-yellow);
  box-shadow: 0 12px 40px rgba(254, 185, 2, 0.25);
}

.pricing-card--featured:hover {
  box-shadow: 0 24px 80px rgba(254, 185, 2, 0.35);
  border-color: var(--logo-yellow);
}

.price-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--logo-yellow);
  color: #14181F;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.price-tag-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.4;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}

.price-currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--card-border);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-ideal-for {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-top: 1rem;
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
  border-top: 1px dashed var(--card-border);
}

.price-ideal-for strong {
  color: var(--text-primary);
  font-weight: 700;
}

.feature-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  padding: 12px 24px;
  font-size: 1rem;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 1240px;
  margin: 0 auto;
}

/* ============ RESPONSIVE PRICING ============ */
@media (max-width: 1024px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 24px;
  }

  .pricing-header {
    margin-bottom: 60px;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-heading {
    font-size: 2rem;
  }

  .price-number {
    font-size: 2.2rem;
  }
}

/* ============ WEB DEVELOPMENT PRICING (SERVICE PAGE) ============ */
.webdev-pricing-section {
  padding: 5rem 2rem;
  background: var(--section-alt-bg);
  transition: background 0.4s ease;
}

.webdev-pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.webdev-pricing-heading {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0.9rem 0;
  transition: color 0.35s ease;
}

.webdev-pricing-subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.35s ease;
}

.webdev-pricing-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: stretch;
}

/* ---- Left: What's Included card ---- */
.webdev-included-card {
  min-width: 0;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.webdev-included-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transition: color 0.35s ease;
}

.webdev-included-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.webdev-included-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.webdev-included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.webdev-included-list li:last-child {
  border-bottom: none;
}

.webdev-included-list li i {
  color: var(--blue);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: color 0.35s ease;
}

[data-theme="dark"] .webdev-included-list li i {
  color: #6FA0FF;
}

/* ---- Right: WordPress Packages gradient card ---- */
.webdev-packages-card {
  min-width: 0;
  background: linear-gradient(135deg, #0E3A9E 0%, #1755D4 42%, #3E7DEE 72%, #FEB902 130%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(15, 40, 110, 0.25);
}

.webdev-packages-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 1.75rem;
}

.webdev-pkg-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.webdev-pkg-tab {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.webdev-pkg-tab:hover {
  border-color: #FFFFFF;
}

.webdev-pkg-tab.active {
  background: #FFFFFF;
  color: #1755D4;
  border-color: #FFFFFF;
  transform: translateY(-1px);
}

.webdev-pkg-panel {
  display: none;
  animation: webdevPkgFade 0.4s ease;
}

.webdev-pkg-panel.active {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@keyframes webdevPkgFade {
  from { opacity: 0; translate: 0 8px; }
  to { opacity: 1; translate: 0 0; }
}

.webdev-pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.webdev-pkg-price span {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.85;
}

.webdev-pkg-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex-grow: 1;
}

.webdev-pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.webdev-pkg-features li:last-child {
  border-bottom: none;
}

.webdev-pkg-features li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 0.75rem;
}

.webdev-pkg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  background: #FFFFFF;
  color: #1755D4;
  box-shadow: 0 10px 24px rgba(9, 20, 56, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.webdev-pkg-btn:hover {
  transform: translateY(-2px);
  background: var(--logo-yellow);
  color: #12213F;
  box-shadow: 0 14px 30px rgba(9, 20, 56, 0.32);
}

/* ============ RESPONSIVE WEB DEVELOPMENT PRICING ============ */
@media (max-width: 860px) {
  .webdev-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .webdev-pricing-section {
    padding: 3.5rem 1.25rem;
  }

  .webdev-pricing-header {
    margin-bottom: 2.5rem;
  }

  .webdev-included-card,
  .webdev-packages-card {
    padding: 2rem 1.5rem;
  }

  .webdev-pkg-tab {
    font-size: 0.78rem;
    padding: 0.55rem 0.5rem;
  }

  .webdev-pkg-price {
    font-size: 2rem;
  }
}

/* ============ PRICING PAGE HERO ============ */
.pricing-hero-banner {
  padding: 4rem 2rem;
  background: linear-gradient(120deg, #0E3A9E 0%, #1755D4 40%, #3E7DEE 70%, #FEB902 130%);
  overflow: hidden;
}

.pricing-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.pricing-hero-eyebrow {
  margin-bottom: 1.1rem;
}

.pricing-hero-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.22;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.pricing-hero-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

.pricing-hero-visual {
  display: flex;
  justify-content: center;
}

.pricing-hero-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
}

@media (max-width: 860px) {
  .pricing-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .pricing-hero-text { margin-left: auto; margin-right: auto; }
  .pricing-hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .pricing-hero-banner { padding: 3rem 1.2rem; }
}

/* ============================================================
   DOMAIN EXTENSION BROWSER (domain.html)
   ============================================================ */
.domain-browser-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
}

.domain-browser-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.2rem;
}

.domain-browser-heading {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0.5rem 0 0.6rem;
  letter-spacing: -0.01em;
}

.domain-browser-subtext {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.domain-search-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 560px;
  margin: 0 auto 1.4rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
  box-shadow: 0 8px 22px rgba(20, 24, 31, 0.06);
}

.domain-search-bar i {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.domain-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-family: inherit;
}

.domain-search-bar input::placeholder { color: var(--text-muted); }

.domain-search-btn {
  border: none;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.domain-search-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

.domain-region-toggle {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.domain-region-btn {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.domain-region-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.domain-region-btn:not(.active):hover { border-color: var(--blue-light); color: var(--blue); }

.domain-category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.domain-pill {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.domain-pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.domain-pill:not(.active):hover { border-color: var(--blue-light); color: var(--blue); }

.domain-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  max-height: 340px;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(20, 24, 31, 0.06);
}

.domain-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.domain-table thead th {
  position: sticky;
  top: 0;
  background: var(--gray-100);
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: left;
  padding: 0.9rem 1.3rem;
  z-index: 1;
}

[data-theme="dark"] .domain-table thead th { background: #101627; }

.domain-table tbody td {
  padding: 0.9rem 1.3rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-primary);
  font-weight: 600;
}

.domain-table tbody tr:hover { background: rgba(23, 85, 212, 0.05); }

.domain-table .dm-price { color: var(--blue); font-weight: 700; }
[data-theme="dark"] .domain-table .dm-price { color: var(--blue-light); }

.domain-table .dm-period {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.domain-table-note {
  max-width: 900px;
  margin: 0.8rem auto 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: left;
}

.domain-table-empty {
  text-align: center !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  padding: 2rem !important;
}

/* ---- What's Included ---- */
.domain-included-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
}

.domain-included-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 10px 26px rgba(20, 24, 31, 0.05);
}

.domain-included-dash {
  display: inline-block;
  width: 22px;
  height: 4px;
  border-radius: 4px;
  background: var(--logo-yellow);
  margin-bottom: 0.7rem;
}

.domain-included-copy h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.domain-included-copy p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.domain-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
}

.domain-included-grid ul { list-style: none; margin: 0; padding: 0; }

.domain-included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 0;
}

.domain-included-grid li i {
  color: var(--blue);
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .domain-included-inner { grid-template-columns: 1fr; }
  .domain-included-grid { grid-template-columns: 1fr; }
}

/* ---- Three Simple Steps ---- */
.domain-steps-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
}

.domain-steps-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.domain-steps-heading {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.4rem;
}

.domain-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 980px;
  margin: 0 auto;
}

.domain-step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 8px 20px rgba(20, 24, 31, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.domain-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(20, 24, 31, 0.09);
}

.domain-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(23, 85, 212, 0.1);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.domain-step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.domain-step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .domain-steps-grid { grid-template-columns: 1fr; }
}

/* ---- CTA Banners ---- */
.domain-cta-banner {
  padding: 2.2rem 2rem;
  margin-bottom: 1.4rem;
}

.domain-cta-banner--primary {
  background: linear-gradient(120deg, #0E3A9E 0%, #1755D4 55%, #3E7DEE 100%);
}

.domain-cta-banner--secondary {
  background: linear-gradient(120deg, #0A2A63 0%, #103FA0 60%, #1755D4 100%);
  margin-bottom: 2rem;
}

.domain-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.domain-cta-inner h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}

.domain-cta-inner p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
}

.domain-cta-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.domain-cta-btn--fill {
  background: var(--logo-yellow);
  color: #12213F;
  box-shadow: 0 10px 24px rgba(9, 20, 56, 0.28);
}

.domain-cta-btn--fill:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(9, 20, 56, 0.32); }

.domain-cta-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.domain-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: #fff;
}

@media (max-width: 640px) {
  .domain-cta-inner { flex-direction: column; align-items: flex-start; }
  .domain-cta-btn { width: 100%; justify-content: center; }
  .domain-search-bar { flex-wrap: wrap; border-radius: 18px; padding: 0.8rem; }
  .domain-search-btn { width: 100%; }
}

/* ---- Domain page — mobile tightening ---- */
@media (max-width: 760px) {
  .domain-browser-section { padding: 3rem 1.2rem 2.4rem; }
  .domain-included-section { padding: 0.75rem 1.2rem 2.4rem; }
  .domain-included-inner { padding: 1.6rem 1.4rem; }
  .domain-steps-section { padding-left: 1.2rem; padding-right: 1.2rem; }
  .domain-cta-banner { padding: 1.8rem 1.2rem; }
  .domain-cta-inner h3 { font-size: 1.05rem; }
  .domain-cta-inner p { font-size: 0.85rem; }
  .domain-table thead th,
  .domain-table tbody td { padding: 0.7rem 0.9rem; }
}

@media (max-width: 400px) {
  .domain-region-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .domain-pill { padding: 0.4rem 0.85rem; font-size: 0.75rem; }
}


/* ============ COURSES PAGE ============ */
.currency-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 48px;
  flex-wrap: wrap;
}
.currency-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 85, 212, 0.35);
  background: var(--card-bg);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
[data-theme="dark"] .currency-btn {
  border-color: rgba(111, 160, 255, 0.35);
}
.currency-btn:hover {
  border-color: var(--logo-yellow);
  transform: translateY(-2px);
}
.currency-btn.active {
  background: linear-gradient(120deg, #0E3A9E 0%, #1755D4 40%, #3E7DEE 75%, #FEB902 130%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 14px 28px rgba(15, 40, 110, 0.28);
  transform: translateY(-2px);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.course-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-light);
  box-shadow: 0 20px 60px rgba(23, 85, 212, 0.15);
}
.course-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  background: linear-gradient(135deg, #1755D4 0%, #3E7DEE 60%, #FEB902 140%);
  margin-bottom: 20px;
}
.course-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.course-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.course-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.course-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--card-border);
}
.course-features li:last-child { border-bottom: none; }
.course-features li i { color: var(--blue); }
.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--card-border);
}
.course-price { display: flex; flex-direction: column; }
.course-price .price-currency-code {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.course-price .price-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}
.price-usd-amt { display: none; }
[data-currency="usd"] .price-pkr-amt { display: none; }
[data-currency="usd"] .price-usd-amt { display: block; }

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