*,
*::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);
}

.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);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition:
    background 0.2s,
    opacity 0.2s !important;
}
.nav-cta:hover {
  background: #1e5ae0;
  opacity: 1 !important;
}

.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 {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10, 12, 16, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
  z-index: 99;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--text-primary);
}
.mobile-menu .mob-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  border: none;
  margin-top: 0.5rem;
}

/* ─── 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::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    rgba(45, 110, 245, 0.2) 100%
  );
}

.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;
  }
}