/* ========================================
   MY SERVICE BUILDER — "Forge" Design System
   Craftsman-meets-technology aesthetic
   ======================================== */

/* --- Custom Properties --- */
:root {
  --midnight: #0a0e1a;
  --navy: #141927;
  --navy-light: #1e2538;
  --parchment: #f5f0e8;
  --cream: #faf8f4;
  --white: #ffffff;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --amber-glow: rgba(217, 119, 6, 0.15);
  --sky: #0ea5e9;
  --sky-glow: rgba(14, 165, 233, 0.12);
  --emerald: #10b981;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --slate-dark: #475569;
  --text-dark: #1a1a2e;
  --border-dark: rgba(255,255,255,0.07);
  --border-light: rgba(0,0,0,0.07);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-amber: 0 8px 30px rgba(217,119,6,0.25);

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: 1180px;
  --gap: clamp(1rem, 2.5vw, 2rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.6s;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { max-width: 65ch; }
.text-balance { text-wrap: balance; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--wide { max-width: 1340px; }
.container--narrow { max-width: 780px; }

/* --- Section --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--dark {
  background: var(--midnight);
  color: var(--white);
}

.section--cream {
  background: var(--cream);
}

.section--parchment {
  background: var(--parchment);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--slate);
  max-width: 55ch;
  line-height: 1.7;
}

.section--dark .section-subtitle { color: var(--slate-light); }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease), padding var(--duration) var(--ease);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.2);
  padding: 0.55rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  white-space: nowrap;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  margin-left: 0.8rem;
  padding: 0.55rem 1.5rem;
  background: var(--amber);
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 100px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.nav-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 380px);
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    background: var(--navy);
    padding: 5rem 2rem 2rem;
    gap: 0.3rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link { width: 100%; padding: 0.8rem 1rem; font-size: 1.05rem; }

  .nav-cta { margin: 1rem 0 0; width: 100%; text-align: center; padding: 0.8rem; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--midnight);
  color: var(--white);
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--amber-glow) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(ellipse at center, var(--sky-glow) 0%, transparent 55%);
  animation: heroGlow 10s ease-in-out 2s infinite alternate-reverse;
}

@keyframes heroGlow {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to { transform: translate(30px, -20px) scale(1.1); opacity: 1; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-light);
  margin-bottom: 1.8rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero h1 {
  margin-bottom: 1.4rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--slate-light);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 460px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.hero-card-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  background: rgba(16,185,129,0.12);
  color: var(--emerald);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-card-rows {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.hero-card-row-label { color: var(--slate-light); }
.hero-card-row-value { font-weight: 600; color: rgba(255,255,255,0.9); font-family: var(--font-heading); }
.hero-card-row-value.amber { color: var(--amber-light); }

.hero-card-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-total-label {
  font-size: 0.88rem;
  color: var(--slate-light);
}

.hero-card-total-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber-light);
}

.hero-float-badge {
  position: absolute;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-float-badge--top {
  top: -12px;
  right: -20px;
  color: var(--emerald);
}

.hero-float-badge--bottom {
  bottom: 20px;
  left: -30px;
  color: var(--sky);
  animation-delay: 2s;
}

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

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }
  .hero-visual { margin-top: 2rem; }
  .hero-float-badge--top { right: 0; }
  .hero-float-badge--bottom { left: 0; }
}

@media (max-width: 500px) {
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 0.6rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(217,119,6,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}

.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.btn--outline-dark {
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
}

.btn--outline-dark:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn--dark {
  background: var(--midnight);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number .accent { color: var(--amber-light); }

.stat-label {
  font-size: 0.85rem;
  color: var(--slate-light);
  font-weight: 500;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.feature-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--amber);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-icon--sky { background: var(--sky-glow); color: var(--sky); }
.feature-icon--emerald { background: rgba(16,185,129,0.12); color: var(--emerald); }

.feature-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
}

.section--dark .feature-card {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-dark);
}

.section--dark .feature-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(217,119,6,0.2);
}

.section--dark .feature-card h3 { color: var(--white); }
.section--dark .feature-card p { color: var(--slate-light); }

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

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

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--sky), var(--emerald));
  border-radius: 1px;
}

.step {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step .step-screenshot {
  margin-top: auto;
}

.step-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.4rem;
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--amber);
  position: relative;
  z-index: 2;
}

.step:nth-child(2) .step-number { border-color: var(--sky); color: var(--sky); }
.step:nth-child(3) .step-number { border-color: var(--emerald); color: var(--emerald); }

.step h3 { margin-bottom: 0.6rem; }

.step p {
  font-size: 0.92rem;
  color: var(--slate);
  max-width: 30ch;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
}

/* --- Agreement Types --- */
.agreements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.agreement-card {
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.agreement-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.agreement-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.agreement-card p { font-size: 0.88rem; color: var(--slate); margin: 0 auto; max-width: 28ch; }

@media (max-width: 900px) { .agreements-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .agreements-grid { grid-template-columns: 1fr; } }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.pricing-card--featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), var(--shadow-lg);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.2rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.8rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.pricing-amount .dollar { font-size: 1.6rem; vertical-align: top; margin-right: 2px; }

.pricing-period {
  font-size: 0.88rem;
  color: var(--slate);
  margin-top: 0.2rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: var(--slate-dark);
  border-bottom: 1px solid var(--border-light);
}

.pricing-feature:last-child { border-bottom: none; }

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.92rem;
  color: var(--slate);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note strong { color: var(--text-dark); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}

/* --- Testimonial / Social Proof --- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.proof-card {
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
}

.proof-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--amber-light);
}

.proof-card-stars svg { width: 18px; height: 18px; }

.proof-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.proof-card-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.proof-card-role {
  font-size: 0.8rem;
  color: var(--slate-light);
}

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

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 50%, var(--midnight) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: var(--slate-light); margin: 0 auto 2rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.faq-item {
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(217,119,6,0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

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

.faq-icon svg { width: 14px; height: 14px; color: var(--slate); }

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--amber-glow);
}

.faq-item.open .faq-icon svg { color: var(--amber); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), margin-top 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  margin-top: 1rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.75;
}

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

/* --- Comparison Table --- */
.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table thead th {
  background: var(--midnight);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
}

.comparison-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius-lg) 0 0; }

.comparison-table tbody tr:hover { background: var(--cream); }
.comparison-table tbody td:first-child { font-weight: 500; }

.comparison-check { color: var(--emerald); }
.comparison-cross { color: var(--slate-light); }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  padding: 1.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label {
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.form-input,
.form-textarea {
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--slate); }
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.form-textarea { resize: vertical; min-height: 120px; }

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

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--slate-light);
  margin-top: 1rem;
  max-width: 32ch;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--slate-light);
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--amber-light); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}

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

/* --- Page Header (sub-pages) --- */
.page-header {
  background: var(--midnight);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, var(--amber-glow) 0%, transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 2; }
.page-header p { margin: 0.8rem auto 0; }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.gap-sm { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* About page timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--sky), var(--emerald));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: -3rem;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 3px solid var(--amber);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item:nth-child(2) .timeline-dot { border-color: var(--sky); }
.timeline-item:nth-child(3) .timeline-dot { border-color: var(--emerald); }
.timeline-item:nth-child(4) .timeline-dot { border-color: var(--amber-light); }

.timeline-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.timeline-item:nth-child(2) .timeline-year { color: var(--sky); }
.timeline-item:nth-child(3) .timeline-year { color: var(--emerald); }
.timeline-item:nth-child(4) .timeline-year { color: var(--amber-light); }

.timeline-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
}

/* Trust logos row */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate);
}

.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--amber);
}

/* --- Hero Screenshot --- */
.hero-screenshot {
  max-width: 560px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}

/* --- Hero A: App + Estimate Card --- */
.hero-app-demo {
  position: relative;
  max-width: 650px;
  width: 100%;
}

.hero-app-screenshot {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top left;
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}

@media (max-width: 1100px) {
  .hero-app-screenshot { height: 400px; }
}

@media (max-width: 900px) {
  .hero-app-screenshot { height: 320px; }
}

.hero-estimate-card {
  position: absolute;
  bottom: 5%;
  right: -8%;
  width: 260px;
  background: var(--white);
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.06);
  color: var(--text-dark);
  font-family: var(--font-body);
  transform: rotate(1deg);
}

.estimate-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.estimate-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
}

.estimate-type {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-dark);
}

.estimate-client {
  margin-bottom: 0.7rem;
}

.estimate-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 0.1rem;
}

.estimate-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
}

.estimate-line {
  height: 1px;
  background: var(--border-light);
  margin: 0.6rem 0;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--slate-dark);
  padding: 0.2rem 0;
}

.estimate-total {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.35rem 0;
}

.estimate-monthly {
  text-align: right;
  font-size: 0.7rem;
  color: var(--slate);
  margin-top: -0.1rem;
}

.estimate-footer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--emerald);
}

.estimate-footer svg {
  color: var(--emerald);
}

@media (max-width: 900px) {
  .hero-app-demo {
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-estimate-card {
    width: 220px;
    right: -5%;
    bottom: -10%;
  }
}

@media (max-width: 520px) {
  .hero-estimate-card {
    width: 190px;
    padding: 1rem 1.1rem 0.8rem;
    right: -2%;
  }
  .estimate-total { font-size: 0.85rem; }
}

/* --- Hero B: Stacked Images --- */
.hero-stack {
  position: relative;
  max-width: 620px;
  width: 100%;
}

.hero-stack-back {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}

.hero-stack-front {
  position: absolute;
  bottom: -12%;
  right: -10%;
  width: 65%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  transform: rotate(1.5deg);
}

@media (max-width: 900px) {
  .hero-stack {
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-stack-front {
    width: 60%;
    bottom: -8%;
    right: -5%;
  }
}

/* --- Step Screenshots --- */
.step-screenshot {
  margin-top: 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.step-screenshot:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .step-screenshot { height: 180px; }
}

/* --- Feature Showcase (alternating image/text) --- */
.showcase-section { padding: var(--section-pad) 0; }

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.showcase-row:last-child { margin-bottom: 0; }

.showcase-row:nth-child(even) .showcase-img { order: -1; }

.showcase-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--border-light);
}

.showcase-text h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.showcase-text p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .showcase-row:nth-child(even) .showcase-img { order: 0; }
}

/* --- Billing Screenshot --- */
.billing-screenshot {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
}

.billing-screenshot img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--border-light);
}

.billing-screenshot p {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--slate);
}

/* --- Image Gallery Lightbox --- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.gallery-lightbox-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-nav:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.gallery-nav--prev { left: 1rem; }
.gallery-nav--next { right: 1rem; }

.gallery-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--font-heading);
}

@media (max-width: 600px) {
  .gallery-nav { width: 40px; height: 40px; font-size: 1.8rem; }
  .gallery-nav--prev { left: 0.5rem; }
  .gallery-nav--next { right: 0.5rem; }
}

/* --- Video Lightbox --- */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.video-lightbox-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ========================================
   HOMEPAGE — "Stop Underpricing" Sections
   ======================================== */

/* --- Loss Calculator Grid --- */
.loss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  max-width: 960px;
  margin: 0 auto;
}

.loss-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

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

.loss-card--highlight {
  background: var(--midnight);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.loss-card--highlight:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

.loss-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.1);
  color: var(--slate);
  overflow: hidden;
}

.loss-icon svg { width: 24px; height: 24px; min-width: 24px; min-height: 24px; flex-shrink: 0; }

.loss-icon--amber {
  background: var(--amber-glow);
  color: var(--amber);
}

.loss-icon--red {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.loss-card--highlight .loss-icon--red {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.loss-percent {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.loss-detail {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.loss-card--highlight .loss-detail {
  color: var(--slate-light);
}

.loss-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ef4444;
}

.loss-card--highlight .loss-amount {
  color: #fca5a5;
}

.loss-note {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.35rem;
  font-style: italic;
}

.loss-card--highlight .loss-note {
  color: var(--slate-light);
}

@media (max-width: 768px) {
  .loss-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* --- Solution Layout (text + mockup side by side) --- */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.solution-text .section-label::before {
  background: var(--amber);
}

.solution-text .section-subtitle {
  color: var(--slate-light);
}

.mt-3 { margin-top: 1.5rem; }

@media (max-width: 900px) {
  .solution-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .solution-text .section-label {
    justify-content: center;
  }
  .solution-text .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Price Mockup Card --- */
.price-mockup {
  background: var(--navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.price-mockup-header {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-light);
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border-dark);
  background: rgba(255,255,255,0.02);
}

.price-mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.price-mockup-row:last-of-type {
  border-bottom: none;
}

.price-mockup-label {
  font-size: 1rem;
  color: var(--slate-light);
}

.price-mockup-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.price-mockup-value--primary { color: var(--white); }
.price-mockup-value--green { color: var(--emerald); }
.price-mockup-value--amber { color: var(--amber-light); }
.price-mockup-value--red { color: #f87171; }

.price-mockup-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin: 0 2rem;
}

.price-mockup-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem 1.25rem;
  font-size: 0.82rem;
  color: var(--slate);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.price-mockup-note svg {
  color: var(--amber);
}

/* --- "Not Another System" Section --- */
.not-another-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.not-another-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--slate);
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 1.5rem;
}

.not-another-moment {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.not-another-sub {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
}

.not-another-checks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.not-another-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.not-another-check:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.not-another-check svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--slate);
  margin-top: 2px;
}

.not-another-check strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.not-another-check--highlight {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: var(--shadow-amber);
}

.not-another-check--highlight svg {
  color: var(--amber);
}

@media (max-width: 900px) {
  .not-another-layout {
    grid-template-columns: 1fr;
  }
  .not-another-desc,
  .not-another-sub {
    max-width: none;
  }
}

/* --- Key Features Row (below agreement types) --- */
.key-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dark);
}

.key-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.key-feature svg {
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}

.key-feature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.key-feature span {
  font-size: 0.85rem;
  color: var(--slate-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .key-features-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* --- CTA Trust line --- */
.cta-trust {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--slate);
  text-align: center;
}

/* Print styles */
@media print {
  .navbar, .nav-toggle, .hero-bg, .hero-grid { display: none; }
  body { color: #000; background: #fff; }
  .section--dark { background: #f5f5f5; color: #000; }
  .section--dark .section-subtitle,
  .section--dark .feature-card p { color: #333; }
}
