/* Soluteen — Main Stylesheet */
/* Generated from soluteen-final.html */

/* === variables.css === */
/* ═══════════════════════════════════════════════════
   variables.css
   Global design tokens, reset, and base styles
═══════════════════════════════════════════════════ */

/* ── CSS DESIGN TOKENS ───────────────────────────── */
:root {
  /* Brand Colors */
  --blue:      #1644CC;
  --blue-dark: #0F2E99;
  --blue-mid:  #1E50E0;
  --blue-pale: #EBF0FF;

  /* Neutrals */
  --dark:      #0C1228;
  --dark-mid:  #1A2240;
  --body:      #F7F9FF;
  --white:     #FFFFFF;
  --grey:      #6B7898;
  --grey-lt:   #B8C0D6;

  /* UI Tokens */
  --border:    rgba(22, 68, 204, 0.10);
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 4px 32px rgba(22, 68, 204, 0.10);
  --shadow-lg: 0 20px 80px rgba(22, 68, 204, 0.16);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--body);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ── UTILITIES ───────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.lang-hidden {
  display: none !important;
}


/* === animations.css === */
/* ═══════════════════════════════════════════════════
   animations.css
   Keyframe definitions and scroll-reveal utility
═══════════════════════════════════════════════════ */

/* ── KEYFRAMES ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Safety fallback: if JS fails, content becomes visible after 2s */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
.reveal {
  animation: revealFallback 0s ease 2s forwards;
}


/* === components.css === */
/* ═══════════════════════════════════════════════════
   components.css
   Reusable UI components: Navbar, Buttons,
   Section Headers, Badges, Trusted Logos
═══════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(247, 249, 255, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo-text {
  font-family: 'Lobster', cursive;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  transition: color 0.3s;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.navbar.scrolled .nav-logo-text {
  color: var(--dark);
  text-shadow: none;
}

/* Footer logo override — always white */
footer .nav-logo-text {
  color: #fff !important;
  font-size: 32px;
  text-shadow: none;
}


/* Template Mega Menu */
.nav-links li {
  position: relative;
  padding: 24px 0;
}
.has-submenu > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.5;
}

.nav-megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(22,68,204,0.06);
  border-radius: 16px;
  padding: 24px 28px 16px;
  min-width: 560px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 1001;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 28px;
}
.has-submenu:hover > .nav-megamenu,
.has-submenu:focus-within > .nav-megamenu {
  display: grid;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0 10px 8px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--blue-pale);
}

.mega-col a {
  display: block;
  padding: 7px 10px;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--grey) !important;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}
.mega-col a:hover {
  background: var(--blue-pale);
  color: var(--blue) !important;
  padding-left: 14px;
}

.mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(22,68,204,0.06);
  margin-top: 8px;
  padding-top: 12px;
  text-align: center;
}
.mega-all {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--blue) !important;
  transition: opacity 0.2s;
}
.mega-all:hover { opacity: 0.7; }

/* Template link wrapper */
.template-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--blue-pale);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
  cursor: pointer;
}

.lang-btn {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: none;
  font-family: 'Outfit', sans-serif;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn-nav {
  padding: 10px 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
}

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

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 8px 32px rgba(22, 68, 204, 0.40);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(22, 68, 204, 0.50);
}

.btn-outline {
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.80);
  border-radius: 32px;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  font-family: 'Outfit', sans-serif;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.40);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Plan buttons (pricing) */
.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'Outfit', sans-serif;
}

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

.btn-plan-outline:hover { background: var(--blue-pale); }

.btn-plan-solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 24px rgba(22, 68, 204, 0.35);
}

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

/* ─────────────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────────────── */
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--dark);
}

.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--grey);
  margin-top: 14px;
  max-width: 560px;
}

.section-head { margin-bottom: 60px; }


/* === sections.css === */
/* ═══════════════════════════════════════════════════
   sections.css
   Page sections: Hero, Services, Process, Features,
   Pricing, Portfolio, Testimonials, FAQ, CTA, Footer
═══════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(80px);
  opacity: 0.18;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  animation: pulse 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  opacity: 0.10;
  animation: pulse 10s ease-in-out infinite 2s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 68, 204, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 68, 204, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 68, 204, 0.12);
  border: 1px solid rgba(22, 68, 204, 0.20);
  border-radius: 24px;
  padding: 8px 20px 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8AAEFF;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4A80FF;
  display: block;
  flex-shrink: 0;
  position: relative;
}
.hero-label-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(74, 128, 255, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-label-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1;
  color: #8AAEFF;
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #6699FF;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.stat         { display: flex; flex-direction: column; gap: 2px; }
.stat-num     { font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.stat-label   { font-size: 12px; font-weight: 300; color: rgba(255, 255, 255, 0.45); }

/* Hero browser mockup card */
.hero-visual  { position: relative; animation: fadeUp 0.8s ease 0.2s both; }

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  animation: float 6s ease-in-out infinite;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.dot           { width: 10px; height: 10px; border-radius: 50%; }
.dot.red       { background: #FF5F57; }
.dot.yellow    { background: #FEBC2E; }
.dot.green     { background: #28C840; }

.browser-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-family: monospace;
}

.hero-mockup {
  background: rgba(22, 68, 204, 0.20);
  border-radius: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mockup-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(22, 68, 204, 0.12) 0px,
    rgba(22, 68, 204, 0.12) 1px,
    transparent 1px,
    transparent 32px
  );
}

.mockup-s {
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite 1s;
}

.mockup-logo-text {
  font-family: 'Lobster', cursive;
  font-size: 56px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 28px rgba(22, 68, 204, 0.45);
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-icon { font-size: 20px; }

.badge-text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.3;
}

.badge-text strong {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
}

/* ─────────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────────── */
.services       { background: var(--body); }

.services-grid  {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s;
  cursor: default;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  background: var(--blue-pale);
}

.service-card.featured .service-icon { background: rgba(255, 255, 255, 0.15); }

.service-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card.featured .service-name { color: #fff; }

.service-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--grey);
}

.service-card.featured .service-desc { color: rgba(255, 255, 255, 0.70); }

.service-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey);
}

.service-card.featured .service-list li { color: rgba(255, 255, 255, 0.75); }

.service-list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.service-card.featured .service-list li::before { background: rgba(255, 255, 255, 0.6); }

/* ─────────────────────────────────────────────────
   PROCESS / HOW IT WORKS
───────────────────────────────────────────────── */
.process { background: #fff; }

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--blue-pale), var(--blue), var(--blue-pale));
}

.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .step-num {
  background: var(--blue);
  color: #fff;
  transform: scale(1.08);
}

.step-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.step-desc  { font-size: 13px; font-weight: 300; line-height: 1.60; color: var(--grey); }

/* ─────────────────────────────────────────────────
   FEATURES / WHY US
───────────────────────────────────────────────── */
.features { background: var(--body); }

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-visual {
  background: var(--dark);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(22, 68, 204, 0.30) 0%, transparent 60%);
}

.features-orb {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(60px);
  opacity: 0.15;
  top: -50px; right: -80px;
}

.feat-card-stack { position: relative; z-index: 1; width: 100%; }

.feat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.feat-card:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateX(4px);
}

.feat-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(22, 68, 204, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feat-card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.feat-card-text span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.50);
}

.features-list { display: flex; flex-direction: column; gap: 28px; }
.feature-item  { display: flex; gap: 18px; }

.feature-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check svg { color: var(--blue); }
.feature-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.feature-desc  { font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--grey); }

/* ─────────────────────────────────────────────────
   NOT WORDPRESS — Comparison
───────────────────────────────────────────────── */
.not-wp {
  padding: 80px 0;
  background: linear-gradient(180deg, #F7F9FF 0%, #EBF0FF 100%);
}
.wp-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.wp-col {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}
.wp-col:hover { transform: translateY(-4px); }
.wp-col-header {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wp-col-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.wp-col-header h3 span {
  font-weight: 300;
  opacity: 0.7;
  font-size: 14px;
  display: block;
}
.wp-col-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.wp-good-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
}
.wp-good-header .wp-col-icon { background: rgba(255,255,255,0.2); color: #fff; }
.wp-bad-header {
  background: linear-gradient(135deg, #6B7898 0%, #4A5568 100%);
}
.wp-bad-header .wp-col-icon { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.wp-col-good {
  background: #fff;
  border: 2px solid var(--blue);
  box-shadow: 0 8px 32px rgba(22,68,204,0.1);
}
.wp-col-bad {
  background: #fff;
  border: 1px solid var(--border);
}
.wp-list { list-style: none; padding: 20px 28px 28px; }
.wp-item {
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding-left: 28px;
  position: relative;
}
.wp-item:last-child { border-bottom: none; }
.wp-item strong { color: var(--dark); font-weight: 600; }
.wp-item.wp-good::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--blue);
  font-weight: 700;
}
.wp-item.wp-bad::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 12px;
  color: #DC3545;
  font-weight: 700;
}
.wp-bottom-text {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.wp-bottom-text strong { color: var(--dark); }
.wp-bottom-text em { color: var(--blue); font-style: normal; font-weight: 600; }

/* ─────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────── */
.pricing { background: #fff; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card .plan-features {
  flex: 1;
}

.pricing-card .btn-plan {
  margin-top: auto;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.popular {
  border-color: var(--blue);
  background: var(--dark);
  color: #fff;
  transform: scale(1.04);
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card.popular .plan-name { color: rgba(255, 255, 255, 0.55); }

.plan-price-orig {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-lt);
  text-decoration: line-through;
  margin-top: 16px;
}

.plan-price {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 4px 0 4px;
}

.plan-promo {
  display: inline-block;
  margin: 6px 0 2px;
  padding: 3px 10px;
  background: #fff3cd;
  color: #a05c00;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid #ffe08a;
}

.pricing-card.popular .plan-price { color: #fff; }
.plan-price span { font-size: 18px; font-weight: 400; vertical-align: super; }

.plan-period {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-lt);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
}

.pricing-card.popular .plan-features li { color: rgba(255, 255, 255, 0.70); }

.plan-features li::before {
  content: '✓';
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.popular .plan-features li::before { color: #6699FF; }

.pricing-card.enterprise {
  border-color: #B59A6E;
  background: #080E1E;
  color: #fff;
}
.pricing-card.enterprise:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(181,154,110,0.18);
}
.enterprise-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg,#B59A6E,#D4AF37);
  color: #080E1E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card.enterprise .plan-name { color: rgba(255,255,255,0.5); }
.pricing-card.enterprise .plan-price { color: #D4AF37; }
.pricing-card.enterprise .plan-period { color: rgba(255,255,255,0.4); }
.pricing-card.enterprise .plan-features li { color: rgba(255,255,255,0.70); }
.pricing-card.enterprise .plan-features li::before { color: #D4AF37; }

/* ─────────────────────────────────────────────────
   TEMPLATE SHOWCASE
───────────────────────────────────────────────── */
.templates { background: var(--body); }

.templates-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  background: transparent;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

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

.template-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}
.template-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(22, 68, 204, 0.14);
  border-color: var(--blue);
}

/* Browser frame mockup */
.template-browser {
  background: var(--dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.template-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.template-browser-bar .dot { width: 8px; height: 8px; border-radius: 50%; }
.template-browser-bar .dot.r { background: #FF5F57; }
.template-browser-bar .dot.y { background: #FEBC2E; }
.template-browser-bar .dot.g { background: #28C840; }

.template-browser-url {
  flex: 1;
  margin-left: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px;
  font-family: monospace;
  color: rgba(255,255,255,0.3);
}

/* Template preview area — mini website mockup */
.template-preview {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.template-preview-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  gap: 8px;
  position: relative;
}

.tp-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
}
.tp-nav-logo {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.tp-nav-links {
  display: flex;
  gap: 8px;
}
.tp-nav-links span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  opacity: 0.4;
}
.tp-nav-btn {
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tp-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tp-subtext {
  font-size: 7px;
  text-align: center;
  opacity: 0.5;
  max-width: 160px;
  line-height: 1.4;
}

.tp-cta-row {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.tp-cta {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tp-cta-ghost {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 6px;
  font-weight: 500;
  background: transparent;
}

.tp-features-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 8px;
}
.tp-feat {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 6px;
  opacity: 0.6;
}
.tp-feat-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

/* Template theme colors */






/* Card info area */
.template-info {
  padding: 24px;
}

.template-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.template-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.template-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.template-badge.new       { background: #E8F5E9; color: #2E7D32; }
.template-badge.popular   { background: #EBF0FF; color: var(--blue); }
.template-badge.premium   { background: #FFF3E0; color: #E65100; }

.template-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 16px;
}

.template-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.template-tag {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 400;
  color: var(--grey);
  background: var(--body);
  border: 1px solid var(--border);
}

.template-actions {
  display: flex;
  gap: 10px;
}

.template-btn {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.template-btn-primary {
  background: var(--blue);
  color: #fff;
}
.template-btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.template-btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border);
}
.template-btn-ghost:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}

/* Pagination */
.templates-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--grey);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}
.page-btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}
.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.page-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(22,68,204,0.3);
}

.page-numbers {
  display: flex;
  gap: 6px;
}

.page-prev, .page-next {
  font-size: 18px;
}

/* ─────────────────────────────────────────────────
   ABOUT FOUNDER
───────────────────────────────────────────────── */
.founder { background: #fff; }

.founder-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}

/* Avatar area */
.founder-avatar-wrap {
  position: relative;
}

.founder-avatar {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  border-radius: 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.founder-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(22, 68, 204, 0.35) 0%, transparent 65%);
}

.founder-avatar-silhouette {
  position: relative;
  z-index: 1;
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SVG silhouette */
.founder-silhouette-svg {
  width: 100%;
  opacity: 0.9;
}

.founder-exp-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--blue);
  color: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(22, 68, 204, 0.4);
  z-index: 2;
}

.founder-exp-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.founder-exp-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}

/* Floating company badges around avatar */
.founder-company-float {
  position: absolute;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  animation: float 5s ease-in-out infinite;
}

.founder-float-1 {
  top: 24px;
  left: -20px;
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--border);
  animation-delay: 0s;
}

.founder-float-2 {
  top: 80px;
  right: -24px;
  background: var(--dark);
  color: #fff;
  animation-delay: 1.5s;
}

.founder-float-3 {
  bottom: 80px;
  left: -28px;
  background: #EBF0FF;
  color: var(--blue);
  animation-delay: 3s;
}

/* Right: content */
.founder-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founder-name {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 15px;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 24px;
}

.founder-bio {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 32px;
}

.founder-bio strong {
  font-weight: 500;
  color: var(--dark);
}

/* Career journey timeline */
.founder-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}

.founder-journey::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-pale));
  border-radius: 2px;
}

.founder-journey-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.founder-journey-item::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--blue);
  z-index: 1;
}

.journey-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.journey-icon.intl { background: #EDE7F6; }
.journey-icon.mnc  { background: #E3F2FD; }
.journey-icon.top  { background: #FFF3E0; }
.journey-icon.own  { background: #E8F5E9; }

.journey-info { flex: 1; }

.journey-company {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.journey-period {
  font-size: 13px;
  font-weight: 400;
  color: var(--blue);
  margin-top: 3px;
}

/* Tech stack pills */
.founder-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-stack-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  background: var(--body);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.founder-stack-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

/* ─────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────── */
.faq { background: var(--body); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--blue); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--blue);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.70;
  color: var(--grey);
}

/* ─────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(100px);
  opacity: 0.12;
}

.cta-orb-1 { top: -200px; left: -150px; }
.cta-orb-2 { bottom: -200px; right: -150px; }

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.cta-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #6699FF;
}

.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  line-height: 1.65;
}

.cta-form {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 6px 6px 6px 20px;
}

.cta-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.cta-input::placeholder { color: rgba(255, 255, 255, 0.30); }

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.40);
}

.cta-trust-item::before { content: '✓'; color: #4A80FF; font-size: 12px; }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
footer {
  background: #060A1A;
  padding: 72px 0 32px;
  color: rgba(255, 255, 255, 0.60);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 16px;
}

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.60); }

/* Contact info block */
.contact-info { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.contact-row span:first-child { font-size: 15px; }


/* === responsive.css === */
/* ═══════════════════════════════════════════════════
   responsive.css
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
═══════════════════════════════════════════════════ */

/* ── TABLET  ≤ 1024px ───────────────────────────── */
@media (max-width: 1024px) {
  .services-grid          { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular   { transform: none; }
  .pricing-grid           { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
  .templates-grid          { grid-template-columns: repeat(2, 1fr); }
  .wp-comparison           { grid-template-columns: 1fr; }
  .founder-inner            { grid-template-columns: 280px 1fr; gap: 40px; }
  .footer-grid            { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── MOBILE  ≤ 768px ────────────────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .hero-inner             { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual            { display: none; }
  .hero-stats             { gap: 20px; }
  .hero-badges            { grid-template-columns: 1fr; }

  /* Navbar */
  .nav-links              { display: none; }
  .hamburger              { display: flex; }

  /* Sections */
  .features-inner         { grid-template-columns: 1fr; }
  .process-steps          { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before  { display: none; }
  .services-grid          { grid-template-columns: 1fr; }
  .pricing-grid           { grid-template-columns: 1fr; max-width: 480px; }
  .templates-grid         { grid-template-columns: 1fr; }
  .founder-inner            { grid-template-columns: 1fr; gap: 40px; }
  .founder-avatar-wrap      { max-width: 300px; margin: 0 auto; }

  /* Footer */
  .footer-grid            { grid-template-columns: 1fr; }
  .footer-bottom          { flex-direction: column; gap: 16px; text-align: center; }

  /* CTA form */
  .cta-form               { flex-direction: column; border-radius: 16px; padding: 16px; }
}

/* ── SMALL MOBILE  ≤ 480px ──────────────────────── */
@media (max-width: 480px) {
  section                 { padding: 72px 0; }
  .process-steps          { grid-template-columns: 1fr; }
}




/* ── SEMANTIC TAG RESETS (SEO) ───────────────────── */
h3.service-name, h3.step-title, h3.feature-title, h3.plan-name, h3.template-name {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
h4.footer-col-title {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
p.service-desc, p.step-desc, p.feature-desc, p.template-desc {
  margin: 0;
}
address.contact-info {
  font-style: normal;
}
/* ── SR-ONLY (Screen Reader Only) ───────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ── SKIP TO CONTENT (Accessibility + SEO) ──────── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s;
}
.skip-to-content:focus {
  top: 0;
}
