/*
 * Autobot public theme override
 * Scope: public/frontend pages only
 * Strategy: loaded through Davinci's built-in custom_css_url setting.
 * No Blade markup, routes, CMS fields, loops, or application logic are replaced.
 */

:root {
  --autobot-ink: #081613;
  --autobot-ink-soft: #10231e;
  --autobot-copy: #263a34;
  --autobot-muted: #667a73;
  --autobot-line: #dce7e2;
  --autobot-surface: #ffffff;
  --autobot-surface-soft: #f3f7f5;
  --autobot-surface-warm: #fbfcf9;
  --autobot-accent: #73e6bd;
  --autobot-accent-strong: #39c996;
  --autobot-accent-dark: #0f6b50;
  --autobot-radius-sm: 12px;
  --autobot-radius-md: 20px;
  --autobot-radius-lg: 32px;
  --autobot-shadow-sm: 0 10px 30px rgba(8, 22, 19, 0.07);
  --autobot-shadow-md: 0 24px 70px rgba(8, 22, 19, 0.11);
}

html {
  scroll-padding-top: 92px;
}

body.frontend-body {
  color: var(--autobot-copy);
  background: var(--autobot-surface-warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body.frontend-body * {
  font-family:
    Poppins,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body.frontend-body a,
body.frontend-body button,
body.frontend-body .card {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

body.frontend-body a:focus-visible,
body.frontend-body button:focus-visible,
body.frontend-body [tabindex]:focus-visible {
  outline: 3px solid rgba(115, 230, 189, 0.75) !important;
  outline-offset: 4px;
}

body.frontend-body ::selection {
  color: var(--autobot-ink);
  background: var(--autobot-accent);
}

body.frontend-body .container {
  max-width: 1240px;
}

body.frontend-body .row .title p {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(15, 107, 80, 0.18);
  border-radius: 999px;
  color: var(--autobot-accent-dark);
  background: rgba(115, 230, 189, 0.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

body.frontend-body .row .title h3 {
  max-width: 820px;
  margin-inline: auto;
  color: var(--autobot-ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-shadow: none;
}

body.frontend-body .row .title h3 span {
  color: var(--autobot-accent-dark);
}

body.frontend-body .row .title h6 {
  max-width: 700px;
  margin-inline: auto;
  color: var(--autobot-muted);
  font-size: 15px !important;
  line-height: 1.75;
}

/* Hero and navigation */
body.frontend-body #main {
  background: var(--autobot-ink);
}

body.frontend-body #navbar-container {
  z-index: 1080;
}

body.frontend-body #main #main-background {
  position: relative;
  min-height: 760px !important;
  height: min(900px, 100svh) !important;
  overflow: hidden;
  background-color: var(--autobot-ink);
  background-image:
    radial-gradient(
      circle at 18% 24%,
      rgba(115, 230, 189, 0.2),
      transparent 29%
    ),
    radial-gradient(
      circle at 82% 76%,
      rgba(57, 201, 150, 0.13),
      transparent 34%
    ),
    linear-gradient(135deg, #07130f 0%, #0b1d18 54%, #07130f 100%);
}

body.frontend-body #main-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

body.frontend-body #main-background::after {
  content: "";
  position: absolute;
  top: 19%;
  left: 50%;
  width: min(76vw, 980px);
  height: min(76vw, 980px);
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(115, 230, 189, 0.15);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 90px rgba(115, 230, 189, 0.025),
    0 0 0 180px rgba(115, 230, 189, 0.018);
}

body.frontend-body #main-background > .container,
body.frontend-body #main-background > .container > .row,
body.frontend-body #main-background .text-container {
  position: relative;
  z-index: 1;
}

body.frontend-body #main .navbar {
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 19, 15, 0.44);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.frontend-body #main .navbar.minimize-navbar {
  min-height: 72px;
  line-height: 50px;
  border-bottom-color: rgba(8, 22, 19, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(8, 22, 19, 0.08);
}

body.frontend-body #main .navbar-brand img {
  max-width: 180px;
  max-height: 44px;
  object-fit: contain;
}

body.frontend-body #main .navbar-nav {
  gap: clamp(0.25rem, 1.4vw, 1.35rem);
}

body.frontend-body #main .navbar-nav li.nav-item a.nav-link {
  position: relative;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  text-shadow: none;
}

body.frontend-body #main .navbar-nav li.nav-item a.nav-link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--autobot-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

body.frontend-body #main .navbar-nav li.nav-item a.nav-link:hover,
body.frontend-body #main .navbar-nav li.nav-item a.nav-link:focus,
body.frontend-body #main .navbar-nav li.nav-item a.nav-link.active {
  color: #fff;
}

body.frontend-body #main .navbar-nav li.nav-item a.nav-link:hover::after,
body.frontend-body #main .navbar-nav li.nav-item a.nav-link:focus::after,
body.frontend-body #main .navbar-nav li.nav-item a.nav-link.active::after {
  transform: scaleX(1);
}

body.frontend-body #main .minimize-navbar .navbar-nav li.nav-item a.nav-link {
  color: var(--autobot-copy) !important;
}

body.frontend-body
  #main
  .minimize-navbar
  .navbar-nav
  li.nav-item
  a.nav-link:hover,
body.frontend-body
  #main
  .minimize-navbar
  .navbar-nav
  li.nav-item
  a.nav-link:focus,
body.frontend-body
  #main
  .minimize-navbar
  .navbar-nav
  li.nav-item
  a.nav-link.active {
  color: var(--autobot-accent-dark) !important;
}

body.frontend-body #main #login-button {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

body.frontend-body #main .minimize-navbar #login-button {
  color: var(--autobot-copy) !important;
}

body.frontend-body #main .action-button,
body.frontend-body #main .register-button,
body.frontend-body #main .dashboard-button {
  min-height: 44px;
  padding: 0.7rem 1.4rem !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--autobot-ink);
  background: var(--autobot-accent);
  box-shadow: none;
  font-weight: 700;
}

body.frontend-body #main .action-button:hover,
body.frontend-body #main .register-button:hover,
body.frontend-body #main .dashboard-button:hover {
  color: #fff;
  background: var(--autobot-accent-dark);
  transform: translateY(-1px);
}

body.frontend-body #main .text-container {
  max-width: 1120px;
  margin-inline: auto;
  padding-top: 54px;
}

body.frontend-body #main .text-container h6 {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(115, 230, 189, 0.24);
  border-radius: 999px;
  color: var(--autobot-accent);
  background: rgba(115, 230, 189, 0.08);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.frontend-body #main .text-container h1,
body.frontend-body #main .text-container h2.ah-headline {
  color: #f5fff9;
  font-size: clamp(3.1rem, 6.5vw, 6.3rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-shadow: none;
}

body.frontend-body #main .text-container h2.ah-headline {
  color: var(--autobot-accent);
}

body.frontend-body #main .text-container p {
  max-width: 660px;
  margin: 1.75rem auto 2rem;
  color: rgba(244, 255, 249, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
  font-weight: 400;
  line-height: 1.75;
}

body.frontend-body .btn-primary-frontend,
body.frontend-body .btn-primary-frontend-small {
  border: 1px solid rgba(8, 22, 19, 0.08);
  color: var(--autobot-ink) !important;
  background: var(--autobot-accent);
  box-shadow: 0 14px 34px rgba(57, 201, 150, 0.2);
}

body.frontend-body .btn-primary-frontend:hover,
body.frontend-body .btn-primary-frontend-small:hover {
  border-color: var(--autobot-accent);
  color: #fff !important;
  background: var(--autobot-accent-dark);
  box-shadow: 0 18px 40px rgba(15, 107, 80, 0.22);
  transform: translateY(-2px);
}

body.frontend-body #main #top-main-button {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--autobot-ink) !important;
  background: var(--autobot-accent);
}

body.frontend-body #main #top-main-button + div .fs-12 {
  color: rgba(245, 255, 249, 0.58);
}

body.frontend-body #main .happy-customers {
  gap: 8px;
  padding: 7px 16px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body.frontend-body #main .happy-customers .small-avatar {
  box-shadow: 0 0 0 2px var(--autobot-ink-soft);
}

body.frontend-body #main .curve-box .curve {
  fill: var(--autobot-surface-warm);
}

/* Shared section rhythm */
body.frontend-body #steps-wrapper,
body.frontend-body #features,
body.frontend-body #info-banner,
body.frontend-body #templates-wrapper,
body.frontend-body #benefits-wrapper,
body.frontend-body #images-wrapper,
body.frontend-body #prices,
body.frontend-body #faqs,
body.frontend-body #blogs {
  position: relative;
}

body.frontend-body #steps-wrapper,
body.frontend-body #info-banner,
body.frontend-body #templates-wrapper,
body.frontend-body #prices,
body.frontend-body #faqs,
body.frontend-body #blogs {
  background: var(--autobot-surface-warm);
}

body.frontend-body #features,
body.frontend-body #benefits-wrapper {
  background-color: var(--autobot-surface-soft);
  background-image: none;
}

/* How it works */
body.frontend-body #steps-wrapper {
  padding-bottom: 104px;
}

body.frontend-body #steps-wrapper .row:last-child {
  row-gap: 24px;
}

body.frontend-body #steps-wrapper .steps-box-wrapper {
  height: 100%;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--autobot-shadow-sm);
}

body.frontend-body #steps-wrapper .steps-box-wrapper::before,
body.frontend-body #steps-wrapper .steps-box-wrapper::after {
  display: none;
}

body.frontend-body #steps-wrapper .steps-box-wrapper:hover {
  border-color: rgba(57, 201, 150, 0.45);
  box-shadow: var(--autobot-shadow-md);
  transform: translateY(-5px);
}

body.frontend-body #steps-wrapper .step-number-big p {
  color: rgba(15, 107, 80, 0.08);
  font-size: 88px;
  font-weight: 800;
}

body.frontend-body #steps-wrapper .step-number h6 {
  color: var(--autobot-accent-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.frontend-body #steps-wrapper .step-title h2 {
  color: var(--autobot-ink);
  font-size: 20px;
  letter-spacing: -0.02em;
}

body.frontend-body #steps-wrapper .step-description p {
  color: var(--autobot-muted);
  line-height: 1.7;
}

/* Product tools */
body.frontend-body #features {
  padding-bottom: 120px;
}

body.frontend-body #features .features-nav-menu-inner,
body.frontend-body #templates-wrapper .template-nav-menu-inner {
  width: fit-content;
  max-width: 100%;
  padding: 7px;
  overflow-x: auto;
  border: 1px solid var(--autobot-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  scrollbar-width: none;
}

body.frontend-body #features .features-nav-menu-inner::-webkit-scrollbar,
body.frontend-body
  #templates-wrapper
  .template-nav-menu-inner::-webkit-scrollbar {
  display: none;
}

body.frontend-body #features .features-nav-menu .nav-tabs,
body.frontend-body #templates-wrapper .template-nav-menu-inner .nav-tabs {
  width: max-content;
  min-width: 100%;
  gap: 4px;
  justify-content: center;
  flex-wrap: nowrap;
}

body.frontend-body #features .features-nav-menu .nav-tabs .nav-link,
body.frontend-body #templates-wrapper .template-nav-menu-inner .nav-link {
  width: auto;
  min-width: max-content;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--autobot-muted);
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
}

body.frontend-body #features .features-nav-menu .nav-tabs .nav-link:hover,
body.frontend-body #features .features-nav-menu .nav-tabs .nav-link.active,
body.frontend-body #templates-wrapper .template-nav-menu-inner .nav-link:hover,
body.frontend-body
  #templates-wrapper
  .template-nav-menu-inner
  .nav-link.active {
  color: var(--autobot-ink);
  background: var(--autobot-accent);
  box-shadow: none;
  transform: none;
}

body.frontend-body #features .features-outer-wrapper {
  min-height: 470px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--autobot-shadow-sm);
}

body.frontend-body #features .feature-title h4 {
  color: var(--autobot-ink);
  font-size: clamp(1.75rem, 3vw, 2.75rem) !important;
  letter-spacing: -0.04em;
  line-height: 1.15;
  text-shadow: none;
}

body.frontend-body #features .feature-title h6,
body.frontend-body #features .feature-description p,
body.frontend-body #features .feature-footer p {
  color: var(--autobot-muted);
  line-height: 1.75;
}

body.frontend-body #features .feature-title h6 i {
  color: var(--autobot-ink);
  background: var(--autobot-accent) !important;
}

body.frontend-body #features .feature-image-wrapper img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(8, 22, 19, 0.13));
}

/* Compact capability banner */
body.frontend-body #info-banner {
  padding: 26px 0 104px;
}

body.frontend-body #info-banner .row {
  padding-inline: 0 !important;
  row-gap: 20px;
}

body.frontend-body #info-banner .info-box {
  min-height: 190px;
  margin: 0 !important;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(115, 230, 189, 0.14);
  border-radius: var(--autobot-radius-md);
  color: rgba(255, 255, 255, 0.75);
  background: var(--autobot-ink-soft);
  box-shadow: none;
}

body.frontend-body #info-banner .info-box h4,
body.frontend-body #info-banner .info-box h5,
body.frontend-body #info-banner .info-box h6,
body.frontend-body #info-banner .info-box strong {
  color: #f5fff9;
}

body.frontend-body #info-banner .info-box p {
  color: rgba(245, 255, 249, 0.66);
  line-height: 1.6;
}

/* Templates and benefits */
body.frontend-body #templates-wrapper {
  padding-bottom: 128px;
}

body.frontend-body #templates-wrapper .show-templates::before {
  background: linear-gradient(
    to bottom,
    rgba(251, 252, 249, 0) 50%,
    var(--autobot-surface-warm) 100%
  );
}

body.frontend-body #templates-wrapper .show-templates-button {
  background: var(--autobot-surface-warm);
}

body.frontend-body #templates-wrapper .show-templates-button a {
  min-height: 40px;
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--autobot-ink);
  background: var(--autobot-accent);
  box-shadow: none;
  font-weight: 700;
}

body.frontend-body #templates-wrapper .template .card {
  height: 100%;
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

body.frontend-body #templates-wrapper .template .card:hover {
  border-color: rgba(57, 201, 150, 0.45);
  box-shadow: var(--autobot-shadow-sm);
  transform: translateY(-4px);
}

body.frontend-body #templates-wrapper .template-title h6,
body.frontend-body #templates-wrapper .templates-panel-group h6 {
  color: var(--autobot-ink) !important;
}

body.frontend-body #templates-wrapper .template-info p,
body.frontend-body #templates-wrapper .templates-panel-group h4 {
  color: var(--autobot-muted) !important;
}

body.frontend-body #benefits-wrapper {
  padding: 24px 0 116px;
}

body.frontend-body #benefits-wrapper .title {
  margin-top: 2rem;
}

body.frontend-body #benefits-wrapper .benefits-box-wrapper {
  height: 100%;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

body.frontend-body #benefits-wrapper .benefits-box-wrapper:hover {
  border-color: rgba(57, 201, 150, 0.45);
  box-shadow: var(--autobot-shadow-sm);
  transform: translateY(-4px);
}

body.frontend-body #benefits-wrapper .benefit-title h6 {
  color: var(--autobot-ink);
  font-size: 17px;
}

body.frontend-body #benefits-wrapper .benefit-description p {
  color: var(--autobot-muted);
  line-height: 1.7;
}

/* Image gallery */
body.frontend-body #images-wrapper {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(115, 230, 189, 0.14),
      transparent 28%
    ),
    var(--autobot-ink);
}

body.frontend-body #images-wrapper .title h3,
body.frontend-body #images-wrapper .title h6 {
  color: #f5fff9;
}

body.frontend-body #images-wrapper .title p {
  color: var(--autobot-accent);
  border-color: rgba(115, 230, 189, 0.2);
  background: rgba(115, 230, 189, 0.08);
}

body.frontend-body #images-wrapper .rounded-image {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
}

/* Pricing */
body.frontend-body #prices {
  padding-bottom: 112px;
}

body.frontend-body #prices .tabs-menu ul {
  padding: 6px;
  border: 1px solid var(--autobot-line);
  background: var(--autobot-surface-soft);
}

body.frontend-body #prices .card {
  overflow: hidden;
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-md);
  background: #fff;
  box-shadow: none !important;
}

body.frontend-body #prices .card:hover {
  border-color: rgba(57, 201, 150, 0.45);
  box-shadow: var(--autobot-shadow-md) !important;
  transform: translateY(-5px);
}

body.frontend-body #prices .card .plan-title,
body.frontend-body #prices .card .plan-cost {
  color: var(--autobot-ink);
  text-shadow: none;
}

body.frontend-body #prices .price-card-border {
  border: 2px solid var(--autobot-accent-strong);
}

body.frontend-body #prices .btn-primary-pricing {
  min-height: 44px;
  border-color: var(--autobot-ink);
  border-radius: 999px;
  color: #fff;
  background: var(--autobot-ink);
}

body.frontend-body #prices .btn-primary-pricing:hover {
  border-color: var(--autobot-accent-dark);
  background: var(--autobot-accent-dark);
}

/* Reviews */
body.frontend-body #reviews-wrapper {
  padding: 104px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(115, 230, 189, 0.12),
      transparent 30%
    ),
    var(--autobot-ink-soft);
}

body.frontend-body #reviews-wrapper .row .title p,
body.frontend-body #reviews-wrapper .row .title h3 {
  color: #f5fff9;
  text-shadow: none;
}

body.frontend-body #reviews-wrapper .row .title p {
  color: var(--autobot-accent);
}

body.frontend-body #reviews-wrapper .review-card-scroll {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--autobot-radius-md);
  color: rgba(245, 255, 249, 0.72);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

body.frontend-body #reviews-wrapper .reviewer-name {
  color: #f5fff9;
}

body.frontend-body #reviews-wrapper .reviewer-title,
body.frontend-body #reviews-wrapper .review-text {
  color: rgba(245, 255, 249, 0.66);
}

/* FAQs and blog */
body.frontend-body #faqs {
  padding-bottom: 112px;
  background-color: var(--autobot-surface-soft);
  background-image: none;
}

body.frontend-body #faqs #accordion .card {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

body.frontend-body #faqs #accordion .card-header {
  min-height: 60px;
  border: 0;
  background: transparent;
}

body.frontend-body #faqs #accordion .faq-button {
  color: var(--autobot-ink);
  font-weight: 650;
  line-height: 1.5;
  text-align: left;
  white-space: normal;
}

body.frontend-body #faqs #accordion .card-body {
  border-top: 1px solid var(--autobot-line);
  color: var(--autobot-muted);
  line-height: 1.75;
}

body.frontend-body #blogs {
  padding-bottom: 128px;
}

body.frontend-body #blogs .blog-box {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-md);
  background: #fff;
  box-shadow: none;
}

body.frontend-body #blogs .blog-box:hover {
  border-color: rgba(57, 201, 150, 0.45);
  box-shadow: var(--autobot-shadow-sm);
  transform: translateY(-4px);
}

body.frontend-body #blogs .blog-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

body.frontend-body #blogs .blog-info {
  padding: 24px;
}

body.frontend-body #blogs .blog-title a,
body.frontend-body #blogs .blog-all a {
  color: var(--autobot-ink);
}

body.frontend-body #blogs .blog-date,
body.frontend-body #blogs .blog-info h6,
body.frontend-body #blogs .blog-info h6 a {
  color: var(--autobot-accent-dark);
}

/* Footer */
body.frontend-body #welcome-footer {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(115, 230, 189, 0.12),
      transparent 35%
    ),
    var(--autobot-ink);
}

body.frontend-body #welcome-footer .curve-box .curve {
  fill: var(--autobot-surface-warm);
}

body.frontend-body #welcome-footer #footer h1 {
  color: var(--autobot-accent);
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

body.frontend-body #welcome-footer #footer h3 {
  color: rgba(245, 255, 249, 0.72);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 500;
}

body.frontend-body #welcome-footer .notification,
body.frontend-body #welcome-footer .footer-link,
body.frontend-body #welcome-footer #frontend-copyright,
body.frontend-body #welcome-footer #frontend-copyright a {
  color: rgba(245, 255, 249, 0.64);
}

body.frontend-body #welcome-footer .footer-link:hover,
body.frontend-body #welcome-footer #frontend-copyright a:hover {
  color: var(--autobot-accent);
}

body.frontend-body #welcome-footer .footer-icon,
body.frontend-body #welcome-footer .twitter-icon {
  color: rgba(245, 255, 249, 0.7);
  fill: rgba(245, 255, 249, 0.7);
}

body.frontend-body #welcome-footer .footer-icon:hover,
body.frontend-body #welcome-footer .twitter-icon:hover {
  color: var(--autobot-accent);
  fill: var(--autobot-accent);
}

body.frontend-body #back-to-top {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--autobot-ink);
  background: var(--autobot-accent);
  box-shadow: none;
}

/* Other public pages */
body.frontend-body.blue-background {
  background: var(--autobot-surface-soft);
}

body.frontend-body .secondary-background {
  background: var(--autobot-surface-warm) !important;
}

body.frontend-body .secondary-navbar,
body.frontend-body .page-navbar {
  border-bottom-color: var(--autobot-line);
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 10px 30px rgba(8, 22, 19, 0.06);
  backdrop-filter: blur(16px);
}

body.frontend-body #page-wrapper,
body.frontend-body #contact-wrapper,
body.frontend-body .download-page {
  background: var(--autobot-surface-soft) !important;
}

body.frontend-body #contact-wrapper .contact-info-box,
body.frontend-body #page-wrapper .card,
body.frontend-body .blog-view {
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-md);
  background: #fff;
  box-shadow: var(--autobot-shadow-sm);
}

body.frontend-body #contact-wrapper .contact-info-box {
  height: 100%;
  padding: 32px 26px;
}

body.frontend-body #contact-wrapper .text-primary {
  color: var(--autobot-accent-dark) !important;
}

body.frontend-body #contact-wrapper .form-control {
  min-height: 48px;
  border: 1px solid var(--autobot-line);
  border-radius: var(--autobot-radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

body.frontend-body #contact-wrapper textarea.form-control {
  min-height: 180px;
}

body.frontend-body #contact-wrapper .btn-primary {
  min-width: 180px;
  min-height: 46px;
  border: 1px solid var(--autobot-ink);
  border-radius: 999px !important;
  color: #fff;
  background: var(--autobot-ink);
  box-shadow: none !important;
  font-weight: 700;
}

body.frontend-body #contact-wrapper .btn-primary:hover,
body.frontend-body #contact-wrapper .btn-primary:focus {
  border-color: var(--autobot-accent-dark);
  background: var(--autobot-accent-dark);
  transform: translateY(-2px);
}

body.frontend-body .form-control:focus {
  border-color: var(--autobot-accent-strong);
  box-shadow: 0 0 0 4px rgba(115, 230, 189, 0.16);
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 76px;
  }

  body.frontend-body #main .navbar {
    min-height: 72px;
    padding: 8px 18px;
  }

  body.frontend-body #main .navbar-toggler {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.94);
  }

  body.frontend-body #main .navbar-collapse {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(7, 19, 15, 0.97);
    box-shadow: var(--autobot-shadow-md);
  }

  body.frontend-body #main .minimize-navbar .navbar-collapse {
    border-color: var(--autobot-line);
    background: rgba(255, 255, 255, 0.98);
  }

  body.frontend-body #main .navbar-nav {
    align-items: stretch;
    gap: 2px;
  }

  body.frontend-body #main .navbar-nav li.nav-item a.nav-link {
    min-height: 44px;
    padding: 10px 12px;
    line-height: 24px;
  }

  body.frontend-body #main .navbar-nav li.nav-item a.nav-link::after {
    display: none;
  }

  body.frontend-body #main #login-buttons {
    width: 100%;
    padding: 12px 0 0 !important;
  }

  body.frontend-body #main-background {
    min-height: 720px !important;
    height: 100svh !important;
  }

  body.frontend-body #main .text-container {
    padding-top: 76px;
  }

  body.frontend-body #features .features-outer-wrapper {
    min-height: auto;
    text-align: center;
  }

  body.frontend-body #features .feature-image-wrapper {
    margin-top: 28px;
  }

  body.frontend-body #info-banner .info-box {
    min-height: 170px;
  }
}

@media (max-width: 575.98px) {
  body.frontend-body .container {
    padding-inline: 20px;
  }

  body.frontend-body .row .title h3 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  body.frontend-body #main .navbar-brand img {
    max-width: 145px;
  }

  body.frontend-body #main-background {
    min-height: 680px !important;
  }

  body.frontend-body #main-background::before {
    background-size: 42px 42px;
  }

  body.frontend-body #main-background::after {
    top: 24%;
    width: 520px;
    height: 520px;
  }

  body.frontend-body #main .text-container h1,
  body.frontend-body #main .text-container h2.ah-headline {
    font-size: clamp(2rem, 9.2vw, 2.45rem) !important;
    line-height: 1.05 !important;
  }

  body.frontend-body #main .word-container,
  body.frontend-body #main .ah-headline {
    width: 100%;
    overflow: visible;
  }

  body.frontend-body #main .ah-words-wrapper {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-height: 2.2em;
    text-align: center !important;
  }

  body.frontend-body #main .ah-words-wrapper b {
    left: 0;
    width: 100%;
    white-space: normal;
    line-height: 1.05;
    text-align: center;
  }

  body.frontend-body #main .text-container p {
    display: block !important;
    max-width: 320px;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 14px !important;
    line-height: 1.65;
  }

  body.frontend-body #main #top-main-button {
    width: min(100%, 280px);
  }

  body.frontend-body #main .happy-customers {
    max-width: 100%;
    padding-right: 12px;
  }

  body.frontend-body #steps-wrapper,
  body.frontend-body #features,
  body.frontend-body #info-banner,
  body.frontend-body #templates-wrapper,
  body.frontend-body #benefits-wrapper,
  body.frontend-body #prices,
  body.frontend-body #faqs,
  body.frontend-body #blogs {
    padding-bottom: 84px;
  }

  body.frontend-body #steps-wrapper .steps-box-wrapper,
  body.frontend-body #benefits-wrapper .benefits-box-wrapper {
    min-height: auto;
  }

  body.frontend-body #features .features-outer-wrapper {
    padding: 24px 16px;
    border-radius: 22px;
  }

  body.frontend-body #features .features-outer-wrapper > div {
    padding-inline: 8px !important;
  }

  body.frontend-body #images-wrapper {
    min-height: 620px;
  }

  body.frontend-body #welcome-footer #footer {
    padding-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.frontend-body *,
  body.frontend-body *::before,
  body.frontend-body *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
