/* =========================================
   IMOVELO — Landing Page
   Clean modern SaaS — warm, trustworthy
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&display=swap');

:root {
  --indigo: #2d2b55;
  --indigo-light: #4a47a3;
  --indigo-soft: #eeedf5;
  --indigo-wash: #f7f6fb;
  --coral: #e8604c;
  --coral-light: #fef0ee;
  --coral-dark: #d14d3a;
  --teal: #16a38a;
  --teal-light: #edfaf7;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-900: #171717;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1140px;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.03);
  --shadow-lg: 0 4px 6px rgba(0,0,0,.03), 0 12px 32px rgba(0,0,0,.06);
  --shadow-xl: 0 8px 16px rgba(0,0,0,.04), 0 24px 56px rgba(0,0,0,.08);
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ---- Reset ---- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo-light); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--coral); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font); font-weight: 800; line-height: 1.2; color: var(--gray-900); }

/* ---- Layout ---- */

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }

/* ---- Reveal ---- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- Header ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .3s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img { height: 36px; width: auto; }

.logo-text {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -.5px;
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 20px;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav-menu.active { display: flex; }

.nav-menu li a:not(.header-cta) {
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  display: block;
}
.nav-menu li a:not(.header-cta):hover { color: var(--indigo); }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-900);
  position: relative;
  border-radius: 1px;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-900);
  position: absolute;
  left: 0;
  border-radius: 1px;
  transition: transform .25s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.header-cta {
  display: none !important;
}

.nav-menu li .header-cta {
  margin-top: 8px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  gap: 8px;
}

.btn--primary {
  background: var(--indigo);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--indigo-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,43,85,.2);
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
}
.btn--coral:hover {
  background: var(--coral-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,96,76,.25);
}

.btn--outline {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}
.btn--outline:hover {
  border-color: var(--gray-900);
  color: var(--gray-900);
}

.btn--ghost {
  background: transparent;
  color: var(--indigo);
  padding: 12px 16px;
}
.btn--ghost:hover { background: var(--indigo-soft); }

.btn--large { font-size: 16px; padding: 16px 32px; border-radius: 12px; }
.btn--arrow::after { content: '\2192'; transition: transform .2s var(--ease); }
.btn--arrow:hover::after { transform: translateX(3px); }

/* ---- Hero ---- */

.hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--indigo-wash) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--coral);
  position: relative;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar--1 { background: var(--indigo-soft); color: var(--indigo); }
.hero-avatar--2 { background: var(--coral-light); color: var(--coral); }
.hero-avatar--3 { background: var(--teal-light); color: var(--teal); }
.hero-avatar--4 { background: var(--indigo-soft); color: var(--indigo-light); }

.hero-social-text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
}
.hero-social-text strong {
  color: var(--gray-900);
  font-weight: 700;
}

/* Hero visual - dashboard preview */
.hero-visual { display: none; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 420px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.hero-card-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--indigo-soft), var(--coral-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-card-name { font-weight: 700; font-size: 15px; color: var(--gray-900); }
.hero-card-role { font-size: 12px; color: var(--gray-400); }

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card-stat {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px;
}

.hero-card-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-card-stat-label {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}

.hero-card-stat--highlight { background: var(--coral-light); }
.hero-card-stat--highlight .hero-card-stat-value { color: var(--coral); }

/* ---- Section Headers ---- */

.section-header { text-align: center; margin-bottom: 48px; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.section-header p {
  color: var(--gray-500);
  max-width: 480px;
  margin: 0 auto;
  font-size: 16px;
}

/* ---- Features ---- */

.features { background: var(--gray-50); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all .3s var(--ease);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-icon--indigo { background: var(--indigo-soft); }
.feature-icon--coral { background: var(--coral-light); }
.feature-icon--teal { background: var(--teal-light); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---- How It Works ---- */

.how-it-works { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--indigo);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-content p {
  color: var(--gray-500);
  font-size: 14.5px;
}

/* ---- Social Proof ---- */

.social-proof {
  background: var(--indigo);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(74,71,163,.3) 0%, transparent 70%);
}

.social-proof .container { position: relative; z-index: 1; }

.social-proof h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  margin-bottom: 40px;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.stat-item { padding: 8px; }

.stat-number {
  font-size: 44px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ---- FAQ ---- */

.faq { background: var(--gray-50); }

.faq-list { max-width: 680px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s var(--ease);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--indigo); }

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}

.faq-item.active .faq-question::after {
  content: '\2212';
  color: var(--coral);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-500);
  font-size: 14.5px;
  line-height: 1.8;
}

/* ---- CTA Section ---- */

.cta-section {
  background: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-card {
  background: var(--indigo);
  border-radius: var(--radius-xl);
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 30% 20%, rgba(74,71,163,.4) 0%, transparent 60%);
}

.cta-card .cta-inner { position: relative; z-index: 1; }

.cta-card h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-card p {
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.cta-card .btn--coral { font-size: 16px; padding: 16px 32px; }

/* ---- Pricing ---- */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all .3s var(--ease);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.pricing-card--featured {
  border-color: var(--coral);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.pricing-price span { font-size: 15px; font-weight: 400; color: var(--gray-400); }

.pricing-description { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }

.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.pricing-card--disabled { opacity: .6; }
.pricing-card--disabled .pricing-features li::before { color: var(--gray-400); }
.pricing-soon {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
}

/* ---- Blog ---- */

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.blog-card-image {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, var(--indigo-wash), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
}

.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; font-weight: 500; }
.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.blog-card h3 a { color: var(--gray-900); }
.blog-card h3 a:hover { color: var(--coral); }
.blog-card p { color: var(--gray-500); font-size: 14px; margin-bottom: 16px; line-height: 1.7; }
.blog-card .read-more { font-size: 13px; font-weight: 700; color: var(--indigo-light); }

/* ---- Page Header ---- */

.page-header {
  background: var(--indigo);
  color: var(--white);
  text-align: center;
  padding: calc(var(--header-h) + 48px) 0 56px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(74,71,163,.3) 0%, transparent 60%);
}

.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(28px, 4vw, 40px); color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 480px; margin: 0 auto; }

/* ---- How It Works Detail (inner page) ---- */

.step-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}
.step-detail:last-child { border-bottom: none; }

.step-detail-content { order: 2; }

.step-detail-content .step-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.step-detail-content h3 { font-size: 22px; margin-bottom: 12px; }
.step-detail-content p { color: var(--gray-500); line-height: 1.8; }

.step-detail-image {
  order: 1;
  background: linear-gradient(135deg, var(--gray-50), var(--indigo-wash));
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  border: 1px solid var(--gray-200);
}

/* ---- Footer ---- */

.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.55);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

.footer-links h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: 14px;
  padding: 4px 0;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ---- Trust Bar ---- */

.trust-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.trust-bar p {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: .3;
}

.trust-logos span {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-900);
  letter-spacing: .5px;
}

/* ---- Responsive: Tablet ---- */

@media (min-width: 640px) {
  .container { padding: 0 32px; }
  .section { padding: 88px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .step-detail { grid-template-columns: 1fr 1fr; gap: 40px; }
  .step-detail-content { order: 1; }
  .step-detail-image { order: 2; height: 260px; }
  .step-detail:nth-child(even) .step-detail-content { order: 2; }
  .step-detail:nth-child(even) .step-detail-image { order: 1; }
}

/* ---- Responsive: Desktop ---- */

@media (min-width: 900px) {
  .menu-toggle { display: none; }

  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 32px;
    box-shadow: none;
    align-items: center;
  }
  .nav-menu li a:not(.header-cta) { padding: 0; font-size: 14px; }

  .nav-menu li .header-cta {
    margin-top: 0;
    margin-left: 4px;
  }

  .header-cta {
    display: inline-flex !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    white-space: nowrap;
    color: var(--white) !important;
    background: var(--indigo);
    transition: all .25s var(--ease);
  }

  .header-cta:hover {
    background: var(--indigo-light);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45,43,85,.2);
  }

  .features-grid { grid-template-columns: repeat(3, 1fr); }

  .steps { grid-template-columns: repeat(3, 1fr); text-align: center; }
  .step { flex-direction: column; align-items: center; text-align: center; }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .hero { padding: calc(var(--header-h) + 72px) 0 72px; }
  .hero .container { grid-template-columns: 1fr 1fr; gap: 56px; }
  .hero-visual { display: flex; justify-content: center; }
}

@media (min-width: 1100px) {
  .step-detail { gap: 64px; }
  .step-detail-image { height: 300px; }
  .hero { padding: calc(var(--header-h) + 88px) 0 88px; }
}
