/* ===========================
   Breakthrough Advancement
   Brand Guidelines v2.0
   =========================== */

:root {
  --brand-red: #F02A34;
  --brand-orange: #F89421;
  --brand-yellow: #FFCC33;
  --brand-black: #000000;
  --brand-white: #FFFFFF;
  --brand-gradient: linear-gradient(135deg, #F02A34 0%, #F89421 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(240,42,52,0.08) 0%, rgba(248,148,33,0.08) 100%);
  --warm-tint: #FAF7F5;
  --warm-tint-2: #F7F2EE;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-900: #171717;

  --shadow-card: 0 1px 2px rgba(15,15,15,0.04), 0 8px 24px -12px rgba(15,15,15,0.08);
  --shadow-card-hover: 0 4px 8px rgba(15,15,15,0.05), 0 18px 40px -16px rgba(240,42,52,0.18);
  --shadow-chip: 0 1px 2px rgba(15,15,15,0.04), 0 4px 12px -4px rgba(15,15,15,0.08);

  --container: 1400px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --font-display: 'General Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-wordmark: 'Raleway', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--brand-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

h1 {
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1rem; }

.lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 56ch;
}

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin: 0 0 0.875rem;
  display: inline-block;
}

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

section { padding: var(--section-pad) 0; }

.section-header {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-header.left { text-align: left; margin-left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--brand-gradient);
  color: var(--brand-white);
  border-color: transparent;
  box-shadow: 0 6px 18px -8px rgba(240,42,52,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(240,42,52,0.55);
  filter: saturate(1.1);
}

.btn-secondary {
  background: var(--brand-white);
  color: var(--brand-black);
  border-color: var(--brand-black);
}
.btn-secondary:hover {
  background: var(--brand-gradient);
  color: var(--brand-white);
  border-color: transparent;
  transform: translateY(-2px);
}

.nav-portal-teaser {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  border-radius: 100px;
  background:
    linear-gradient(var(--brand-white), var(--brand-white)) padding-box,
    var(--brand-gradient) border-box;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px -10px rgba(240, 42, 52, 0.55);
  animation: portal-teaser-glow 2.8s ease-in-out infinite;
  cursor: default;
  white-space: nowrap;
}
.nav-portal-teaser__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--brand-black);
  line-height: 1;
}
.nav-portal-teaser__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 100px;
  background: var(--brand-gradient);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 4px 14px -4px rgba(240, 42, 52, 0.65);
  animation: portal-badge-pulse 2.8s ease-in-out infinite;
}
.nav-portal-teaser__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  flex-shrink: 0;
  animation: portal-dot-pulse 1.8s ease-out infinite;
}
@keyframes portal-teaser-glow {
  0%, 100% { box-shadow: 0 8px 24px -10px rgba(240, 42, 52, 0.45); }
  50% { box-shadow: 0 10px 28px -8px rgba(248, 148, 33, 0.65); }
}
@keyframes portal-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes portal-dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 204, 51, 0.75); }
  70%, 100% { box-shadow: 0 0 0 6px rgba(255, 204, 51, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-portal-teaser,
  .nav-portal-teaser__badge,
  .nav-portal-teaser__dot {
    animation: none;
  }
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s ease;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.brand-mark {
  height: 72px;
  width: auto;
  max-width: 520px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-mark {
    height: 52px;
    max-width: min(320px, 72vw);
  }
}

.brand-wordmark {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gray-900);
  transition: color 0.2s ease;
  position: relative;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand-red); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--brand-gradient);
}

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-black);
  transition: transform 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn, .nav-cta .nav-portal-teaser { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  display: none;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--brand-white);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-family: var(--font-display);
  font-weight: 600;
}
.mobile-menu__actions {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.mobile-menu__actions .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
}
.mobile-menu__portal-teaser {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: var(--brand-gradient-soft);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: inset 0 0 0 2px rgba(240, 42, 52, 0.18), 0 8px 24px -12px rgba(240, 42, 52, 0.35);
  text-align: center;
}
.mobile-menu__portal-teaser-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.65rem;
}
.mobile-menu__portal-teaser-hint {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--gray-700);
}

/* ===== Hero ===== */
.hero {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background: var(--brand-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .line { display: block; }
.hero .lead { margin-bottom: 2rem; font-size: clamp(1.125rem, 1.5vw, 1.375rem); max-width: 50ch; color: var(--gray-700); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero-trust {
  display: grid;
  gap: 0.875rem;
}

.hero-trust .icon-chips-label {
  margin-bottom: 0;
}

.hero-partner-badge {
  display: flex;
  align-items: center;
}

.hero-partner-badge .zoho-partner-badge img {
  height: 52px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.icon-chips-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin: 0 0 0.875rem;
  display: block;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.55rem 0.95rem;
  box-shadow: var(--shadow-chip);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-900);
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.chip:hover { transform: translateY(-2px); border-color: var(--brand-orange); }
.chip svg {
  width: 16px; height: 16px;
  color: var(--brand-red);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  max-width: 620px;
  width: 100%;
  margin-left: auto;
}
.hero-visual img { width: 100%; height: auto; border-radius: var(--radius-lg); }

/* ===== Zoho free trial bar (below hero) ===== */
.zoho-trial-bar {
  background: var(--warm-tint);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.zoho-trial-bar__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  box-shadow: 0 18px 40px -18px rgba(240, 42, 52, 0.55);
}
.zoho-trial-bar__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 88% -40%, rgba(255, 255, 255, 0.22), transparent 45%),
    radial-gradient(circle at 0% 130%, rgba(255, 204, 51, 0.25), transparent 40%);
  pointer-events: none;
}
.zoho-trial-bar__copy {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.0625rem, 2vw, 1.4rem);
  line-height: 1.4;
  color: var(--brand-white);
  margin: 0;
  flex: 1;
  min-width: min(100%, 260px);
  padding-left: 3.75rem;
}
.zoho-trial-bar__copy strong {
  color: var(--brand-yellow);
  font-weight: 800;
}
.zoho-trial-bar__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  background: var(--brand-white);
  color: var(--brand-red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  box-shadow: 0 8px 20px -8px rgba(15, 15, 15, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.zoho-trial-bar__stamp {
  position: absolute;
  top: -1.75rem;
  left: -1.75rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-16deg);
  box-shadow: 0 6px 16px rgba(15, 15, 15, 0.28);
  animation: zoho-stamp-pulse 2.4s ease-in-out infinite;
}
.zoho-trial-bar__stamp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 204, 51, 0.6);
  animation: zoho-stamp-ring 2.4s ease-out infinite;
}
@keyframes zoho-stamp-pulse {
  0%, 100% { transform: rotate(-16deg) scale(1); }
  50% { transform: rotate(-16deg) scale(1.08); }
}
@keyframes zoho-stamp-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 204, 51, 0.55); }
  70%, 100% { box-shadow: 0 0 0 14px rgba(255, 204, 51, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .zoho-trial-bar__stamp,
  .zoho-trial-bar__stamp::after {
    animation: none;
  }
}
.zoho-trial-bar__stamp span {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 2px dashed rgba(240, 42, 52, 0.65);
}
.zoho-trial-bar__btn-label {
  white-space: nowrap;
}
.zoho-trial-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(15, 15, 15, 0.45);
}
.zoho-trial-bar__btn-logo {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .zoho-trial-bar__card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 1rem;
  }
  .zoho-trial-bar__copy {
    padding-left: 0;
    padding-top: 0;
  }
  .zoho-trial-bar__stamp {
    position: relative;
    top: auto;
    left: auto;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto;
    transform: rotate(-16deg);
    animation: zoho-stamp-pulse-mobile 2.4s ease-in-out infinite;
  }
  .zoho-trial-bar__stamp span {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 0.7rem;
  }
  @keyframes zoho-stamp-pulse-mobile {
    0%, 100% { transform: rotate(-16deg) scale(1); }
    50% { transform: rotate(-16deg) scale(1.08); }
  }
  .zoho-trial-bar__btn {
    justify-content: center;
    width: 100%;
  }
}

/* ===== Problem / Relief ===== */
.problem {
  background: var(--warm-tint);
}

.problem-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 880px) { .problem-intro { grid-template-columns: 1fr; } }

.problem-intro .illo {
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: var(--brand-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.problem-card .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: var(--brand-gradient);
  color: var(--brand-white);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.problem-card h3 { margin-bottom: 0.5rem; }
.problem-card .pain { color: var(--gray-700); margin: 0; font-size: 0.9375rem; }
.problem-card .relief {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--gray-300);
  color: var(--gray-700);
  font-size: 0.9375rem;
}
.problem-card .relief strong { color: var(--brand-red); display: block; font-family: var(--font-display); margin-bottom: 0.25rem; }

/* ===== What we do (3-col) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.service-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--brand-red);
}
.service-card h3 { margin-top: 0.75rem; }
.service-card ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
}
.service-card ul li { margin-bottom: 0.4rem; }
.service-card .card-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-red);
  font-size: 0.9375rem;
}

/* ===== Four Paths ===== */
.paths {
  background: var(--brand-black);
  color: var(--brand-white);
}
.paths .eyebrow { color: var(--brand-yellow); }
.paths h2 { color: var(--brand-white); }
.paths .section-header p { color: rgba(255,255,255,0.75); }

.paths-illo {
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .paths-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .paths-grid { grid-template-columns: 1fr; } }

.path-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  border: 1px solid #262626;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.path-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
}
.path-card.featured {
  background: linear-gradient(180deg, rgba(240,42,52,0.12) 0%, rgba(248,148,33,0.06) 100%);
  border-color: var(--brand-orange);
}
.path-stage {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--brand-yellow);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.path-card h3 { color: var(--brand-white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.path-card .msg { color: rgba(255,255,255,0.7); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.path-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 0.25rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.path-card .users {
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}
.path-card ul {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}
.path-card ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 0.5rem;
}
.path-card ul li::before { content: '→'; color: var(--brand-orange); flex-shrink: 0; }

/* ===== BreakTruVerify Banner ===== */
.btv-banner {
  background: var(--brand-gradient);
  color: var(--brand-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.btv-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 820px) { .btv-grid { grid-template-columns: 1fr; } }

.btv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.2);
  color: var(--brand-white);
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.btv-banner h2 { color: var(--brand-white); }
.btv-banner p { color: rgba(255,255,255,0.95); font-size: 1.0625rem; max-width: 56ch; }
.btv-banner .btn-secondary {
  background: var(--brand-white);
  color: var(--brand-red);
  border-color: var(--brand-white);
}
.btv-banner .btn-secondary:hover {
  background: var(--brand-black);
  color: var(--brand-white);
  border-color: var(--brand-black);
}

.btv-visual {
  position: relative;
  max-width: 440px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ===== Differentiators ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.diff-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.diff-card .diff-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.diff-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.diff-card p { font-size: 0.9375rem; color: var(--gray-600); margin: 0; }

/* ===== Testimonials ===== */
.testimonials {
  background: var(--warm-tint);
  border-top: 1px solid var(--gray-200);
}
.testimonial-showcase {
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-more {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.testimonial-more a {
  color: var(--brand-red);
  text-decoration: underline;
}

.testimonial {
  background: var(--brand-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--gray-900);
}
.testimonial blockquote::before {
  content: '"';
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 0.4;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.testimonial .who {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.testimonial .who strong { display: block; font-family: var(--font-display); font-weight: 600; }
.testimonial .who span { font-size: 0.875rem; color: var(--gray-600); }

.placeholder-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-style: italic;
}

/* ===== Final CTA ===== */
.cta-final {
  background: var(--brand-gradient);
  color: var(--brand-white);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}
.cta-final h2 { color: var(--brand-white); }
.cta-final p { color: rgba(255,255,255,0.95); font-size: 1.125rem; max-width: 56ch; margin: 0 auto 2rem; }
.cta-final .btn-secondary {
  background: var(--brand-white);
  color: var(--brand-red);
  border-color: var(--brand-white);
}
.cta-final .btn-secondary:hover {
  background: var(--brand-black);
  color: var(--brand-white);
  border-color: var(--brand-black);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--brand-black);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--brand-orange); }

.footer-brand .brand-wordmark {
  background: none;
  -webkit-text-fill-color: var(--brand-white);
  color: var(--brand-white);
}
.footer-brand .brand-wordmark.gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}

.footer-social {
  display: flex; gap: 0.75rem; margin-top: 1rem;
}
.footer-social a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
}
.footer-social a:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--brand-white);
  display: grid;
  place-items: center;
  border: 0;
  box-shadow: 0 8px 24px -8px rgba(240,42,52,0.5);
  z-index: 40;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 14px 32px -8px rgba(240,42,52,0.6); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== Pricing Tables (Services page) ===== */
.pricing-table-wrap {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin: 2rem 0;
}

.pricing-table-wrap:has(+ .pricing-footnote) {
  margin-bottom: 0;
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
}
.pricing-table thead th {
  background: var(--brand-black);
  color: var(--brand-white);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
}
.pricing-table tbody td {
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--gray-200);
  vertical-align: top;
}
.pricing-table tbody tr:hover { background: var(--warm-tint); }
.pricing-table .package-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
}
.pricing-table .price-cell {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  font-size: 1.0625rem;
}
@media (max-width: 720px) {
  .pricing-table thead { display: none; }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td { display: block; width: 100%; }
  .pricing-table tr { border-top: 1px solid var(--gray-200); padding: 0.75rem 0; }
  .pricing-table tr:first-child { border-top: 0; }
  .pricing-table td { border-top: 0; padding: 0.4rem 1.25rem; }
  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
  }
}

.custom-work-card {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--warm-tint);
  border: 1px solid var(--gray-200);
  border-left: 6px solid var(--brand-red);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 680px) {
  .custom-work-card { grid-template-columns: 1fr; }
}
.custom-work-card h3 { margin-top: 0; }
.custom-work-card .price-large {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

/* ===== Page Hero (interior pages) ===== */
.page-hero {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2rem, 4vw, 4rem);
  background: var(--warm-tint);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero .container { max-width: 880px; }
.page-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.05; }
.page-hero .lead { margin-top: 1.25rem; max-width: 60ch; }

/* ===== About page ===== */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 820px) { .founder-block { grid-template-columns: 1fr; } }

.founder-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 420px;
  box-shadow: var(--shadow-card);
}

.pull-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin: 3rem auto;
  padding: 2rem 0;
  border-top: 2px solid var(--brand-red);
  border-bottom: 2px solid var(--brand-red);
  text-align: center;
  max-width: 880px;
  position: relative;
}
.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 820px) { .principles-grid { grid-template-columns: 1fr; } }

.principle {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
}
.principle .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* ===== Products page ===== */
.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 880px) { .product-hero { grid-template-columns: 1fr; } }

.product-hero .visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.feature .icon-wrap {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: var(--brand-gradient-soft);
  margin-bottom: 1.25rem;
}
.feature .icon-wrap svg { width: 24px; height: 24px; color: var(--brand-red); }
.feature h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.9375rem; color: var(--gray-700); margin: 0; }

.zoho-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.zoho-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--brand-yellow);
  border-radius: 50%;
}

/* ===== Resources page ===== */
.featured-resource {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0 4rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 820px) { .featured-resource { grid-template-columns: 1fr; } }

.featured-resource::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 240px;
  background: var(--brand-gradient);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
  transform: translate(50%, -50%);
}

.featured-resource .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--brand-yellow);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.featured-resource h2 { color: var(--brand-white); margin-bottom: 1rem; }
.featured-resource p { color: rgba(255,255,255,0.85); }
.featured-resource .btn-primary {
  background: var(--brand-white);
  color: var(--brand-red);
}
.featured-resource .btn-primary:hover { background: var(--brand-yellow); color: var(--brand-black); }

.featured-resource .doc-mock {
  background: var(--brand-gradient);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  max-width: 240px;
  margin-left: auto;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px -16px rgba(240,42,52,0.5);
}
.featured-resource .doc-mock svg { width: 64px; height: 64px; color: rgba(255,255,255,0.95); }

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 820px) { .resource-grid { grid-template-columns: 1fr; } }

.resource-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.resource-card .thumb {
  aspect-ratio: 16/10;
  background: var(--brand-gradient-soft);
  display: grid;
  place-items: center;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}
.resource-card .thumb::after {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 4px;
  background: var(--brand-gradient);
}
.resource-card .thumb svg { width: 56px; height: 56px; color: var(--brand-red); opacity: 0.85; }
.resource-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.resource-card .category {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.resource-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.resource-card p { font-size: 0.9375rem; color: var(--gray-700); margin: 0 0 1rem; }
.resource-card .read-more {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-red);
  font-size: 0.9375rem;
  display: inline-flex;
  gap: 0.4rem;
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}
.contact-grid > * { min-width: 0; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-form {
  background: var(--brand-white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
}

.form-row { display: grid; gap: 1rem; }
.form-row > * { min-width: 0; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row.two { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--brand-white);
  color: var(--gray-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(240,42,52,0.15);
}
.field textarea { resize: vertical; min-height: 140px; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--warm-tint);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--brand-red);
}
.contact-card h4 { margin-bottom: 0.4rem; font-family: var(--font-display); font-weight: 600; font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-600); }
.contact-card a {
  color: var(--brand-red);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card a:hover { text-decoration: underline; }
.contact-card p { margin: 0; color: var(--gray-700); font-size: 0.9375rem; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   REVISION v2 ADDITIONS
   ============================================================ */

/* ===== Zoho Authorized Partner Badge ===== */
.zoho-partner-badge {
  display: inline-block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.zoho-partner-badge:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.zoho-partner-badge img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
}

.zoho-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: var(--brand-white);
  border: 1.5px solid #E42527;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-display);
  line-height: 1.1;
  box-shadow: var(--shadow-chip);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.zoho-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -4px rgba(228,37,39,0.3);
}
.zoho-badge__brand {
  font-weight: 700;
  font-size: 0.95rem;
  color: #E42527;
  letter-spacing: -0.01em;
}
.zoho-badge__label {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
/* On dark surfaces (footer), keep contrast */
.site-footer .zoho-badge {
  background: var(--brand-white);
}

/* legacy .zoho-badge usage on products page (built for zoho chip) */
.product-hero .zoho-badge {
  background: var(--brand-white);
  border: 1px solid var(--gray-200);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: none;
}

/* ===== Footer v2: 4-col + legal band ===== */
.footer-grid.v2 {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
@media (max-width: 980px) {
  .footer-grid.v2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid.v2 { grid-template-columns: 1fr; }
}
.footer-grid.v2 a,
.footer-grid.v2 li,
.footer-grid.v2 p {
  color: rgba(255,255,255,0.82);
}
.footer-grid.v2 .brand-wordmark { color: var(--brand-white); }
.footer-brand .tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin: 0.5rem 0 0.75rem;
  letter-spacing: 0.01em;
}
.footer-brand .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.875rem;
}
.footer-brand .footer-contact a {
  color: rgba(255,255,255,0.82);
  transition: color 0.2s ease;
}
.footer-brand .footer-contact a:hover {
  color: var(--brand-orange);
}
.footer-brand .footer-contact li:last-child {
  color: rgba(255,255,255,0.7);
}
.footer-brand .brand-mark--white {
  height: 56px;
  max-width: 420px;
}
.footer-brand .footer-badge-row {
  margin: 0 0 1rem;
}

.footer-legal-band {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.78); /* WCAG AA on black */
  line-height: 1.55;
}
.footer-legal-band .entity {
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.footer-bottom.v2 {
  color: rgba(255,255,255,0.78); /* fix contrast */
}
.footer-bottom.v2 a { color: rgba(255,255,255,0.85); }

/* ===== Pricing card contrast fix ===== */
.path-card .msg { color: #D6D6D6; }
.path-card .users { color: #C8C8C8; }
.path-card ul { color: #E4E4E4; }
.path-card ul li { border-bottom-color: rgba(255,255,255,0.12); }

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.25), 0 8px 18px -10px rgba(0,0,0,0.18);
  padding: 1.25rem 1.5rem;
  z-index: 90;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1), opacity 0.3s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: var(--gray-900);
}
.cookie-banner p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin: 0 0 0.85rem;
  line-height: 1.5;
}
.cookie-banner p a { color: var(--brand-red); text-decoration: underline; }
.cookie-banner .actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-banner .actions button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.cookie-banner .actions .btn-accept {
  background: var(--brand-red);
  color: var(--brand-white);
  border-color: var(--brand-red);
}
.cookie-banner .actions .btn-accept:hover { background: #d8252e; border-color: #d8252e; }
.cookie-banner .actions .btn-reject {
  background: var(--brand-white);
  color: var(--gray-900);
  border-color: var(--gray-300);
}
.cookie-banner .actions .btn-reject:hover { border-color: var(--gray-900); }
.cookie-banner .actions .btn-manage {
  background: transparent;
  color: var(--gray-700);
  text-decoration: underline;
  border: 0;
  padding: 0.55rem 0.5rem;
}
.cookie-prefs {
  margin: 0.85rem 0;
  padding: 0.85rem;
  background: var(--warm-tint);
  border-radius: var(--radius);
  display: grid;
  gap: 0.55rem;
}
.cookie-prefs .pref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.cookie-prefs .pref-row .label { color: var(--gray-900); font-weight: 600; }
.cookie-prefs .pref-row .desc { font-size: 0.75rem; color: var(--gray-600); display: block; font-weight: 400; }
.cookie-prefs input[type="checkbox"] {
  width: 36px; height: 20px;
  appearance: none;
  background: var(--gray-300);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cookie-prefs input[type="checkbox"]:checked { background: var(--brand-red); }
.cookie-prefs input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.cookie-prefs input[type="checkbox"]:checked::after { transform: translateX(16px); }
.cookie-prefs input[type="checkbox"][disabled] {
  background: var(--brand-red);
  opacity: 0.55;
  cursor: not-allowed;
}

/* ===== Consultation Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-backdrop.is-open { display: flex; opacity: 1; }
.modal-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22,0.61,0.36,1);
}
.modal-backdrop.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.modal-card .modal-sub {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--brand-white);
  border: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.2s ease;
}
.modal-close:hover { background: #d8252e; }
.modal-close svg { width: 18px; height: 18px; }
.modal-iframe-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
}
.modal-attribution {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin: 0.5rem 0 0;
}
body.modal-open { overflow: hidden; }

/* ===== AI Notetaker Disclosure callout ===== */
.notice-callout {
  background: #FFF8E0;
  border: 1px solid #F2D26B;
  border-left: 4px solid var(--brand-yellow);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--gray-900);
  line-height: 1.55;
  margin: 0 0 1rem;
}
.notice-callout strong { font-weight: 700; }

.notice-info {
  background: #F0F6FF;
  border: 1px solid #C9DCF7;
  border-left: 4px solid #2D7AE6;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--gray-900);
  line-height: 1.55;
  margin: 1rem 0;
}

/* ===== Zoho Certifications strip ===== */
.cert-strip {
  border-top: 1px solid var(--gray-200);
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--brand-white);
  overflow: hidden;
}
.cert-strip__partner {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}
.cert-strip__logo {
  height: 96px;
  width: auto;
  max-width: min(360px, 90vw);
  display: inline-block;
  margin-bottom: 2rem;
}
.cert-strip__certs {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--gray-200);
}
.cert-strip .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-700);
  display: block;
  margin: 0 0 1.25rem;
  text-align: center;
}
.cert-strip .cert-badge-item__frame {
  height: 168px;
  width: 168px;
}
.cert-strip .cert-badge-item img {
  height: 168px;
  width: auto;
}
.cert-strip .cert-badge-item--logo img {
  width: 100%;
  height: 100%;
  padding: 2.75rem 1.75rem;
}
.cert-strip .cert-badge-item--creator img {
  height: 175px;
  width: auto;
  max-width: 175px;
}
.cert-strip .cert-badge-label {
  font-size: 0.8125rem;
}
.cert-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.cert-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0;
  cursor: grab;
  touch-action: pan-x;
}

.cert-carousel__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.cert-carousel__viewport.is-dragging img {
  pointer-events: none;
}

.cert-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.cert-carousel__viewport:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.cert-badges {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1.5rem;
  width: max-content;
  padding: 0 0.25rem;
}

.cert-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cert-badge-item__frame {
  height: 288px;
  width: 288px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-badge-item img {
  display: block;
  height: 288px;
  width: auto;
  max-width: 288px;
  object-fit: contain;
}

.cert-badge-item--logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  padding: 5rem 3rem;
  box-sizing: border-box;
}

.cert-badge-item--creator img {
  height: 300px;
  width: auto;
  max-width: 300px;
}

.cert-badge-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--gray-700);
  text-align: center;
}

.cert-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--brand-white);
  color: var(--gray-900);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-chip);
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.cert-carousel__arrow svg {
  width: 20px;
  height: 20px;
}

.cert-carousel__arrow:hover:not(:disabled) {
  border-color: var(--brand-orange);
  background: var(--brand-white);
}

.cert-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .cert-carousel {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cert-carousel__arrow {
    display: none;
  }

  .cert-carousel__viewport {
    scroll-padding-inline: 1rem;
  }

  .cert-badge-item__frame {
    height: 220px;
    width: 220px;
  }

  .cert-badge-item img {
    height: 220px;
    max-width: 220px;
  }

  .cert-badge-item--logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 3.5rem 2rem;
  }

  .cert-badge-item--creator img {
    height: 230px;
    max-width: 230px;
  }

  .cert-strip .cert-badge-item__frame {
    height: 140px;
    width: 140px;
  }

  .cert-strip .cert-badge-item img {
    height: 140px;
    max-width: 140px;
  }

  .cert-strip .cert-badge-item--logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 2.25rem 1.25rem;
  }

  .cert-strip .cert-badge-item--creator img {
    height: 146px;
    max-width: 146px;
  }
}

/* ===== Top 5 apps cards ===== */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin: 2rem 0 1rem;
}
.app-card {
  background: var(--brand-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.app-card .app-logo {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 0.85rem;
}
.app-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: var(--gray-900);
}
.app-card p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ===== Try Zoho free CTA block ===== */
.try-zoho {
  background: linear-gradient(135deg, rgba(240,42,52,0.05), rgba(248,148,33,0.05));
  border: 1px solid rgba(240,42,52,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.try-zoho--partner {
  background: var(--brand-gradient-soft);
  border: 1px solid rgba(240,42,52,0.1);
  box-shadow: var(--shadow-card);
  margin: 0;
  padding: 2rem 2.25rem 2.25rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.try-zoho--partner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0;
  color: var(--gray-900);
  line-height: 1.3;
}
.try-zoho--partner p {
  font-size: 1rem;
  color: var(--gray-700);
  margin: 0;
  max-width: 38ch;
  line-height: 1.6;
}
.try-zoho--partner .btn {
  margin-top: 0.5rem;
}
.try-zoho .copy h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}
.try-zoho .copy p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
  max-width: 56ch;
}

/* ===== BTV legal links block ===== */
.btv-legal-block {
  background: var(--warm-tint);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 3rem 0 0;
  border: 1px solid var(--gray-200);
}
.btv-legal-block h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin: 0 0 0.85rem;
}
.btv-legal-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.btv-legal-block li { margin: 0; }
.btv-legal-block a {
  color: var(--gray-900);
  font-size: 0.875rem;
  border-bottom: 1px dotted var(--gray-400);
  padding-bottom: 1px;
}
.btv-legal-block a:hover { color: var(--brand-red); border-bottom-color: var(--brand-red); }

/* ===== Partner Program card (expanded) ===== */
.partner-program-card {
  background: var(--brand-gradient);
  color: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 680px) {
  .partner-program-card { grid-template-columns: 1fr; }
}
.partner-program-card h3 { color: var(--brand-white); margin: 0 0 0.5rem; font-size: 1.5rem; }
.partner-program-card p { color: rgba(255,255,255,0.92); margin: 0; max-width: 56ch; }
.partner-program-card .btn {
  background: var(--brand-white);
  color: var(--brand-red);
  border-color: var(--brand-white);
}
.partner-program-card .btn:hover {
  background: var(--brand-black);
  color: var(--brand-white);
  border-color: var(--brand-black);
}

/* ===== Pricing footnote ===== */
.pricing-footnote {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin: 0.75rem 0 0;
  padding-left: 0.25rem;
  line-height: 1.55;
  font-style: italic;
}

.pricing-table-wrap + .pricing-footnote {
  margin-top: 0.75rem;
}

/* ===== California / legal notes ===== */
.legal-subnote {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin: 0.75rem 0 0;
  line-height: 1.55;
}

/* ===== Consultation page ===== */
.consultation-form-section {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 6vw, 6rem);
  background: var(--brand-white);
}

.consultation-form-layout {
  max-width: 960px;
}

.consultation-form-embed {
  margin-top: 1.25rem;
}

.consultation-form-embed iframe {
  width: 100%;
  height: 500px;
  min-height: 0;
  border: 0;
  display: block;
  transition: height 0.25s ease;
  overflow: hidden;
}

.form-attribution {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin: 0.75rem 0 0;
}

/* ===== Zoho form embed wrapper ===== */
.zoho-form-embed {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}
.zoho-form-embed iframe {
  display: block;
  border-radius: var(--radius);
}

/* ===== Referral & AUP page styles ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.step-card {
  background: var(--brand-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.step-card .step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}
.step-card p { color: var(--gray-700); margin: 0; font-size: 0.9375rem; }

.policy-bullets {
  background: var(--warm-tint);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  border: 1px solid var(--gray-200);
}
.policy-bullets ul {
  margin: 0; padding-left: 1.25rem;
}
.policy-bullets li {
  margin-bottom: 0.6rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.policy-bullets li strong { color: var(--gray-900); }

/* ===== Legal document pages ===== */
.legal-document {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--gray-700);
  line-height: 1.65;
  font-size: 0.9375rem;
}
.legal-document > * + * {
  margin-top: 1rem;
}
.legal-document h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.legal-document h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--gray-900);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-document ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}
.legal-document ol {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}
.legal-document li {
  margin-bottom: 0.5rem;
}
.legal-document a {
  color: var(--brand-red);
  text-decoration: underline;
}
.legal-document a:hover {
  color: var(--brand-orange);
}
.legal-document .legal-caps {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.legal-document .legal-address {
  font-style: normal;
  margin: 1rem 0;
  line-height: 1.7;
}
.legal-document .legal-toc {
  background: var(--warm-tint);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0 2rem;
}
.legal-document .legal-toc h2 {
  margin-top: 0;
  font-size: 1.0625rem;
}
.legal-document .legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  columns: 1;
}
@media (min-width: 720px) {
  .legal-document .legal-toc ol { columns: 2; column-gap: 2rem; }
}
.legal-document .legal-toc li {
  margin-bottom: 0.35rem;
  break-inside: avoid;
}
.legal-document .legal-part-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}
.legal-document .legal-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.legal-table-wrap {
  margin: 1rem 0 1.25rem;
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 280px;
}
.legal-table th,
.legal-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  text-align: left;
}
.legal-table th {
  background: var(--warm-tint);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-900);
}
.legal-table tr:last-child td,
.legal-table tr:last-child th {
  border-bottom: 0;
}
.legal-document .legal-disclaimer {
  font-size: 0.8125rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}
.legal-document .legal-attorney-notes {
  background: var(--warm-tint);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem 1rem 2.5rem;
  font-size: 0.875rem;
}
