/* ABIZ premium landing page CSS */
:root {
  --abiz-bg: #f7f9fc;
  --abiz-surface: #ffffff;
  --abiz-surface-soft: #eef4ff;
  --abiz-text: #172033;
  --abiz-text-soft: #344054;
  --abiz-muted: #617086;
  --abiz-subtle: #8a97a8;
  --abiz-line: #dce4ee;
  --abiz-blue: #2563eb;
  --abiz-blue-dark: #1d4ed8;
  --abiz-blue-soft: #eaf1ff;
  --abiz-green: #16a34a;
  --abiz-green-soft: #ddf7ea;
  --abiz-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --abiz-card-shadow: 0 14px 40px rgba(37, 99, 235, 0.08);
  --font: "Inter", "Poppins", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  color: var(--abiz-text);
  background: var(--abiz-bg);
  font: 15px/1.7 var(--font);
  -webkit-font-smoothing: antialiased;
}

body.site-body {
  background: var(--abiz-bg);
}

body.legal-page {
  background: var(--abiz-bg);
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.abiz-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 228, 238, 0.7);
}

.abiz-navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.abiz-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--abiz-text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.abiz-logo img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.abiz-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.abiz-nav-links a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  color: var(--abiz-muted);
}

.abiz-nav-links a:not(.abiz-nav-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--abiz-blue);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.abiz-nav-links a:hover,
.abiz-nav-links a.active {
  color: var(--abiz-blue);
}

.abiz-nav-links a:not(.abiz-nav-button):hover::after,
.abiz-nav-links a.active::after {
  transform: scaleX(1);
}

.abiz-nav-button {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--abiz-blue);
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.14);
}

.abiz-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--abiz-line);
  background: #fff;
  cursor: pointer;
}

.abiz-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--abiz-text);
  margin: 4px auto;
}

.abiz-page {
  padding-bottom: 80px;
}

.abiz-hero {
  display: grid;
  grid-template-columns: minmax(460px, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 40px;
  min-height: 600px;
  padding: 58px 0 44px;
}

.abiz-hero-copy {
  max-width: 620px;
}

.hero-kicker,
.abiz-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--abiz-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker span,
.abiz-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--abiz-blue);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.6);
}

.abiz-hero h1 {
  margin: 18px 0 16px;
  color: var(--abiz-text);
  font-size: clamp(48px, 4vw, 66px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.abiz-subtitle {
  color: var(--abiz-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-proof > div {
  min-width: 130px;
  border-left: 1px solid var(--abiz-line);
  padding-left: 14px;
}

.hero-proof:first-child {
  border-left: none;
}

.proof-number {
  display: block;
  color: var(--abiz-text);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.proof-label {
  display: block;
  color: var(--abiz-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.abiz-dashboard-card {
  background: linear-gradient(180deg, #14213b 0%, #091a2e 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  box-shadow: var(--abiz-shadow);
  padding: 16px;
  color: #fff;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.abiz-dashboard-card::before,
.abiz-dashboard-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.abiz-dashboard-card::before {
  width: 150px;
  height: 150px;
  background: rgba(37, 99, 235, 0.35);
  left: -30px;
  top: -20px;
}

.abiz-dashboard-card::after {
  width: 180px;
  height: 180px;
  background: rgba(37, 99, 235, 0.18);
  right: -60px;
  bottom: -50px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dashboard-brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.dashboard-logo {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--abiz-blue);
  color: #fff;
  font-size: 14px;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c7ddff;
}

.dashboard-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--abiz-green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.13);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 110px minmax(250px, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.dashboard-sidebar {
  padding: 22px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
}

.dash-menu {
  display: block;
  color: #bac7df;
  font-size: 11px;
  padding: 12px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.dash-menu.active {
  background: var(--abiz-blue);
  color: #fff;
}

.dashboard-content {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 18px;
}

.dashboard-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #c7ddff;
}

.dashboard-date {
  color: #a9b8d6;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 22px;
}

.metric-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.metric-label {
  display: block;
  color: #aebce0;
  font-size: 11px;
  text-transform: uppercase;
}

.metric-value {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  font-weight: 800;
}

.metric-change {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
}

.metric-change.positive {
  color: #91f7b7;
}

.dashboard-chart {
  height: 110px;
  margin-top: 16px;
  border-radius: 12px;
  background-image: radial-gradient(#334a74 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chart-line {
  position: relative;
  width: 180px;
  height: 80px;
  border-bottom: 2px solid var(--abiz-blue);
  border-left: 2px solid var(--abiz-blue);
  transform: skewY(-8deg);
}

.chart-bar {
  position: absolute;
  bottom: 0;
  width: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #8fb4ff, #2563eb);
}

.bar-one { left: 10px; height: 30px; }
.bar-two { left: 70px; height: 48px; }
.bar-three { left: 130px; height: 66px; }

.chart-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px var(--abiz-blue);
}

.dot-one { left: 14px; bottom: 26px; }
.dot-two { left: 72px; bottom: 44px; }
.dot-three { left: 134px; bottom: 62px; }

.dashboard-list {
  margin-top: 16px;
}

.list-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #c7ddff;
}

.list-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.list-icon.green { background: var(--abiz-green); }
.list-icon.blue { background: var(--abiz-blue); }

.list-text { flex: 1; font-size: 11px; }
.list-number { font-weight: 800; font-size: 12px; color: #fff; }

.feature-section,
.workflow-section,
.pricing-section,
.stats-section,
.faq-section,
.about-abiz-section,
.contact-strip {
  padding: 74px 0 30px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.centered,
.section-title.centered {
  text-align: center;
}

.section-heading.centered .abiz-kicker,
.section-title.centered .abiz-kicker {
  justify-content: center;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(36px, 3vw, 46px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--abiz-text);
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--abiz-blue);
  border-radius: 3px;
  margin: 14px auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 190px;
  padding: 26px 24px;
  border: 1px solid var(--abiz-line);
  border-radius: 18px;
  background: var(--abiz-surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #b8cdfb;
  box-shadow: var(--abiz-card-shadow);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid #ccdcfb;
  border-radius: 12px;
  color: var(--abiz-blue);
  background: var(--abiz-blue-soft);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--abiz-text);
  font-size: 17px;
  line-height: 1.38;
  letter-spacing: -0.018em;
}

.feature-card p {
  margin: 0;
  color: var(--abiz-muted);
  font-size: 13px;
  line-height: 1.7;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.workflow-step {
  position: relative;
  background: var(--abiz-surface);
  border: 1px solid var(--abiz-line);
  border-radius: 20px;
  padding: 26px 20px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.workflow-step::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 32px;
  height: 2px;
  background: var(--abiz-line);
}

.workflow-step:last-child::after {
  display: none;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--abiz-blue-soft);
  color: var(--abiz-blue);
}

.step-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  display: inline-block;
  margin-top: 16px;
  color: var(--abiz-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.workflow-step h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  color: var(--abiz-text);
}

.workflow-step p {
  margin: 0;
  color: var(--abiz-muted);
  font-size: 13px;
  line-height: 1.72;
}

.pricing-section {
  background: #eef4ff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 30px 30px 34px;
  border-radius: 22px;
  background: var(--abiz-surface);
  border: 1px solid var(--abiz-line);
  box-shadow: var(--abiz-card-shadow);
}

.pricing-card-highlight {
  background: var(--abiz-text);
  color: #fff;
  border-color: var(--abiz-text);
  box-shadow: var(--abiz-shadow);
  transform: translateY(-8px);
}

.best-value {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 8px 12px;
  background: var(--abiz-blue);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0 10px;
}

.plan-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--abiz-blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.pricing-card-highlight .plan-label {
  color: #a5c9ff;
}

.plan-price {
  font-size: clamp(44px, 4vw, 54px);
  font-weight: 800;
  color: var(--abiz-text);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.pricing-card-highlight .plan-price {
  color: #fff;
}

.plan-price span {
  font-size: 16px;
  font-weight: 700;
  color: var(--abiz-muted);
}

.pricing-card-highlight .plan-price span {
  color: #c7ddff;
}

.plan-features {
  margin: 26px 0 24px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-top: 1px solid var(--abiz-line);
  color: var(--abiz-muted);
  font-size: 13px;
}

.pricing-card-highlight .plan-features li {
  color: #d2ddf4;
  border-color: rgba(255,255,255,0.12);
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--abiz-blue);
  font-weight: 900;
}

.pricing-card-highlight .plan-features li::before {
  color: #8db7ff;
}

.pricing-button {
  width: 100%;

}

.pricing-card-highlight .button-primary {
  background: var(--abiz-blue);

}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: var(--abiz-surface);
  border: 1px solid var(--abiz-line);
  box-shadow: 0 8px 22px rgba(15,23,42,0.035);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--abiz-blue);
  background: var(--abiz-blue-soft);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card h3 {
  margin: 22px 0 8px;
  font-size: 20px;
  color: var(--abiz-text);
  line-height: 1.2;
}

.stat-card p {
  margin: 0;
  color: var(--abiz-muted);
  font-size: 13px;
  line-height: 1.75;
}

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

.faq-list details {
  border-bottom: 1px solid var(--abiz-line);
  padding: 16px 0;
}

.faq-list details:first-child {
  border-top: 1px solid var(--abiz-line);
}

.faq-list summary {
  cursor: pointer;
  color: var(--abiz-text);
  font-size: 15px;
  font-weight: 700;
  outline: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--abiz-blue);
  font-size: 18px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 14px 0 0;
  color: var(--abiz-muted);
  font-size: 13px;
  line-height: 1.8;
}

.about-abiz-card {
  background: linear-gradient(135deg, var(--abiz-text), #233c6f);
  color: #fff;
  border-radius: 24px;
  padding: 54px 50px;
  box-shadow: var(--abiz-shadow);
}

.about-abiz-copy {
  max-width: 760px;
}

.about-abiz-copy .abiz-kicker,
.about-abiz-copy h2,
.about-abiz-copy p {
  color: #fff;
}

.about-abiz-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.2;
  font-weight: 700;
}

.about-abiz-copy p {
  color: #ccd6ee;
  font-size: 14px;
  line-height: 1.8;
}

.about-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.about-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.about-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--abiz-green);
  stroke-width: 2;
}

.contact-strip {
  padding-top: 80px;
}

.contact-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px 0;
  border-top: 1px solid var(--abiz-line);
}

.contact-strip-grid h2 {
  margin: 14px 0 4px;
  color: var(--abiz-text);
  font-size: clamp(38px, 3vw, 44px);
}

.contact-strip-grid p {
  margin: 0 0 6px;
  color: var(--abiz-muted);
}

.contact-email {
  color: var(--abiz-blue);
  font-weight: 700;
}

.contact-strip-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.abiz-footer {
  background: var(--abiz-surface);
  border-top: 1px solid var(--abiz-line);
  color: var(--abiz-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
}

.footer-brand-block .abiz-logo {
  color: var(--abiz-text);
}

.footer-brand-block .abiz-logo img {
  width: 30px;
  height: 30px;
}

.footer-about {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--abiz-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--abiz-muted);
  font-size: 12px;
  font-weight: 700;
  opacity: 1;
  visibility: visible;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--abiz-blue);
  opacity: 1;
}

.footer-copy {
  text-align: right;
}

.footer-copy p {
  margin: 0 0 6px;
  font-size: 12px;
}

.footer-copy p a {
  color: var(--abiz-blue);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.button span {
  font-size: 16px;
}

.button-primary {
  color: var(--abiz-text);
  background: var(--abiz-blue);
  box-shadow: 0 9px 22px rgba(37, 99, 235, 0.2);
}

.button-primary:hover {
  background: var(--abiz-blue-dark);
  transform: translateY(-2px);
  color: var(--abiz-text);
}

.button-secondary {
  border-color: var(--abiz-line);
  color: var(--abiz-text);
  background: var(--abiz-surface);
}

.button-secondary:hover {
  border-color: var(--abiz-blue);
  color: var(--abiz-blue);
  transform: translateY(-2px);
}

/* Legal page styles */
.legal-wrap {
  padding: 58px 0 80px;
}

.legal-card {
  max-width: 900px;
  background: var(--abiz-surface);
  border-radius: 22px;
  padding: 40px;
  border: 1px solid var(--abiz-line);
  box-shadow: var(--abiz-card-shadow);
}

.legal-card h1 {
  margin: 12px 0 16px;
  font-size: clamp(40px, 3vw, 56px);
  color: var(--abiz-text);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.legal-copy {
  color: var(--abiz-muted);
  font-size: 14px;
  line-height: 1.9;
}

.legal-copy p {
  margin-bottom: 16px;
}

.legal-copy a {
  color: var(--abiz-blue);
}

.legal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-section {
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 1fr);
  gap: 26px;
}

.contact-card {
  background: var(--abiz-surface);
  border: 1px solid var(--abiz-line);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--abiz-card-shadow);
}

.contact-card h1 {
  margin: 14px 0;
  font-size: clamp(40px, 3vw, 56px);
  color: var(--abiz-text);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.contact-lede {
  color: var(--abiz-muted);
  font-size: 15px;
  line-height: 1.8;
}

.contact-list {
  margin: 26px 0 20px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--abiz-line);
  padding: 14px 0;
  gap: 20px;
}

.contact-label {
  color: var(--abiz-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-row a {
  color: var(--abiz-blue);
  font-weight: 700;
}

.form-card {
  background: #eef4ff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  color: var(--abiz-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--abiz-line);
  border-radius: 12px;
  min-height: 46px;
  padding: 12px 14px;
  background: #fff;
  color: var(--abiz-text);
  font-family: var(--font);
}

.form-row textarea {
  resize: vertical;
}

.form-submit {
  width: fit-content;
}

.about-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 50px 0 80px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 30px;
  background: var(--abiz-surface);
  border-radius: 24px;
  padding: 42px;
  border: 1px solid var(--abiz-line);
  box-shadow: var(--abiz-card-shadow);
}

.about-hero-copy h1 {
  margin: 16px 0 20px;
  color: var(--abiz-text);
  font-size: clamp(44px, 3vw, 62px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.about-lede {
  max-width: 560px;
  color: var(--abiz-muted);
  font-size: 15px;
  line-height: 1.9;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-hero-image {
  display: grid;
  place-items: center;
}

.about-card-orbit {
  width: min(300px, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--abiz-line);
  background: linear-gradient(135deg, var(--abiz-blue-soft), var(--abiz-surface));
  display: grid;
  place-items: center;
  box-shadow: var(--abiz-shadow);
}

.about-card-orbit img {
  width: 120px;
  height: 120px;
}

.about-story {
  margin-top: 24px;
  padding: 34px 40px;
  background: var(--abiz-surface);
  border-radius: 24px;
  border: 1px solid var(--abiz-line);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 30px;
  align-items: center;
}

.about-story-grid h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 3vw, 44px);
  line-height: 1.28;
  color: var(--abiz-text);
}

.about-story-grid p {
  margin: 0 0 16px;
  color: var(--abiz-muted);
  font-size: 14px;
  line-height: 1.8;
}

.about-values {
  margin-top: 24px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  padding: 26px 22px;
  border-radius: 18px;
  background: var(--abiz-surface);
  border: 1px solid var(--abiz-line);
}

.value-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--abiz-blue);
}

.value-card h3 {
  margin: 16px 0 8px;
  color: var(--abiz-text);
  font-size: 18px;
}

.value-card p {
  color: var(--abiz-muted);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .abiz-hero,
  .contact-grid,
  .about-hero,
  .about-story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .abiz-nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: var(--abiz-surface);
    box-shadow: var(--abiz-card-shadow);
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

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

  .abiz-menu-toggle {
    display: block;
  }

  .feature-grid,
  .workflow-grid,
  .stats-grid,
  .pricing-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-strip-grid,
  .contact-strip-actions {
    flex-wrap: wrap;
  }

  .contact-strip-grid {
    align-items: flex-start;
  }

  .pricing-card-highlight {
    transform: none;
  }

  .workflow-step::after {
    display: none;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .about-layout {
    width: min(100%, calc(100% - 28px));
  }

  .abiz-navbar {
    min-height: 72px;
  }

  .abiz-hero {
    padding-top: 28px;
    min-height: auto;
  }

  .abiz-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-proof {
    gap: 14px;
  }

  .hero-proof > div {
    min-width: 100px;
  }

  .feature-grid,
  .workflow-grid,
  .stats-grid,
  .pricing-grid,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .pricing-card,
  .stat-card,
  .contact-card,
  .legal-card,
  .about-hero,
  .about-story {
    border-radius: 16px;
  }

  .feature-section,
  .workflow-section,
  .pricing-section,
  .stats-section,
  .faq-section,
  .contact-strip {
    padding: 40px 0 14px;
  }

  .pricing-button {
    width: 100%;
  }

  .contact-strip-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #b8cdfb;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.1);
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid #ccdcfb;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.feature-card h3 {
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.abiz-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 40px 43px;
  border: 1px solid #b8cdfb;
  border-radius: 16px;
  background: linear-gradient(110deg, #eef4ff, #fff);
  box-shadow: var(--shadow);
}
.abiz-cta .abiz-eyebrow {
  justify-content: flex-start;
  margin-bottom: 13px;
}
.abiz-cta h2 {
  margin: 0;
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s;
}
.button span {
  font-size: 16px;
}
.button-primary {
  color: #172033;
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(37, 99, 235, 0.2);
}
.button-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  color: #fff;
}
.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
}
.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.abiz-footer {
  min-height: 130px;
  margin-top: 96px;
  padding: 27px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 11px;
}
.abiz-footer .abiz-brand {
  color: var(--text);
  font-size: 13px;
}
.abiz-footer .abiz-brand img {
  width: 24px;
  height: 24px;
}
.abiz-footer p {
  margin: 0;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rocketFloat {
  0%,
  100% {
    transform: rotate(-12deg) translateY(0);
  }
  50% {
    transform: rotate(-12deg) translateY(-5px);
  }
}
@media (max-width: 700px) {
  .abiz-nav,
  .abiz-hero,
  .status-card,
  .features-section,
  .abiz-cta,
  .abiz-footer {
    width: calc(100% - 32px);
  }
  .abiz-nav {
    min-height: 70px;
  }
  .abiz-nav-link {
    font-size: 11px;
  }
  .abiz-hero {
    padding: 58px 0 52px;
  }
  .abiz-hero h1 {
    font-size: clamp(42px, 13vw, 57px);
  }
  .abiz-lede {
    font-size: 14px;
    line-height: 1.7;
  }
  .status-card {
    padding: 24px 20px;
  }
  .status-topline h2 {
    font-size: 18px;
  }
  .features-section {
    padding: 86px 0 80px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .feature-card {
    min-height: 196px;
    padding: 18px;
  }
  .feature-icon {
    margin-bottom: 20px;
  }
  .feature-card h3 {
    font-size: 13px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .abiz-cta {
    display: block;
    padding: 28px 23px;
  }
  .cta-actions {
    margin-top: 27px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .button {
    padding: 0 9px;
    font-size: 11px;
  }
  .abiz-footer {
    min-height: 105px;
    margin-top: 68px;
    padding: 23px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .abiz-footer p {
    font-size: 10px;
  }
}
@media (max-width: 390px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 0;
  }
  .cta-actions {
    grid-template-columns: 1fr;
  }
  .button-secondary {
    margin-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rocket,
  .status-card,
  .feature-card,
  .button {
    animation: none;
    transition: none;
  }
  .progress-value {
    transition: none;
  }
}
