:root {
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --primary: #f97316; /* orange (60%) */
  --primary-soft: #fff7ed;
  --primary-deep: #ea580c;
  --accent: #16a34a; /* green */
  --accent-soft: #dcfce7;
  --bg: #f9fafb;
  --card-bg: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --radius-lg: 18px;
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, #fff7ed, transparent 55%),
    radial-gradient(circle at bottom right, #dcfce7, transparent 55%),
    #f9fafb;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 12px 18px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero (shared site nav: partials.marketing_site_header) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1.3rem;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-outline {
  border-color: rgba(148, 163, 184, 0.4);
  background: #ffffff;
  color: #111827;
}
.btn-outline:hover {
  border-color: rgba(248, 150, 30, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  box-shadow: 0 18px 40px rgba(248, 150, 30, 0.75);
}
.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(248, 150, 30, 0.95);
  transform: translateY(-1px);
}
/* Hero â€“ entrance and dynamic */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateX(32px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 4px rgba(248, 171, 60, 0.4); }
  50% { opacity: 0.9; box-shadow: 0 0 0 6px rgba(248, 171, 60, 0.25); }
}

@keyframes heroHighlightShine {
  0% { background-position: 120% 50%; }
  100% { background-position: -20% 50%; }
}

.hero {
  padding: 3.5rem 0 3.2rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(248, 113, 22, 0.2);
  border: 1px solid rgba(248, 171, 60, 0.8);
  color: #c2410c;
  font-size: 0.75rem;
  font-weight: 600;
  animation: heroFadeUp 0.6s ease both;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #facc15, #f97316);
  box-shadow: 0 0 0 4px rgba(248, 171, 60, 0.4);
  animation: heroDotPulse 2.2s ease-in-out infinite;
}

.hero-title {
  margin-top: 1.1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw + 1.7rem, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #111827;
  animation: heroFadeUp 0.65s ease 0.08s both;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #f97316 0%, #16a34a 50%, #f97316 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 0.98rem;
  max-width: 35rem;
  color: var(--muted);
  animation: heroFadeUp 0.6s ease 0.16s both;
}

.hero-subtitle strong {
  color: #111827;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  animation: heroFadeUp 0.6s ease 0.24s both;
}

.hero-actions .btn-primary {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 48px rgba(248, 150, 30, 0.5);
}

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  animation: heroFadeUp 0.5s ease 0.32s both;
}

.hero-note-pill {
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-note-pill:hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.hero-meta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.9rem;
  font-size: 0.8rem;
  color: #4b5563;
  animation: heroFadeUp 0.55s ease 0.4s both;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transition: transform 0.2s ease;
}

.hero-meta-item:hover {
  transform: translateY(-2px);
}

.hero-meta-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f97316;
  transition: color 0.2s ease;
}

.hero-meta-item:hover .hero-meta-number {
  color: #ea580c;
}

/* Hero card */
.hero-card {
  position: relative;
  border-radius: 26px;
  padding: 1.4rem 1.3rem 1.35rem;
  background:
    radial-gradient(circle at top left, #fff7ed, transparent 70%),
    radial-gradient(circle at bottom right, #dcfce7, transparent 70%),
    #ffffff;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  animation: heroCardIn 0.75s ease 0.15s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 115, 22, 0.2);
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}

.hero-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero-visual-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.72rem;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  font-weight: 600;
}

.hero-visual-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1rem 0.9rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 100%);
  color: #fff;
}

.hero-visual-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.hero-visual-sub {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.hero-card-chip {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
  font-weight: 600;
  border: 1px solid #bbf7d0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card-chip:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.15rem;
}

.metric-tile {
  border-radius: 16px;
  padding: 0.7rem 0.8rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.metric-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: rgba(249, 115, 22, 0.35);
}

.metric-label {
  font-size: 0.7rem;
  color: #6b7280;
}

.metric-value {
  margin-top: 0.18rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.metric-pill {
  font-size: 0.68rem;
  margin-top: 0.22rem;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-mini-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
}

.mini-card {
  flex: 1;
  border-radius: 15px;
  padding: 0.6rem 0.7rem;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 0.78rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.mini-card:nth-child(2) {
  background: #dcfce7;
}

.mini-card strong {
  font-size: 0.9rem;
}

.hero-tagline {
  font-size: 0.74rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.hero-tagline span.badge {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #ffedd5;
  color: #c2410c;
  font-weight: 600;
  font-size: 0.7rem;
}

/* Sections */
.section-heading {
  text-align: center;
  margin-bottom: 2.2rem;
  position: relative;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ea580c;
  font-weight: 700;
  margin-bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.14);
}

.section-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #facc15, #f97316);
  box-shadow: 0 0 0 4px rgba(248, 171, 60, 0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 2.2vw + 1.1rem, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: #0f172a;
  line-height: 1.08;
}

.section-title .title-accent {
  background: linear-gradient(120deg, #f97316 0%, #facc15 30%, #16a34a 70%, #f97316 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  margin: 0.7rem auto 0;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 44rem;
  color: #334155;
}

.section-subtitle strong {
  color: #0f172a;
  font-weight: 700;
}

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem 1.35rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  cursor: default;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -40%;
  height: 60%;
  background:
    radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(22, 163, 74, 0.12), transparent 55%);
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 150, 30, 0.7);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.feature-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 0 0, #ffffff, transparent 55%),
    linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(248, 150, 30, 0.6);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.feature-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a8550a;
  font-weight: 600;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-image {
  margin: 0.9rem 0 0.7rem;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), transparent 45%),
    radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.16), transparent 48%),
    linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-image img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.28s ease;
}

.feature-card:hover .feature-image {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 30px rgba(15, 23, 42, 0.12);
}

.feature-card:hover .feature-image img {
  transform: scale(1.03);
}

.feature-tags {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.feature-tag {
  font-size: 0.72rem;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
  color: #4b5563;
}

@keyframes featurePulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

.feature-card:nth-child(1):hover .feature-icon,
.feature-card:nth-child(2):hover .feature-icon,
.feature-card:nth-child(3):hover .feature-icon {
  animation: featurePulse 0.6s ease-in-out;
}

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

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.usecase-wrapper {
  position: relative;
  background:
    radial-gradient(circle at top left, #fef3c7, transparent 70%),
    radial-gradient(circle at bottom right, #dcfce7, transparent 70%),
    #ffffff;
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(248, 150, 30, 0.35);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  overflow: hidden;
}

.usecase-wrapper::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 40%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 0, rgba(249, 115, 22, 0.35), transparent 60%),
    radial-gradient(circle at 70% 100%, rgba(22, 163, 74, 0.35), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

.usecase-title {
  font-family: var(--font-heading);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.usecase-sub {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.usecase-badge-row {
  position: relative;
  z-index: 1;
}

.usecase-list {
  position: relative;
  z-index: 1;
}

.seo-grid {
  color: var(--muted);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.6rem;
}

.seo-panel {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 1.3rem 1.2rem 1.2rem;
}

.seo-grid h3 {
  color: #111827;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.seo-list li::marker {
  color: #f97316;
}

.price-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  color: #111827;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #facc15, #16a34a);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 150, 30, 0.7);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.price-badge {
  background: #fff7ed;
  color: #c2410c;
  border-radius: 999px;
}

.price-name {
  color: #111827;
}

.price-value {
  color: #f97316;
}

.faq-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.faq-item {
  position: relative;
  background:
    radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.9), transparent 70%),
    #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding-left: 0;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, #f97316, #16a34a);
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, rgba(248, 150, 30, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 150, 30, 0.7);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

.faq-item:hover::after {
  opacity: 1;
}

.faq-toggle {
  position: absolute;
  right: 1.3rem;
  top: 1.3rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #4b5563;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.45);
  pointer-events: none;
}

.faq-item.is-open .faq-toggle {
  background: rgba(249, 115, 22, 0.08);
  color: #ea580c;
  box-shadow: inset 0 0 0 1px rgba(248, 150, 30, 0.7);
}

.faq-toggle-icon {
  transition: transform 0.18s ease;
}

.faq-item.is-open .faq-toggle-icon {
  transform: rotate(90deg);
}

.faq-a {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.faq-item.is-open .faq-a {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.faq-q {
  font-family: var(--font-heading);
  padding: 1.1rem 3.2rem 1.1rem 1.35rem;
  font-weight: 600;
  color: #0f172a;
}

.faq-a {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;
  padding: 0 1.35rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.95rem;
  transition: max-height 0.26s ease, opacity 0.22s ease, transform 0.22s ease,
    padding-top 0.22s ease, padding-bottom 0.22s ease;
}

.faq-item.is-open .faq-a {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 0.1rem;
  padding-bottom: 1.1rem;
}

/* CTA section */
.cta {
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.cta-box::before {
  display: none;
}

.cta-box:hover {
  box-shadow: none;
  transform: none;
}

.cta-content {
  padding: 2.5rem 0 2.5rem 0.5rem;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #15803d;
  background: #dcfce7;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-heading);
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 2.4vw + 1rem, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.cta-sub {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  max-width: 44ch;
}

.cta-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.45;
}

.cta-benefit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #16a34a;
  margin-top: 0.1rem;
}

.cta-panel {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 20px 50px rgba(15, 23, 42, 0.1);
  padding: 1.75rem 1.65rem 1.5rem;
}

.cta-panel-head {
  margin-bottom: 1.25rem;
}

.cta-panel-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.cta-panel-sub {
  margin: 0;
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.5;
}

.cta-form .ub-lead-form__field {
  margin-bottom: 0.85rem;
}

.cta-form .ub-lead-form__field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.3rem;
}

.cta-optional {
  font-weight: 400;
  color: #94a3b8;
}

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

.cta-form .ub-lead-form__field input,
.cta-form .ub-lead-form__field select,
.cta-form .ub-lead-form__field textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.62rem 0.75rem;
  font-size: 0.9rem;
  background: #f8fafc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cta-form .ub-lead-form__field input:focus,
.cta-form .ub-lead-form__field select:focus,
.cta-form .ub-lead-form__field textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
  background: #fff;
}

.cta-form-submit {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 0.78rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #15803d);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}

.cta-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.cta-panel-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: #94a3b8;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-panel-divider::before,
.cta-panel-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.cta-trial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-trial-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.38);
}

.cta-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.cta-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.cta-meta-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #16a34a;
}

.cta-meta-item a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}

.cta-meta-item a:hover {
  color: #16a34a;
}

.cta-form .ub-lead-form__msg {
  min-height: 1rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
}

.cta-form .ub-lead-form__msg.is-error {
  color: #dc2626;
}

.cta-form .ub-lead-form__msg.is-success {
  color: #15803d;
}

/* Footer */
.footer {
  position: relative;
  background:
    linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
  background-color: #0f172a !important;
  border-top: none;
  padding: 0 !important;
  overflow: hidden;
  display: block !important;
  color: #94a3b8 !important;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #facc15, #16a34a);
}

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

.footer-cta-strip {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-strip p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-cta-strip .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.footer-cta-strip .btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
}

.footer-cta-strip .btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 0.9fr));
  gap: 2.8rem 2.4rem;
  padding: 3rem 0 2.5rem;
  align-items: flex-start;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-brand .brand {
  margin-bottom: 0.75rem;
}

.footer-brand .brand-text-main {
  color: #fff;
}

.footer-brand .brand-text-sub {
  color: #34d399;
  font-size: 0.8rem;
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand p strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}

.footer-nav-title::before {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, #f97316, transparent);
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links .footer-company-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}

.footer-links .footer-company-item .footer-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.85;
}

.footer-links .footer-company-address {
  white-space: normal;
  max-width: 14rem;
}

.footer-company-links {
  max-width: 15rem;
}

.footer-links span,
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #f97316;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 0 1.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.25rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

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

/* Why UdyogBill benefits */
.benefits-section {
  padding: 4rem 0 3.5rem;
  background:
    radial-gradient(circle at top, rgba(248, 250, 252, 0.8), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  border-color: rgba(249, 115, 22, 0.35);
}

.benefit-card .benefit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #ea580c;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
}

/* How it works steps */
.steps-section {
  padding: 3.5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.4), rgba(22, 163, 74, 0.4));
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 1.75rem 1.35rem;
  text-align: center;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.step-card .step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.step-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #4b5563;
}

/* For CAs & businesses */
.ca-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #f8faf8 0%, #f0fdf4 50%, #ffffff 100%);
}

.ca-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.ca-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  padding: 2rem 1.75rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ca-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.ca-card .ca-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.ca-card .ca-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.ca-card.orange .ca-icon {
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
  color: #ea580c;
}

.ca-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.ca-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
}

.ca-card ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4b5563;
}

.ca-card ul li {
  margin-bottom: 0.35rem;
}

/* SEO long-form content â€“ card-based layout */
.seo-long-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.seo-long-section .section-heading {
  margin-bottom: 2rem;
}

.learn-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.learn-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.learn-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f97316, #16a34a);
  border-radius: 20px 0 0 20px;
}

.learn-card:hover {
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  border-color: rgba(249, 115, 22, 0.3);
}

.learn-card.intro {
  background: linear-gradient(145deg, #fffbf7 0%, #ffffff 100%);
  border-color: rgba(249, 115, 22, 0.25);
}

.learn-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
}

.learn-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.65rem;
}

.learn-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 0.75rem;
}

.learn-card p:last-of-type {
  margin-bottom: 0;
}

.learn-card strong {
  color: #0f172a;
}

@media (max-width: 960px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid::before {
    display: none;
  }
  .ca-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Invoice formats â€“ demo snapshots */
.invoice-formats-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #f8faf8 50%, #ffffff 100%);
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.invoice-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.invoice-format-slot {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.invoice-format-slot:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.invoice-format-title {
  font-family: var(--font-heading);
  margin: 0;
  padding: 1rem 1rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}

.invoice-format-placeholder {
  min-height: 220px;
  background: linear-gradient(145deg, #f9fafb 0%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.invoice-format-placeholder::after {
  content: "Add snapshot";
  font-size: 0.8rem;
  color: #9ca3af;
}

.invoice-format-placeholder img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.invoice-format-placeholder:has(img)::after {
  content: none;
}

@media (max-width: 960px) {
  .invoice-formats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .invoice-formats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .invoice-format-placeholder {
    min-height: 180px;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .usecase-wrapper,
  .seo-grid,
  .pricing-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-cta-strip {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand p {
    max-width: none;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-grid {
    gap: 2.2rem;
  }
}

@media (max-width: 768px) {
  .features-grid,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  section {
    padding: 2.5rem 0;
  }

  .cta-box {
    gap: 1.5rem;
  }

  .cta-content {
    padding: 1rem 0 0;
  }

  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .cta-sub {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-note,
  .hero-meta-row,
  .hero-card {
    animation: none;
  }
  .hero-dot {
    animation: none;
  }
}

/* ========== UI v2 — premium marketing enhancements (content unchanged) ========== */
@keyframes ubMeshDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -1.5%) scale(1.03); }
}

body.ub-home-v2 {
  background: #faf8f5;
  scroll-behavior: smooth;
}

body.ub-home-v2 .page {
  position: relative;
  isolation: isolate;
}

body.ub-home-v2 .page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(249, 115, 22, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 10%, rgba(22, 163, 74, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(15, 23, 42, 0.05), transparent 55%),
    #faf8f5;
}

body.ub-home-v2 .page::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.18), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(22, 163, 74, 0.12), transparent 40%);
  animation: ubMeshDrift 18s ease-in-out infinite;
}

.ub-section-spacious {
  padding: clamp(4rem, 6vw, 5.5rem) 0 !important;
}

.ub-section-compact {
  padding: clamp(2.25rem, 3.5vw, 3rem) 0 !important;
}

.ub-band-white {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(226, 232, 240, 0.65);
  border-bottom: 1px solid rgba(226, 232, 240, 0.45);
}

.ub-band-cream {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.55) 0%, rgba(255, 255, 255, 0.35) 100%);
}

body.ub-home-v2 .hero {
  padding-top: clamp(3.5rem, 5vw, 5rem) !important;
  padding-bottom: clamp(3.5rem, 5vw, 5rem) !important;
  position: relative;
}

body.ub-home-v2 .hero-eyebrow {
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.12);
}

body.ub-home-v2 .hero-title {
  font-size: clamp(2.35rem, 3.2vw + 1.5rem, 3.45rem);
  max-width: 14ch;
}

body.ub-home-v2 .hero-subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 38rem;
}

body.ub-home-v2 .hero-actions .btn-primary {
  padding: 0.72rem 1.55rem;
  font-size: 0.95rem;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

body.ub-home-v2 .hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(249, 115, 22, 0.55);
}

body.ub-home-v2 .hero-actions .btn-outline {
  padding: 0.72rem 1.35rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

body.ub-home-v2 .hero-card {
  border-radius: 28px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(249, 115, 22, 0.08);
}

body.ub-home-v2 .hero-visual {
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
}

body.ub-home-v2 .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.08) 0%, transparent 40%, rgba(22, 163, 74, 0.06) 100%);
  pointer-events: none;
}

body.ub-home-v2 .hero-meta-row {
  margin-top: 2.25rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

body.ub-home-v2 .hero-meta-item {
  padding-right: 1rem;
  border-right: 1px solid rgba(226, 232, 240, 0.9);
}

body.ub-home-v2 .hero-meta-item:last-child {
  border-right: 0;
  padding-right: 0;
}

body.ub-home-v2 #features.ub-band-white .features-grid {
  gap: 1.1rem;
}

body.ub-home-v2 .feature-card {
  padding: 1.05rem 1rem 1.1rem;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

body.ub-home-v2 .feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.45);
}

body.ub-home-v2 .feature-icon {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.ub-home-v2 .feature-tags {
  gap: 0.35rem;
}

body.ub-home-v2 .feature-tag {
  padding: 0.18rem 0.5rem;
  font-size: 0.68rem;
}

body.ub-home-v2 .feature-image {
  min-height: 118px;
  border-radius: 14px;
}

body.ub-home-v2 .feature-image img {
  transition: transform 0.35s ease;
}

body.ub-home-v2 .feature-card:hover .feature-image img {
  transform: scale(1.04);
}

body.ub-home-v2 .faq-section .faq-item {
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.ub-home-v2 .faq-section .faq-item:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

body.ub-home-v2 .cta-corp {
  padding: clamp(4rem, 6vw, 5.5rem) 0 !important;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%) !important;
}

body.ub-home-v2 .cta-corp__wrap {
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14) !important;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Scroll reveal */
.ub-reveal,
.ub-reveal-section,
.feature-card,
.faq-item,
.benefit-card,
.step-card,
body.ub-home-v2 .feature-card,
body.ub-home-v2 .faq-item,
body.ub-home-v2 .benefit-card,
body.ub-home-v2 .step-card {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  body.ub-home-v2 .hero-meta-item {
    border-right: 0;
    padding-right: 0;
    flex: 1 1 45%;
  }

  body.ub-home-v2 .hero-meta-row {
    gap: 0.85rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ub-home-v2 .page::after {
    animation: none;
  }

  body.ub-home-v2 {
    scroll-behavior: auto;
  }

  .ub-reveal,
  .ub-reveal-section,
  body.ub-home-v2 .feature-card,
  body.ub-home-v2 .faq-item,
  body.ub-home-v2 .benefit-card,
  body.ub-home-v2 .step-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   ENTERPRISE SAAS POLISH (MyBillBook, Vyapar & Busy Level Refinement)
   ========================================================================== */

/* Container consistency */
.container {
  max-width: 1240px !important;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Title Typography & Contrast */
body.ub-home-v2 .hero-title {
  max-width: 100% !important;
  font-size: clamp(1.75rem, 2.1vw + 0.5rem, 2.45rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  margin-top: 0.35rem !important;
  margin-bottom: 0 !important;
}

body.ub-home-v2 .hero-title span.highlight {
  display: block;
  margin-top: 0.2rem;
  background: linear-gradient(110deg, #ea580c 0%, #d97706 40%, #16a34a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

body.ub-home-v2 .hero-subtitle {
  max-width: 32rem !important;
  font-size: 0.9rem !important;
  line-height: 1.52 !important;
  color: #334155 !important;
  margin-top: 0.45rem !important;
  margin-bottom: 0 !important;
}

/* Hero Interactive Badge / Eyebrow */
body.ub-home-v2 .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  font-weight: 700;
  font-size: 0.74rem;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
}

/* Primary and Outline Buttons */
body.ub-home-v2 .hero-actions .btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 0.58rem 1.4rem !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.3) !important;
  transition: all 0.2s ease !important;
}

body.ub-home-v2 .hero-actions .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.4) !important;
}

body.ub-home-v2 .hero-actions .btn-outline {
  background: #ffffff !important;
  color: #1e293b !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 0.58rem 1.25rem !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

body.ub-home-v2 .hero-actions .btn-outline:hover {
  border-color: #ea580c !important;
  color: #ea580c !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08) !important;
}

/* Hero Card Widget Mockup Enhancement */
body.ub-home-v2 .hero-card {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 18px !important;
  padding: 0.75rem 0.9rem !important;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(249, 115, 22, 0.06) !important;
}

body.ub-home-v2 .hero-visual {
  border-radius: 12px !important;
  overflow: hidden !important;
  position: relative !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1) !important;
  background: #ffffff !important;
}

body.ub-home-v2 .hero-visual img {
  height: 195px !important;
  object-fit: cover !important;
  object-position: center 15% !important;
}

body.ub-home-v2 .metric-tile {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 0.4rem 0.6rem !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
}

body.ub-home-v2 .metric-value {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-top: 0.08rem !important;
}

body.ub-home-v2 .mini-card {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 0.35rem 0.55rem !important;
  color: #1e293b !important;
}

/* Features Grid Enterprise Styling */
body.ub-home-v2 .feature-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 1.4rem !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

body.ub-home-v2 .feature-card:hover {
  transform: translateY(-4px) !important;
  border-color: #ea580c !important;
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.12) !important;
}

body.ub-home-v2 .feature-icon {
  background: linear-gradient(135deg, #fff7ed, #fed7aa) !important;
  color: #ea580c !important;
  border: 1px solid #fdba74 !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15) !important;
}

body.ub-home-v2 .feature-title {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
}

body.ub-home-v2 .feature-desc {
  color: #475569 !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
}

body.ub-home-v2 .feature-tag {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  color: #334155 !important;
  font-weight: 500 !important;
  font-size: 0.72rem !important;
  border-radius: 6px !important;
  padding: 0.2rem 0.55rem !important;
}

/* Steps and Benefits Cards */
body.ub-home-v2 .step-card,
body.ub-home-v2 .benefit-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04) !important;
}

body.ub-home-v2 .step-card:hover,
body.ub-home-v2 .benefit-card:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08) !important;
}

/* Invoice Formats Grid */
body.ub-home-v2 .invoice-format-slot {
  border-radius: 18px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04) !important;
  overflow: hidden !important;
}

body.ub-home-v2 .invoice-format-slot:hover {
  border-color: #ea580c !important;
  box-shadow: 0 16px 36px rgba(234, 88, 12, 0.1) !important;
}

