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

:root {
  --bg: #0a0c10;
  --bg-card: #111419;
  --bg-card-hover: #161b22;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(45, 110, 245, 0.4);
  --accent: #2d6ef5;
  --accent-soft: rgba(45, 110, 245, 0.12);
  --accent-glow: rgba(45, 110, 245, 0.2);
  --text-primary: #f0ede8;
  --text-secondary: #8a9bae;
  --text-muted: #4a5568;
  --white: #ffffff;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: var(--accent);
}

/* ── Desktop nav list ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 68px;
  overflow: visible;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--text-primary);
}

/* ── Pricing dropdown trigger ── */
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
  height: 100%;
}
.nav-dropdown-trigger:hover {
  color: var(--text-primary);
}
.nav-dropdown-trigger .chevron {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
  flex-shrink: 0;
  display: block;
}

/* ── Desktop dropdown panel ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: auto;
  transform: translateY(-4px);
  min-width: 230px;
  background: #111419;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.375rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0.15s;
  z-index: 200;
}
.nav-links > li:hover .nav-dropdown,
.nav-links > li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-links > li:hover .nav-dropdown-trigger .chevron,
.nav-links > li:focus-within .nav-dropdown-trigger .chevron {
  transform: rotate(180deg);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 7px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  height: auto;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover {
  background: var(--accent-soft);
  color: var(--text-primary);
}
.nav-dropdown a .dd-icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: block;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.3rem 0.5rem;
}

/* ── Nav CTA ── */
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: #1e5ae0 !important;
  color: var(--white) !important;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10, 12, 16, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 5% 1.25rem;
  z-index: 99;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu > a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  display: block;
}
.mobile-menu > a:hover {
  color: var(--text-primary);
}
.mobile-menu .mob-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  border: none;
  margin-top: 0.875rem;
  font-weight: 600;
}

/* ── Mobile pricing accordion ── */
.mob-pricing-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
}
.mob-pricing-trigger:hover {
  color: var(--text-primary);
}
.mob-pricing-trigger .chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
  flex-shrink: 0;
  display: block;
}
.mob-pricing-trigger.open .chevron {
  transform: rotate(180deg);
}

.mob-pricing-submenu {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border);
}
.mob-pricing-submenu.open {
  display: flex;
}
.mob-pricing-submenu a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.15s, background 0.15s;
}
.mob-pricing-submenu a:last-child {
  border-bottom: none;
}
.mob-pricing-submenu a:hover {
  color: var(--text-primary);
  background: var(--accent-soft);
}
.mob-pricing-submenu a .dd-icon {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: block;
}

/* ─── SHARED LAYOUT ───────────────────────────── */
section {
  padding: 6rem 5%;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #1e5ae0;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  border: 1px solid var(--border-hover);
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
}
.btn-ghost:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 110, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 245, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 40%,
    black 20%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 40%,
    black 20%,
    transparent 80%
  );
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(45, 110, 245, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-soft);
  border: 1px solid var(--border-hover);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-headline {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-headline .accent-word {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ─── WHAT WE DO ──────────────────────────────── */
#what {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.what-text h2 {
  margin-bottom: 1.25rem;
}
.what-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.what-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.pillar-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.pillar-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.pillar-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── SERVICES ────────────────────────────────── */
.services-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.services-header h2 {
  margin-bottom: 1rem;
}
.services-header p {
  color: var(--text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-display);
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 0.65rem;
}
.service-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── HOSTING ─────────────────────────────────── */
#hosting {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.hosting-text h2 {
  margin-bottom: 1.25rem;
}
.hosting-text p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hosting-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hosting-plans {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hosting-plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
  cursor: default;
}
.hosting-plan.featured {
  border-color: var(--border-hover);
  background: linear-gradient(135deg, #111419 0%, #0f1522 100%);
}
.hosting-plan:hover {
  border-color: var(--border-hover);
}

.hosting-plan-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.hosting-plan-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.hosting-plan-price {
  text-align: right;
}
.hosting-plan-price strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.hosting-plan-price span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.featured-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

/* ─── SEO ─────────────────────────────────────── */
.seo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.seo-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
}

.seo-chart-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seo-bars {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.seo-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.seo-bar-keyword {
  font-size: 0.8rem;
  color: var(--text-secondary);
  width: 110px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seo-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}
.seo-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  animation: growBar 1.2s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes growBar {
  to {
    transform: scaleX(1);
  }
}
.seo-bar-fill.delay1 {
  animation-delay: 0.1s;
}
.seo-bar-fill.delay2 {
  animation-delay: 0.2s;
}
.seo-bar-fill.delay3 {
  animation-delay: 0.3s;
}
.seo-bar-fill.delay4 {
  animation-delay: 0.4s;
}
.seo-bar-pct {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  width: 32px;
  text-align: right;
}

.seo-text h2 {
  margin-bottom: 1.25rem;
}
.seo-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.seo-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.seo-tier {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.seo-tier-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.seo-tier h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
}
.seo-tier p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ─── PRICING PREVIEW ─────────────────────────── */
#pricing-preview {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.pricing-header h2 {
  margin-bottom: 1rem;
}
.pricing-header p {
  color: var(--text-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, #111824 0%, #0e1520 100%);
}

.price-tag-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  margin-bottom: 0.25rem;
}
.price-tag-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  font-family: var(--font-display);
}
.price-tag-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.price-card-starts {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.price-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.price-card-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-secondary);
}
.price-features li svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.popular-chip {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-footnote {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── PROCESS ─────────────────────────────────── */
.process-header {
  max-width: 540px;
  margin-bottom: 4rem;
}
.process-header h2 {
  margin-bottom: 1rem;
}
.process-header p {
  color: var(--text-secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px; /* adjust based on your current spacing */
  --step-gap: 60px;
}

.process-step {
  position: relative;
}

/* Line after each step */
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 44px;
  width: calc(100% + var(--step-gap) - 4px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    rgba(45, 110, 245, 0.2) 100%
  );
  z-index: 0;
}

/* Circle stays above the line */
.process-step-number,
.step-number {
  position: relative;
  z-index: 2;
}

.process-step {
  padding: 0 1rem;
  position: relative;
}
.process-step-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step:not(:first-child) .process-step-num {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── WHY US ──────────────────────────────────── */
#why {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.why-header h2 {
  margin-bottom: 1rem;
}
.why-header p {
  color: var(--text-secondary);
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.why-card:hover {
  border-color: var(--border-hover);
}
.why-card-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── PORTFOLIO ───────────────────────────────── */
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.portfolio-header h2 {
  max-width: 420px;
}
.portfolio-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.portfolio-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #141a26 0%, #1a2035 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 1.5rem;
  width: 100%;
}
.thumb-line {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  height: 10px;
}
.thumb-line.w80 {
  width: 80%;
}
.thumb-line.w60 {
  width: 60%;
}
.thumb-line.w40 {
  width: 40%;
  height: 6px;
}
.thumb-line.accent {
  background: rgba(45, 110, 245, 0.35);
  width: 30%;
  height: 28px;
  border-radius: 4px;
  margin-top: 8px;
}

.portfolio-info {
  padding: 1.25rem;
}
.portfolio-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.portfolio-info h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.portfolio-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.portfolio-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── FINAL CTA ───────────────────────────────── */
#final-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(45, 110, 245, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta-inner .eyebrow {
  display: block;
  margin-bottom: 1.5rem;
}
.final-cta-inner h2 {
  margin-bottom: 1.25rem;
}
.final-cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}
.final-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  background: var(--bg);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}
.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 4.5rem 5%;
  }

  .what-grid,
  .hosting-grid,
  .seo-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    order: -1;
  }
  .popular-chip {
    top: -12px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-steps::after {
    display: none;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .what-pillars {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  section {
    padding: 3.5rem 5%;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.7rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .final-ctas {
    flex-direction: column;
    align-items: center;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── ANIMATIONS ──────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .seo-bar-fill {
    animation: none;
    transform: scaleX(1);
  }
  .hero-badge-dot {
    animation: none;
  }
}/* ─── CONTACT PAGE STYLES ──────────────────── */

/* Page hero — smaller than homepage, no full-vh */
#contact-hero {
  padding-top: 148px;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.contact-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(45, 110, 245, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 110, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 245, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 90% at 50% 0%,
    black 0%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 90% at 50% 0%,
    black 0%,
    transparent 100%
  );
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.contact-hero-inner h1 {
  margin-bottom: 1.25rem;
}

.contact-hero-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 500px;
}

/* ─── MAIN CONTACT SECTION ─────────────────── */
#contact-main {
  padding-top: 0;
  padding-bottom: 6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 3.5rem;
  align-items: start;
}

/* ─── LEFT PANEL ───────────────────────────── */
.contact-info {
  position: sticky;
  top: 100px;
}

.contact-info-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.contact-info-sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.contact-method:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.contact-method-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.contact-method-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-display);
}

/* Response time badge */
.contact-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.contact-response-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Service interest pills */
.contact-info-services-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-service-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ─── RIGHT PANEL — FORM ───────────────────── */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.form-sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-label span {
  color: var(--accent);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: #0d1017;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9bae' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
  cursor: pointer;
  color: var(--text-primary);
}

.form-select option {
  background: #111419;
  color: var(--text-primary);
}

/* Placeholder state for select */
.form-select.placeholder-active {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Service checkboxes */
.services-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.service-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.6rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition:
    border-color 0.2s,
    background 0.2s;
  user-select: none;
}

.service-check-item:hover {
  border-color: var(--border-hover);
  background: rgba(45, 110, 245, 0.04);
}

.service-check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.service-check-item span {
  font-size: 0.83rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

.service-check-item:has(input:checked) {
  border-color: var(--border-hover);
  background: var(--accent-soft);
}

.service-check-item:has(input:checked) span {
  color: var(--text-primary);
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 260px;
}

/* Submit button — full width on mobile */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn-submit:hover {
  background: #1e5ae0;
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.btn-submit:hover svg {
  transform: translateX(3px);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-icon svg {
  width: 24px;
  height: 24px;
  stroke: #10b981;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 600px) {
  .contact-form-wrap {
    padding: 1.5rem;
  }

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

  .form-group.full {
    grid-column: 1;
  }

  .services-check-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-submit {
    justify-content: center;
    width: 100%;
  }

  .form-privacy {
    max-width: 100%;
    text-align: center;
  }
}

/* ─── SERVICES PAGE STYLES ─────────────────── */

/* ── Page hero ── */
#services-hero {
  padding-top: 148px;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.services-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 110, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 245, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 90% at 50% 0%,
    black 0%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 90% at 50% 0%,
    black 0%,
    transparent 100%
  );
}

.services-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 420px;
  background: radial-gradient(
    ellipse,
    rgba(45, 110, 245, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.services-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.services-hero-inner h1 {
  margin-bottom: 1.25rem;
}

.services-hero-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2.25rem;
}

.services-hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Overview cards (anchor grid) ── */
#services-overview {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.overview-header {
  max-width: 580px;
  margin-bottom: 3rem;
}

.overview-header h2 {
  margin-bottom: 0.875rem;
}

.overview-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

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

.overview-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.overview-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.overview-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.overview-card-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.overview-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: gap 0.2s;
  margin-top: 0.25rem;
}

.overview-card:hover .overview-card-cta {
  gap: 0.65rem;
}

.overview-card-cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Shared detail section layout ── */
.svc-detail {
  padding: 6rem 5%;
}

.svc-detail.alt-bg {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.svc-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* flip order for even sections */
.svc-detail-layout.flip {
  grid-template-columns: 1.5fr 1fr;
}

.svc-detail-layout.flip .svc-detail-panel {
  order: 2;
}

.svc-detail-layout.flip .svc-detail-content {
  order: 1;
}

/* Left: decorative panel */
.svc-detail-panel {
  position: sticky;
  top: 100px;
}

.svc-panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
}

.svc-panel-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* includes list inside panel */
.svc-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.svc-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.svc-panel-list li svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-panel-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.svc-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent-soft);
  border: 1px solid var(--border-hover);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
}

.svc-panel-badge svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-panel-green-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  margin-top: 1rem;
  display: inline-flex;
}

.svc-panel-green-badge svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Right: content */
.svc-detail-content h2 {
  margin-bottom: 1rem;
}

.svc-detail-content > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

/* Best for pill row */
.svc-best-for {
  margin-bottom: 2rem;
}

.svc-best-for-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.svc-best-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-best-pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* Tier comparison (SEO / Email) */
.svc-tier-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.svc-tier-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s;
}

.svc-tier-row.featured-tier {
  border-color: var(--border-hover);
  background: linear-gradient(135deg, #111419 0%, #0f1522 100%);
}

.svc-tier-row:hover {
  border-color: var(--border-hover);
}

.svc-tier-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.svc-tier-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.svc-tier-price {
  text-align: right;
  flex-shrink: 0;
}

.svc-tier-price strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.svc-tier-price span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── How Scalority helps you scale ── */
#scale-flow {
  padding: 6rem 5%;
}

.scale-flow-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.scale-flow-header h2 {
  margin-bottom: 1rem;
}

.scale-flow-header p {
  color: var(--text-secondary);
}

.scale-flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.scale-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}

/* connector line between steps */
.scale-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% + 22px);
  width: calc(100% - 22px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    rgba(45, 110, 245, 0.15) 100%
  );
  z-index: 0;
}

.scale-flow-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.scale-flow-num.active {
  background: var(--accent);
  color: var(--white);
}

.scale-flow-num.inactive {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.scale-flow-step-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.scale-flow-step-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scale-flow-step h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.scale-flow-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Not sure section ── */
#not-sure {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 5%;
}

.not-sure-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.not-sure-text h2 {
  margin-bottom: 1.25rem;
}

.not-sure-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.not-sure-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.not-sure-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.not-sure-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s;
}

.not-sure-card:hover {
  border-color: var(--border-hover);
}

.not-sure-card-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.not-sure-card-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.not-sure-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.not-sure-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Shared SVG icon helper ── */
.svg-arrow {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 1000px) {
  .scale-flow-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }

  .scale-flow-step:nth-child(3)::after,
  .scale-flow-step:last-child::after {
    display: none;
  }
}

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

  .svc-detail-layout,
  .svc-detail-layout.flip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .svc-detail-layout.flip .svc-detail-panel {
    order: 0;
  }

  .svc-detail-layout.flip .svc-detail-content {
    order: 0;
  }

  .svc-detail-panel {
    position: static;
  }

  .not-sure-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

  .scale-flow-steps {
    grid-template-columns: 1fr 1fr;
  }

  .scale-flow-step:nth-child(2)::after,
  .scale-flow-step:nth-child(4)::after {
    display: none;
  }

  .services-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .not-sure-ctas {
    flex-direction: column;
  }

  .not-sure-ctas .btn-primary,
  .not-sure-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════
   PRICING PAGES — SHARED STYLES
   (Web Dev & Hosting, Business Email, Social, SEO)
═══════════════════════════════════════════════════ */

/* ── Page hero ── */
#pricing-hero {
  padding-top: 148px;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.pricing-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 110, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 245, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 0%, transparent 100%);
}
.pricing-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(45, 110, 245, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.pricing-hero-inner h1 { margin-bottom: 1.25rem; }
.pricing-hero-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.25rem;
}
.pricing-hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Section headers ── */
.pricing-section-header { max-width: 580px; margin-bottom: 3rem; }
.pricing-section-header h2 { margin-bottom: 0.875rem; }
.pricing-section-header p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.75; }
.pricing-section-header.centered { max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }

/* ── Main pricing table ── */
#pricing-main-table {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-table-intro {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.pricing-table-intro strong { color: var(--text-primary); }
.pricing-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.pricing-table-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 0.25rem;
  margin-bottom: 0.75rem;
}
.pricing-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}
.pricing-row:last-child { margin-bottom: 0; }
.pricing-row:hover { border-color: var(--border-hover); }
.pricing-row.featured-row {
  border-color: var(--border-hover);
  background: linear-gradient(135deg, #111419 0%, #0f1522 100%);
}
.pricing-row-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}
.pricing-row-note { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }
.pricing-row-price { text-align: right; flex-shrink: 0; }
.pricing-row-price strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  display: block;
}
.pricing-row-price span { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }

/* ── Annual promo section ── */
#pricing-annual { padding: 6rem 5%; }
.annual-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.25);
  color: #ca9a0a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.annual-promo-badge svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.annual-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.annual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.2s;
  overflow: hidden;
}
.annual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.annual-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.annual-card:hover::before { background: var(--accent); }
.annual-card.featured-card {
  border-color: var(--accent);
  background: linear-gradient(145deg, #111824 0%, #0e1520 100%);
}
.annual-card.featured-card::before { background: var(--accent); }
.annual-popular-chip {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 8px 8px;
}
.annual-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.375rem; color: var(--text-primary); }
.annual-card-tagline { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.5; }
.annual-price-wrap { display: flex; align-items: flex-start; gap: 0.1rem; margin-bottom: 0.2rem; }
.annual-price-currency { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-secondary); margin-top: 0.3rem; }
.annual-price-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--text-primary); line-height: 1; letter-spacing: -0.03em; }
.annual-price-period { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.annual-card-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.annual-includes-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.annual-includes-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; margin-bottom: 1.75rem; }
.annual-includes-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.855rem; color: var(--text-secondary); line-height: 1.45; }
.annual-includes-list li svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.annual-best-for { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem; padding: 0.6rem 0.875rem; background: rgba(255,255,255,0.03); border-radius: 6px; border-left: 2px solid var(--accent); line-height: 1.5; }
.annual-best-for strong { color: var(--text-secondary); }
.trial-choice-note { display: flex; align-items: flex-start; gap: 0.5rem; background: var(--accent-soft); border: 1px solid var(--border-hover); border-radius: 7px; padding: 0.6rem 0.75rem; font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 1rem; }
.trial-choice-note svg { width: 13px; height: 13px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }

/* ── Renewal section ── */
#pricing-renewal {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.renewal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.renewal-text h2 { margin-bottom: 1.25rem; }
.renewal-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.renewal-steps { display: flex; flex-direction: column; gap: 1rem; }
.renewal-step { display: flex; align-items: flex-start; gap: 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.1rem 1.25rem; transition: border-color 0.2s; }
.renewal-step:hover { border-color: var(--border-hover); }
.renewal-step-num { width: 30px; height: 30px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.renewal-step-num.inactive { background: var(--bg-card-hover); border: 1px solid var(--border); color: var(--text-secondary); }
.renewal-step h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.renewal-step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ── Pricing final CTA ── */
#pricing-final-cta { text-align: center; padding: 7rem 5%; position: relative; overflow: hidden; }
.pricing-cta-glow { position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(45, 110, 245, 0.1) 0%, transparent 70%); pointer-events: none; }
.pricing-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.pricing-cta-inner h2 { margin-bottom: 1.25rem; }
.pricing-cta-inner p { color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.75; }
.pricing-final-ctas { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── Pricing responsive ── */
@media (max-width: 900px) {
  .pricing-table-grid { grid-template-columns: 1fr; }
  .annual-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .annual-card.featured-card { order: -1; }
  .renewal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .pricing-hero-ctas { flex-direction: column; align-items: flex-start; }
  .annual-cards-grid { max-width: 100%; }
  .pricing-final-ctas { flex-direction: column; }
  .pricing-final-ctas .btn-primary,
  .pricing-final-ctas .btn-ghost { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════
   PRICING — BUSINESS EMAIL PAGE
═══════════════════════════════════════════════════ */

/* ── Single feature card ── */
.email-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.email-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.email-feature-card:hover { border-color: var(--border-hover); }
.email-feature-icon {
  width: 42px; height: 42px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.email-feature-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.email-feature-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.email-feature-card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Main email pricing card ── */
#email-pricing-card { background: #0d1017; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.email-pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.email-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #111824 0%, #0e1520 100%);
}
.email-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.email-plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.email-plan-tagline {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.email-plan-price-wrap { display: flex; align-items: flex-start; gap: 0.1rem; margin-bottom: 0.2rem; }
.email-plan-currency { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-secondary); margin-top: 0.3rem; }
.email-plan-num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--text-primary); line-height: 1; letter-spacing: -0.03em; }
.email-plan-period { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.email-plan-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.email-plan-includes-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.875rem; }
.email-plan-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.email-plan-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--text-secondary); }
.email-plan-list li svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.email-plan-list li strong { color: var(--text-primary); font-weight: 600; }

/* ── Right side: why section ── */
.email-why-content h2 { margin-bottom: 1.25rem; }
.email-why-content > p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }

.email-why-points { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.email-why-point {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s;
}
.email-why-point:hover { border-color: var(--border-hover); }
.email-why-point-icon { width: 36px; height: 36px; background: var(--accent-soft); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.email-why-point-icon svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.email-why-point h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.email-why-point p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ── Included in annual note ── */
.email-annual-note {
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.email-annual-note-icon { width: 36px; height: 36px; background: rgba(234, 179, 8, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.email-annual-note-icon svg { width: 17px; height: 17px; stroke: #ca9a0a; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.email-annual-note h4 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: #ca9a0a; margin-bottom: 0.25rem; }
.email-annual-note p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }
.email-annual-note a { color: var(--accent); text-decoration: none; font-weight: 500; }
.email-annual-note a:hover { text-decoration: underline; }

/* ── Best for pills ── */
.email-best-for { margin-top: 2rem; }
.email-best-for-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.65rem; }
.email-best-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.email-best-pill { font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); background: var(--bg-card); border: 1px solid var(--border); padding: 0.3rem 0.8rem; border-radius: 100px; }

/* ── Email responsive ── */
@media (max-width: 900px) {
  .email-feature-grid { grid-template-columns: 1fr 1fr; }
  .email-pricing-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .email-feature-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════════
   PRICING PAGES — SHARED STYLES
═══════════════════════════════════════════════════ */

/* ── Hero ── */
#pricing-hero {
  padding-top: 148px;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.pricing-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 110, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 245, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 0%, transparent 100%);
}
.pricing-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(45, 110, 245, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.pricing-hero-inner h1 {
  margin-bottom: 1.25rem;
}
.pricing-hero-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.25rem;
}
.pricing-hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Section headers ── */
.pricing-section-header {
  max-width: 580px;
  margin-bottom: 3rem;
}
.pricing-section-header h2 {
  margin-bottom: 0.875rem;
}
.pricing-section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}
.pricing-section-header.centered {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Main pricing table ── */
#pricing-main-table {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-table-intro {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.pricing-table-intro strong {
  color: var(--text-primary);
}
.pricing-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.pricing-table-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 0.25rem;
  margin-bottom: 0.75rem;
}
.pricing-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}
.pricing-row:last-child {
  margin-bottom: 0;
}
.pricing-row:hover {
  border-color: var(--border-hover);
}
.pricing-row.featured-row {
  border-color: var(--border-hover);
  background: linear-gradient(135deg, #111419 0%, #0f1522 100%);
}
.pricing-row-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}
.pricing-row-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pricing-row-price {
  text-align: right;
  flex-shrink: 0;
}
.pricing-row-price strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  display: block;
}
.pricing-row-price span {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Annual promo section ── */
#pricing-annual {
  padding: 6rem 5%;
}
.annual-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.25);
  color: #ca9a0a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.annual-promo-badge svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.annual-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.annual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.2s;
  overflow: hidden;
}
.annual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.annual-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.annual-card:hover::before {
  background: var(--accent);
}
.annual-card.featured-card {
  border-color: var(--accent);
  background: linear-gradient(145deg, #111824 0%, #0e1520 100%);
}
.annual-card.featured-card::before {
  background: var(--accent);
}
.annual-popular-chip {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 8px 8px;
}
.annual-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text-primary);
}
.annual-card-tagline {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.annual-price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  margin-bottom: 0.2rem;
}
.annual-price-currency {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}
.annual-price-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.annual-price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.annual-card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.annual-includes-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.annual-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-bottom: 1.75rem;
}
.annual-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.855rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.annual-includes-list li svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.annual-best-for {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0.6rem 0.875rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 2px solid var(--accent);
  line-height: 1.5;
}
.annual-best-for strong {
  color: var(--text-secondary);
}
.trial-choice-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--accent-soft);
  border: 1px solid var(--border-hover);
  border-radius: 7px;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.trial-choice-note svg {
  width: 13px;
  height: 13px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Renewal section ── */
#pricing-renewal {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.renewal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.renewal-text h2 {
  margin-bottom: 1.25rem;
}
.renewal-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.renewal-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.renewal-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s;
}
.renewal-step:hover {
  border-color: var(--border-hover);
}
.renewal-step-num {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.renewal-step-num.inactive {
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.renewal-step h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.renewal-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ── Pricing final CTA ── */
#pricing-final-cta {
  text-align: center;
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}
.pricing-cta-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(45, 110, 245, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-cta-inner h2 {
  margin-bottom: 1.25rem;
}
.pricing-cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.pricing-final-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}


/* ═══════════════════════════════════════════════════
   PRICING — BUSINESS EMAIL PAGE
═══════════════════════════════════════════════════ */

.email-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.email-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.email-feature-card:hover {
  border-color: var(--border-hover);
}
.email-feature-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.email-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.email-feature-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.email-feature-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
#email-pricing-card {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.email-pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.email-plan-card {
  background: linear-gradient(145deg, #111824 0%, #0e1520 100%);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.email-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.email-plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.email-plan-tagline {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.email-plan-price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  margin-bottom: 0.2rem;
}
.email-plan-currency {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}
.email-plan-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.email-plan-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.email-plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.email-plan-includes-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.email-plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.email-plan-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.email-plan-list li svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.email-plan-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}
.email-why-content h2 {
  margin-bottom: 1.25rem;
}
.email-why-content > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.email-why-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.email-why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s;
}
.email-why-point:hover {
  border-color: var(--border-hover);
}
.email-why-point-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.email-why-point-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.email-why-point h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.email-why-point p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.email-annual-note {
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.email-annual-note-icon {
  width: 36px;
  height: 36px;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.email-annual-note-icon svg {
  width: 17px;
  height: 17px;
  stroke: #ca9a0a;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.email-annual-note h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ca9a0a;
  margin-bottom: 0.25rem;
}
.email-annual-note p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.email-annual-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.email-annual-note a:hover {
  text-decoration: underline;
}
.email-best-for {
  margin-top: 2rem;
}
.email-best-for-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.email-best-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.email-best-pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}


/* ═══════════════════════════════════════════════════
   PRICING — SEO SERVICES PAGE
═══════════════════════════════════════════════════ */

.seo-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.seo-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.seo-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.seo-plan-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.seo-plan-card:hover::before {
  background: var(--accent);
}
.seo-plan-card.featured-plan {
  border-color: var(--accent);
  background: linear-gradient(145deg, #111824 0%, #0e1520 100%);
}
.seo-plan-card.featured-plan::before {
  background: var(--accent);
}
.seo-plan-chip {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 8px 8px;
}
.seo-plan-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text-primary);
}
.seo-plan-tagline {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.seo-plan-price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  margin-bottom: 0.2rem;
}
.seo-plan-currency {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}
.seo-plan-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.seo-plan-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.seo-plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.seo-plan-includes-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.seo-plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  margin-bottom: 2rem;
}
.seo-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.seo-plan-list li svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.seo-plan-list li.includes-note {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.82rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}
.seo-plan-list li.includes-note svg {
  stroke: var(--text-muted);
}
#seo-explainer {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.seo-explainer-text h2 {
  margin-bottom: 1.25rem;
}
.seo-explainer-text > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.seo-honest-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.seo-honest-block-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.seo-honest-block-label svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.seo-honest-block-label.green {
  color: #10b981;
}
.seo-honest-block-label.muted {
  color: var(--text-muted);
}
.seo-honest-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.seo-honest-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.855rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.seo-honest-list li svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.seo-honest-list li svg.check {
  stroke: #10b981;
}
.seo-honest-list li svg.cross {
  stroke: var(--text-muted);
}
.seo-visual-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.seo-visual-panel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.seo-bar-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.seo-bar-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.seo-bar-keyword {
  font-size: 0.8rem;
  color: var(--text-secondary);
  width: 120px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seo-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}
.seo-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transform-origin: left;
  animation: seoGrowBar 1.2s ease forwards;
  transform: scaleX(0);
}
.seo-bar-fill.d1 { animation-delay: 0.1s; }
.seo-bar-fill.d2 { animation-delay: 0.2s; }
.seo-bar-fill.d3 { animation-delay: 0.3s; }
.seo-bar-fill.d4 { animation-delay: 0.4s; }
.seo-bar-fill.d5 { animation-delay: 0.5s; }
@keyframes seoGrowBar {
  to { transform: scaleX(1); }
}
.seo-bar-pct {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  width: 36px;
  text-align: right;
}
.seo-visual-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.5;
}
.seo-trial-callout {
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}
.seo-trial-callout-icon {
  width: 40px;
  height: 40px;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.seo-trial-callout-icon svg {
  width: 19px;
  height: 19px;
  stroke: #ca9a0a;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seo-trial-callout h4 {
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 600;
  color: #ca9a0a;
  margin-bottom: 0.3rem;
}
.seo-trial-callout p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.seo-trial-callout a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.seo-trial-callout a:hover {
  text-decoration: underline;
}
#seo-how-it-works {
  padding: 6rem 5%;
}


/* ═══════════════════════════════════════════════════
   PRICING PAGES — RESPONSIVE
═══════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .pricing-table-grid { grid-template-columns: 1fr; }
  .annual-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .annual-card.featured-card { order: -1; }
  .renewal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .email-feature-grid { grid-template-columns: 1fr 1fr; }
  .email-pricing-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .seo-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .seo-plan-card.featured-plan { order: -1; }
  .seo-explainer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .pricing-hero-ctas { flex-direction: column; align-items: flex-start; }
  .annual-cards-grid { max-width: 100%; }
  .pricing-final-ctas { flex-direction: column; }
  .pricing-final-ctas .btn-primary,
  .pricing-final-ctas .btn-ghost { width: 100%; justify-content: center; }
  .email-feature-grid { grid-template-columns: 1fr; }
  .seo-plans-grid { max-width: 100%; }
}
/* ═══════════════════════════════════════════════════
   PRICING — SOCIAL MEDIA MANAGEMENT PAGE
═══════════════════════════════════════════════════ */

/* ── Three-tier plan cards ── */
.social-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.social-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.social-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.social-plan-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.social-plan-card:hover::before {
  background: var(--accent);
}
.social-plan-card.featured-social-plan {
  border-color: var(--accent);
  background: linear-gradient(145deg, #111824 0%, #0e1520 100%);
}
.social-plan-card.featured-social-plan::before {
  background: var(--accent);
}
.social-plan-chip {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 0 0 8px 8px;
}
.social-plan-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text-primary);
}
.social-plan-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.social-plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}
.social-plan-currency {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.social-plan-range {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.social-plan-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.social-plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.social-plan-includes-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.social-plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-bottom: 1.5rem;
}
.social-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.social-plan-list li svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.social-plan-best-for {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 2px solid var(--accent);
  line-height: 1.5;
}
.social-plan-best-for strong {
  color: var(--text-secondary);
}

/* ── Add-ons section ── */
#social-addons {
  padding: 6rem 5%;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.2s;
}
.addon-card:hover {
  border-color: var(--border-hover);
}
.addon-card.full-width-addon {
  grid-column: 1 / -1;
}
.addon-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.addon-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.addon-info {
  flex: 1;
}
.addon-info h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}
.addon-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.addon-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}
.addon-price span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ── Social Media responsive ── */
@media (max-width: 900px) {
  .social-plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .social-plan-card.featured-social-plan {
    order: -1;
  }
  .addon-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .social-plans-grid {
    max-width: 100%;
  }
  .addon-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .addon-price {
    text-align: left;
  }
}
/* ═══════════════════════════════════════════════════
   PRICING OVERVIEW PAGE (pricing.html)
   (paste this at the very end of styles.css)
═══════════════════════════════════════════════════ */

/* ── Quick jump nav ── */
#pricing-quick-nav {
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border);
}
.quicknav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1140px;
  margin: 0 auto;
}
.quicknav-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.quicknav-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: var(--accent-soft);
}
.quicknav-pill svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Overview block (shared per-service section) ── */
.overview-block {
  padding: 5.5rem 5%;
}
.overview-block.alt-bg {
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.overview-block-header {
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.overview-block-header h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}
.overview-block-header p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Mini pricing grid */
.overview-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.overview-mini-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
.overview-mini-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.overview-mini-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.overview-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.overview-mini-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.overview-mini-row.featured-mini {
  color: var(--text-primary);
}
.overview-mini-row strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.overview-mini-row.featured-mini strong {
  color: var(--accent);
}
.overview-mini-row strong span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

/* Single plan card (Business Email overview) */
.overview-single-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.overview-single-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.overview-single-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 480px;
}
.overview-single-price {
  text-align: right;
  flex-shrink: 0;
}
.overview-single-price strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}
.overview-single-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Annual / trial callout note */
.overview-annual-note {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.overview-annual-note svg {
  width: 15px;
  height: 15px;
  stroke: #ca9a0a;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Link to full pricing page */
.overview-block-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.overview-block-link:hover {
  gap: 0.75rem;
}
.overview-block-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Pricing overview responsive ── */
@media (max-width: 900px) {
  .overview-mini-grid,
  .overview-mini-grid.three-col {
    grid-template-columns: 1fr;
  }
  .overview-single-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .overview-single-price {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .quicknav-row {
    flex-direction: column;
  }
  .quicknav-pill {
    justify-content: center;
  }
}
/* ═══════════════════════════════════════════════════
   ABOUT PAGE
   (paste at the very end of styles.css)
═══════════════════════════════════════════════════ */

/* ── 1. Hero ── */
#about-hero {
  padding-top: 148px;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.about-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 110, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 110, 245, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 0%, transparent 100%);
}
.about-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(45, 110, 245, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.about-hero-inner h1 {
  margin-bottom: 1.25rem;
}
.about-hero-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
}
.about-accent {
  color: var(--accent);
}

/* ── 2. Story ── */
#about-story {
  padding: 6rem 5%;
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-story-text h2 {
  margin-bottom: 1.25rem;
}
.about-story-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.975rem;
}

/* Origin card */
.about-origin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.about-origin-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-origin-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.about-origin-body strong {
  color: var(--text-primary);
}
.about-origin-name-split {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}
.about-origin-word {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.about-origin-word-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-origin-word-def {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.about-origin-divider {
  height: 1px;
  background: var(--border);
}
.about-origin-footer {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.about-origin-footer strong {
  color: var(--text-primary);
}

/* ── 3. Mission & Vision ── */
#about-mission {
  padding: 6rem 5%;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem;
  transition: border-color 0.2s;
}
.mv-card:hover {
  border-color: var(--border-hover);
}
.mv-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.mv-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mv-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.mv-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── 4. Why Scalority ── */
#about-why {
  padding: 6rem 5%;
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-section-header {
  max-width: 560px;
  margin-bottom: 3rem;
}
.about-section-header h2 {
  margin-bottom: 0.875rem;
}
.about-section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.about-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.about-why-card:hover {
  border-color: var(--border-hover);
}
.about-why-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.about-why-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-why-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.about-why-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── 5. What We Do ── */
#about-services {
  padding: 6rem 5%;
}
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-services-grid h2 {
  margin-bottom: 1.25rem;
}
.about-services-grid > div > p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}
.about-services-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.about-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}
.about-services-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.about-services-list li:last-child {
  border-bottom: none;
}
.about-services-list li svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.about-services-list.muted-list li {
  color: var(--text-muted);
}
.about-services-list.muted-list li svg {
  stroke: var(--text-muted);
}
.about-coming-soon-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* ── 6. Team ── */
#about-team {
  padding: 6rem 5%;
  background: #0d1017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.team-grid .team-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 36rem);
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.team-card:hover {
  border-color: var(--border-hover);
}
.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.team-bio {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.team-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── 7. Core Values ── */
#about-values {
  padding: 6rem 5%;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.value-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 8. Final CTA ── */
#about-cta {
  padding: 7rem 5%;
  background: #0d1017;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(45, 110, 245, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.about-cta-inner h2 {
  margin-bottom: 1.25rem;
}
.about-cta-inner p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.about-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── About responsive ── */
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-origin-card { position: static; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-why-grid { grid-template-columns: 1fr 1fr; }
  .about-services-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about-why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .about-cta-buttons { flex-direction: column; }
  .about-cta-buttons .btn-primary,
  .about-cta-buttons .btn-ghost { width: 100%; justify-content: center; }
}