/* ============================================================
   CLOUDFORM ACCOUNTING — Design System & Website Styles
   Palette: Gold #C9A227 | Olive #556B2F | Forest #3F5225
   Matte Black #1A1A1A | Slate #4A4F55 | Off White #F7F6F2
   Font: Poppins (400, 500, 600, 700) + Source Serif 4
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Serif+4:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CSS Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1A1A1A; background: #FFFFFF; line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Custom Properties --- */
:root {
  --gold: #C9A227;
  --gold-secondary: #9C7A1C;
  --gold-light: #D4BF6A;
  --gold-10: #FAF6E8;
  --olive: #556B2F;
  --forest: #3F5225;
  --forest-light: #4A6330;
  --matte-black: #1A1A1A;
  --slate: #4A4F55;
  --off-white: #F7F6F2;
  --white: #FFFFFF;
  --gray-100: #EEEDE9;
  --gray-200: #E0DED8;
  --gray-300: #D6D1C3;
  --gray-400: #A9A29A;
  --success: #3D8B6E;
  --error: #C75050;
  --info: #5B8DB8;

  --font-primary: 'Poppins', sans-serif;
  --font-editorial: 'Source Serif 4', Georgia, serif;

  --shadow-sm: 0 1px 3px rgba(26,26,26,0.06), 0 1px 2px rgba(26,26,26,0.04);
  --shadow-md: 0 4px 16px rgba(26,26,26,0.08), 0 2px 4px rgba(26,26,26,0.04);
  --shadow-lg: 0 12px 40px rgba(26,26,26,0.12), 0 4px 12px rgba(26,26,26,0.06);
  --shadow-gold: 0 4px 20px rgba(201,162,39,0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1200px;
  --section-gap: 120px;
}

/* --- Utility --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   NAVIGATION
   ============================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s ease; }
.nav--transparent { background: transparent; }
.nav--solid { background: rgba(26,26,26,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,0.05); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--container); margin: 0 auto; padding: 20px 24px; transition: padding 0.3s ease; }
.nav--solid .nav__inner { padding: 14px 24px; }
.nav__logo { display: flex; align-items: center; gap: 16px; }
.nav__logo-symbol { height: 56px; width: auto; transition: height 0.3s ease; }
.nav--solid .nav__logo-symbol { height: 44px; }
.nav__logo-text { display: flex; flex-direction: column; align-items: center; }
.nav__logo-name { font-weight: 700; font-size: 1.5rem; color: #FFFFFF; letter-spacing: 0.12em; line-height: 1.1; }
.nav__logo-sub { display: flex; align-items: center; gap: 8px; margin-top: 3px; justify-content: center; }
.nav__logo-sub::before,
.nav__logo-sub::after { content: ''; display: block; width: 20px; height: 1.5px; background: var(--olive); }
.nav__logo-sub span { font-weight: 600; font-size: 0.75rem; color: var(--olive); letter-spacing: 0.25em; text-transform: uppercase; padding-left: 0.25em; }
.nav--solid .nav__logo-name { font-size: 1.3rem; }
.nav--solid .nav__logo-sub span { font-size: 0.58rem; }
.nav--solid .nav__logo-sub::before,
.nav--solid .nav__logo-sub::after { width: 16px; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s ease; position: relative; }
.nav__link:hover { color: #FFFFFF; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav__link:hover::after { width: 100%; }
.nav__cta { font-size: 0.95rem; font-weight: 600; color: var(--matte-black); background: var(--gold); padding: 12px 28px; border-radius: 8px; transition: all 0.3s ease; letter-spacing: 0.02em; }
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* Mobile nav */
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__hamburger span { width: 24px; height: 2px; background: #FFFFFF; transition: all 0.3s ease; border-radius: 2px; }

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--matte-black); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(63,82,37,0.85) 50%, rgba(26,26,26,0.90) 100%); z-index: 1; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,162,39,0.08) 0%, transparent 70%); z-index: 2; }
.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; z-index: 1; }
.hero__content { position: relative; z-index: 10; max-width: var(--container); margin: 0 auto; padding: 140px 24px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero__text { animation: slideInLeft 1s ease; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.25); color: var(--gold); font-size: 0.9rem; font-weight: 600; padding: 8px 20px; border-radius: 100px; margin-bottom: 28px; letter-spacing: 0.04em; }
.hero__badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero__title { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700; color: #FFFFFF; line-height: 1.1; margin-bottom: 24px; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 40px; max-width: 540px; }
.hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__commitments { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero__commitment { display: flex; align-items: center; gap: 10px; }
.hero__commitment-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.hero__commitment-text { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* Hero visual — dashboard mockup */
.hero__visual { animation: slideInRight 1s ease 0.2s both; position: relative; }
.hero__dashboard { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; backdrop-filter: blur(8px); position: relative; }
.hero__dashboard::before { content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero__dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero__dash-title { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__dash-badge { font-size: 0.65rem; font-weight: 600; color: var(--gold); background: rgba(201,162,39,0.12); padding: 3px 10px; border-radius: 100px; }
.hero__dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hero__metric { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 16px; }
.hero__metric-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.hero__metric-value { font-size: 1.5rem; font-weight: 700; color: #FFFFFF; }
.hero__metric-change { font-size: 0.7rem; font-weight: 600; margin-top: 4px; }
.hero__metric-change--up { color: var(--success); }
.hero__metric-change--down { color: var(--error); }
.hero__dash-chart { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 16px; height: 140px; position: relative; overflow: hidden; }
.hero__dash-chart svg { width: 100%; height: 100%; }

/* Floating elements around dashboard */
.hero__float { position: absolute; background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 16px 20px; animation: float 4s ease-in-out infinite; text-align: center; min-width: 130px; }
.hero__float .icon { margin-bottom: 4px; font-size: 1.2rem; line-height: 1; }
.hero__float .label { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 500; line-height: 1.3; }
.hero__float .value { font-size: 0.85rem; color: #FFFFFF; font-weight: 600; line-height: 1.3; }
.hero__float--meeting { top: -60px; right: -30px; animation-delay: 0.5s; }
.hero__float--meeting .icon { color: var(--gold); }
.hero__float--close { bottom: 30px; left: -20px; animation-delay: 1.5s; }
.hero__float--close .icon { color: var(--success); }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-primary); font-weight: 600; font-size: 0.9rem; padding: 14px 32px; border-radius: 10px; transition: all 0.3s ease; letter-spacing: 0.02em; white-space: nowrap; }
.btn--primary { background: var(--gold); color: var(--matte-black); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--secondary { background: transparent; color: #FFFFFF; border: 1.5px solid rgba(255,255,255,0.25); }
.btn--secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn--dark { background: var(--matte-black); color: #FFFFFF; }
.btn--dark:hover { background: #2a2a2a; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--matte-black); }
.btn--sm { padding: 10px 20px; font-size: 0.8rem; border-radius: 8px; }
.btn--lg { padding: 18px 40px; font-size: 1rem; border-radius: 12px; }
.btn__arrow { transition: transform 0.3s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =============================================================
   SOCIAL PROOF BAR
   ============================================================= */
.social-proof { background: var(--off-white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 28px 0; }
.social-proof__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.social-proof__item { display: flex; align-items: center; gap: 12px; }
.social-proof__icon { font-size: 1.5rem; }
.social-proof__text { font-size: 0.95rem; font-weight: 500; color: var(--slate); }
.social-proof__text strong { color: var(--matte-black); font-weight: 700; }

/* =============================================================
   DIFFERENTIATOR SECTION — "What Makes Us Different"
   ============================================================= */
.differentiators { padding: var(--section-gap) 0; background: #FFFFFF; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-label { display: inline-block; font-size: 0.85rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--matte-black); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.15rem; color: var(--slate); line-height: 1.7; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-card { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 28px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.diff-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--olive)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.diff-card:hover::before { transform: scaleX(1); }
.diff-card__icon { width: 56px; height: 56px; background: var(--gold-10); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold); font-size: 1.6rem; }
.diff-card__title { font-size: 1.25rem; font-weight: 700; color: var(--matte-black); margin-bottom: 12px; }
.diff-card__desc { font-size: 1rem; color: var(--slate); line-height: 1.7; }

/* =============================================================
   MEETING SECTION — "The Meeting Is the Product"
   ============================================================= */
.meeting { padding: var(--section-gap) 0; background: var(--matte-black); position: relative; overflow: hidden; }
.meeting::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, rgba(63,82,37,0.3) 0%, transparent 70%); }
.meeting__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.meeting__label { font-size: 0.85rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.meeting__title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: #FFFFFF; line-height: 1.2; margin-bottom: 20px; }
.meeting__title em { font-style: normal; color: var(--gold); }
.meeting__desc { font-size: 1.15rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; }
.meeting__features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.meeting__feature { display: flex; align-items: flex-start; gap: 14px; }
.meeting__feature-icon { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.meeting__feature-text { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.meeting__feature-text strong { color: #FFFFFF; }

/* Meeting chat mockup */
.meeting__chat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px; }
.meeting__chat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.meeting__chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--olive)); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: #FFFFFF; }
.meeting__chat-name { font-size: 0.9rem; font-weight: 600; color: #FFFFFF; }
.meeting__chat-role { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.meeting__chat-messages { display: flex; flex-direction: column; gap: 12px; }
.meeting__chat-msg { max-width: 85%; padding: 12px 16px; border-radius: 14px; font-size: 0.85rem; line-height: 1.5; }
.meeting__chat-msg--them { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); align-self: flex-start; border-bottom-left-radius: 4px; }
.meeting__chat-msg--you { background: rgba(201,162,39,0.15); color: rgba(255,255,255,0.9); align-self: flex-end; border-bottom-right-radius: 4px; }

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how-it-works { padding: var(--section-gap) 0; background: var(--off-white); }
.hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.hiw-steps::before { content: ''; position: absolute; top: 32px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--olive), var(--forest)); opacity: 0.3; }
.hiw-step { text-align: center; position: relative; }
.hiw-step__number { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: var(--gold); margin: 0 auto 24px; position: relative; z-index: 2; transition: all 0.3s ease; }
.hiw-step:hover .hiw-step__number { background: var(--gold); color: var(--matte-black); box-shadow: var(--shadow-gold); }
.hiw-step__title { font-size: 1.2rem; font-weight: 700; color: var(--matte-black); margin-bottom: 12px; }
.hiw-step__desc { font-size: 1rem; color: var(--slate); line-height: 1.7; max-width: 320px; margin: 0 auto; }

/* =============================================================
   PRICING
   ============================================================= */
.pricing { padding: var(--section-gap) 0; background: #FFFFFF; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.pricing-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 20px; transition: all 0.4s ease; position: relative; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card .btn { margin-top: auto; }
.pricing-card--featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.pricing-card--featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--matte-black); font-size: 0.7rem; font-weight: 700; padding: 4px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-card__tier { font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.pricing-card__name { font-size: 1.35rem; font-weight: 700; color: var(--matte-black); margin-bottom: 16px; }
.pricing-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-card__amount { font-size: 2.8rem; font-weight: 700; color: var(--matte-black); }
.pricing-card__period { font-size: 1rem; color: var(--slate); }
.pricing-card__desc { font-size: 0.95rem; color: var(--slate); margin-bottom: 24px; line-height: 1.6; }
.pricing-card__divider { height: 1px; background: var(--gray-200); margin-bottom: 24px; }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--slate); }
.pricing-card__check { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 1rem; }
.pricing-card__meeting { background: var(--gold-10); border: 1px solid rgba(201,162,39,0.15); border-radius: var(--radius-md); padding: 14px 16px; margin-bottom: 24px; }
.pricing-card__meeting-label { font-size: 0.75rem; font-weight: 600; color: var(--gold-secondary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.pricing-card__meeting-text { font-size: 0.95rem; color: var(--matte-black); font-weight: 500; }

/* --- QBO Prerequisite Banner --- */
.qbo-prereq-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gold-10);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 36px;
  box-shadow: 0 4px 16px rgba(201,162,39,0.08);
}
.qbo-prereq-banner__icon {
  font-size: 1.6rem;
  color: var(--gold-secondary);
  flex-shrink: 0;
}
.qbo-prereq-banner__text {
  font-size: 0.95rem;
  color: var(--matte-black);
  line-height: 1.6;
}

/* --- Cleanup & Catch-Up Section --- */
.cleanup-section {
  margin-top: 60px;
}
.cleanup-card {
  background: linear-gradient(135deg, #FAF8F4 0%, #FFFFFF 100%);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.cleanup-card__header {
  margin-bottom: 32px;
}
.cleanup-card__badge {
  display: inline-block;
  background: var(--forest);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.cleanup-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--matte-black);
  margin-bottom: 12px;
}
.cleanup-card__subtitle {
  font-size: 1rem;
  color: var(--slate);
  max-width: 800px;
  line-height: 1.6;
}
.cleanup-card__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: center;
}
.cleanup-card__rate-box {
  background: #FFFFFF;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.cleanup-card__rate-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-secondary);
  margin-bottom: 8px;
}
.cleanup-card__rate-val {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--matte-black);
  line-height: 1;
  margin-bottom: 12px;
}
.cleanup-card__rate-unit {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--slate);
}
.cleanup-card__rate-note {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 8px;
}
.cleanup-card__details-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--matte-black);
  margin-bottom: 16px;
}
.cleanup-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cleanup-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.5;
}
.cleanup-card__check {
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .cleanup-card__grid {
    grid-template-columns: 1fr;
  }
  .cleanup-card {
    padding: 32px 24px;
  }
}

/* --- Self-Serve Signup / Checkout Form --- */
.checkout-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.checkout-plan-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.checkout-plan-card:hover {
  border-color: var(--gold-light);
}
.checkout-plan-card.selected {
  border-color: var(--gold);
  background: var(--gold-10);
  box-shadow: 0 2px 10px rgba(201,162,39,0.15);
}
.checkout-plan-card input[type="radio"] {
  position: absolute;
  top: 14px;
  right: 14px;
  accent-color: var(--gold);
}
.checkout-plan-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--matte-black);
  margin-bottom: 4px;
}
.checkout-plan-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--matte-black);
}
.checkout-plan-price span {
  font-size: 0.85rem;
  color: var(--slate);
  font-weight: 400;
}
.checkout-plan-sub {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 4px;
}
.qbo-confirm-box {
  background: var(--gold-10);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.qbo-confirm-box label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--matte-black);
  line-height: 1.5;
}
.qbo-confirm-box input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.books-status-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.books-status-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  background: #FFFFFF;
}
.books-status-option:hover {
  border-color: var(--gold-light);
}
.books-status-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.card-fields-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}
.security-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--slate);
  flex-wrap: wrap;
}
.security-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 600px) {
  .checkout-plan-grid {
    grid-template-columns: 1fr;
  }
  .card-fields-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-fields-grid .field-card-num-col {
    grid-column: span 2;
  }
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials { padding: var(--section-gap) 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.3s ease; }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card__stars { display: flex; gap: 2px; color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-card__text { font-family: var(--font-editorial); font-size: 1.1rem; color: var(--matte-black); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-10), var(--gray-100)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--gold); }
.testimonial-card__name { font-size: 0.9rem; font-weight: 600; color: var(--matte-black); }
.testimonial-card__biz { font-size: 0.75rem; color: var(--slate); }

/* =============================================================
   CTA / FINAL SECTION
   ============================================================= */
.final-cta { padding: 100px 0; background: linear-gradient(135deg, var(--matte-black) 0%, var(--forest) 60%, var(--olive) 100%); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%); transform: translate(-50%, -50%); }
.final-cta__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #FFFFFF; margin-bottom: 16px; position: relative; z-index: 2; }
.final-cta__title em { font-style: normal; color: var(--gold); }
.final-cta__subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 580px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; line-height: 1.7; }
.final-cta__actions { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 2; flex-wrap: wrap; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--matte-black); color: rgba(255,255,255,0.6); padding: 64px 0 32px; }
.footer__grid { display: flex; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.footer__grid > div:first-child { flex: 0 0 320px; max-width: 320px; }
.footer__grid > div:not(:first-child) { flex: 0 0 auto; }
.footer__brand-desc { font-size: 0.95rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.5); max-width: 340px; }
.footer__logo-symbol { height: 48px; width: auto; }
.footer .nav__logo-name { font-size: 1.2rem; }
.footer .nav__logo-sub { gap: 6px; }
.footer .nav__logo-sub span { font-size: 0.6rem; }
.footer .nav__logo-sub::before,
.footer .nav__logo-sub::after { width: 16px; }
.footer__heading { font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.footer__link { display: block; font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 0.2s ease; }
.footer__link:hover { color: #FFFFFF; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.75rem; }
.footer__legal { color: rgba(255,255,255,0.35); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }
  .hero__content { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 500px; }
  .meeting__inner { grid-template-columns: 1fr; gap: 48px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: span 2; max-width: 400px; justify-self: center; }
  .footer__grid { flex-wrap: wrap; }
  .footer__grid > div:first-child { flex: 0 0 100%; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  /* --- Mobile Navigation: Full-Screen Overlay --- */
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 999;
    padding: 100px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
    display: flex;
  }
  .nav.nav--open { 
    background: rgba(26,26,26,0.99) !important; 
    backdrop-filter: none !important; 
    bottom: 0; 
    height: 100vh;
  }
  .nav--open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    background: transparent !important;
  }
  .nav__link {
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    padding: 18px 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__link::after { display: none; }
  .nav__cta {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    padding: 16px 28px;
    font-size: 1.05rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  /* Hamburger → X animation */
  .nav--open .nav__hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav--open .nav__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav--open .nav__hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* --- Hero --- */
  .hero__content { padding: 120px 24px 64px; }
  .hero__title { font-size: 2.2rem; }
  .hero__subtitle { font-size: 1.05rem; }
  .hero__badge { font-size: 0.8rem; padding: 8px 16px; }
  .hero__commitments { flex-direction: column; gap: 16px; }
  .hero__visual { display: none; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* --- Section typography --- */
  .section-title { font-size: clamp(1.6rem, 5vw, 2rem); }
  .section-subtitle { font-size: 1rem; }
  .section-header { margin-bottom: 40px; }

  /* --- Grids & Cards --- */
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { padding: 28px 22px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .hiw-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 22px; }
  .pricing-card:last-child { grid-column: auto; max-width: none; }
  .pricing-card--featured { box-shadow: 0 4px 20px rgba(201,162,39,0.2); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px 20px; }

  /* --- Meeting section mobile --- */
  .meeting__chat { padding: 20px; }
  .meeting__chat-msg { font-size: 0.8rem; }

  /* --- Social Proof --- */
  .social-proof { padding: 20px 0; }
  .social-proof__inner { gap: 20px; flex-direction: column; align-items: flex-start; padding: 0 8px; }
  .social-proof__item { gap: 10px; }
  .social-proof__text { font-size: 0.88rem; }

  /* --- Final CTA --- */
  .final-cta { padding: 64px 0; }
  .final-cta__subtitle { font-size: 1rem; }
  .final-cta__actions { flex-direction: column; align-items: center; width: 100%; }
  .final-cta__actions .btn { width: 100%; max-width: 360px; }

  /* --- Footer --- */
  .footer { padding: 48px 0 24px; }
  .footer__grid { flex-direction: column; gap: 32px; }
  .footer__grid > div:first-child { flex: 0 0 auto; }
  .footer__link { padding: 6px 0; min-height: 44px; display: flex; align-items: center; font-size: 0.95rem; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* --- Touch Targets (44px minimum) --- */
  .btn { min-height: 48px; padding: 14px 24px; }
  .btn--lg { min-height: 52px; padding: 16px 32px; }
  .btn--sm { min-height: 44px; padding: 12px 20px; }

  /* --- Prevent iOS auto-zoom on inputs --- */
  input, select, textarea { font-size: 16px !important; }
}

/* --- Small phones (≤ 420px) --- */
@media (max-width: 420px) {
  .hero__content { padding: 110px 16px 48px; }
  .hero__title { font-size: 1.85rem; }
  .hero__subtitle { font-size: 0.95rem; }
  .container { padding: 0 16px; }
  .diff-card { padding: 24px 18px; }
  .pricing-card { padding: 24px 18px; }
  .pricing-card__amount { font-size: 2.2rem; }
  .section-title { font-size: 1.5rem; }
  .nav__logo-name { font-size: 1.15rem; }
  .nav--solid .nav__logo-name { font-size: 1.1rem; }
  .nav__logo-symbol { height: 40px; }
  .nav--solid .nav__logo-symbol { height: 36px; }
}
