:root {
  --ana-navy-950: #050b1d;
  --ana-navy-900: #0b1634;
  --ana-navy-800: #14244f;
  --ana-gold-500: #d0a830;
  --ana-gold-400: #e2c56f;
  --ana-gold-300: #f0deaa;
  --ana-text-900: #0f172a;
  --ana-text-700: #334155;
  --ana-surface: #f5f7fb;
  --ana-white: #ffffff;
  --ana-radius-lg: 22px;
  --ana-radius-md: 16px;
  --ana-shadow-soft: 0 20px 44px rgba(7, 17, 38, 0.14);
  --ana-shadow-card: 0 12px 30px rgba(8, 15, 30, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ana-text-900);
  background: var(--ana-surface);
  line-height: 1.55;
}

a {
  text-decoration: none;
}

.section-space {
  padding: 96px 0;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.95rem;
}

.section-heading p {
  color: var(--ana-text-700);
  font-size: 1.03rem;
  margin: 0;
}

.section-kicker,
.hero-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ana-gold-500);
  margin-bottom: 0.9rem;
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.section-light-alt {
  background: #f2f5fb;
}

.section-white {
  background: #ffffff;
}

.section-dark {
  background: radial-gradient(circle at 0% 10%, rgba(208, 168, 48, 0.17), transparent 38%),
    linear-gradient(140deg, var(--ana-navy-900) 0%, var(--ana-navy-950) 75%);
}

.btn-gold,
.btn-outline-light-gold {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.015em;
  padding: 12px 28px;
  transition: all 0.28s ease;
}

.btn-gold {
  background: linear-gradient(145deg, #ebce7d 0%, var(--ana-gold-500) 48%, #b99225 100%);
  color: #ffffff;
  border: 0;
  box-shadow: 0 8px 24px rgba(208, 168, 48, 0.33);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(208, 168, 48, 0.4);
}

.btn-outline-light-gold {
  border: 1.5px solid rgba(228, 199, 113, 0.75);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-light-gold:hover,
.btn-outline-light-gold:focus-visible {
  color: #ffffff;
  background: #f7edd2;
}

.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(128deg, rgba(3, 9, 22, 0.03), rgba(7, 20, 48, 0.07)),
    url('/sm/lib_images/hero_index.png');
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  padding: 104px 0 74px;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 20%, rgba(208, 168, 48, 0.12), transparent 44%),
    radial-gradient(circle at 14% 82%, rgba(96, 165, 250, 0.04), transparent 36%),
    linear-gradient(178deg, rgba(2, 7, 20, 0.015), rgba(2, 7, 20, 0.10));
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-left {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 24%;
  background: radial-gradient(circle, rgba(208, 168, 48, 0.26), rgba(208, 168, 48, 0));
}

.hero-glow-right {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 12%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0));
}

.hero-container {
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
  line-height: 1.04;
  font-weight: 900;
  margin-bottom: 1rem;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  font-size: clamp(1.02rem, 1.44vw, 1.16rem);
  max-width: 680px;
  color: rgba(242, 248, 255, 0.94);
  margin-bottom: 1.5rem;
}

.hero-copy-block {
  position: relative;
  background: linear-gradient(150deg, rgba(7, 17, 39, 0.56), rgba(7, 17, 39, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  padding: 1.75rem;
  backdrop-filter: blur(7px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.hero-copy-block::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 92px;
  height: 92px;
  border-radius: 16px;
  border: 1px solid rgba(208, 168, 48, 0.3);
  opacity: 0.55;
  pointer-events: none;
}

.hero-kicker {
  color: #f3d885;
  margin-bottom: 0.7rem;
}

.hero-benefits {
  display: grid;
  gap: 0.6rem;
}

.hero-benefits li {
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 600;
  max-width: 700px;
  color: rgba(247, 250, 255, 0.94);
  font-size: 0.93rem;
}

.hero-benefits i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  background: rgba(208, 168, 48, 0.2);
  border: 1px solid rgba(208, 168, 48, 0.5);
  color: var(--ana-gold-400);
}

.hero-cta {
  margin-top: 1.35rem;
}

.hero-section .hero-btn-primary,
.hero-section .hero-btn-secondary {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 28px;
  transition: all 0.28s ease, box-shadow 0.32s ease;
  min-height: 48px;
}

.hero-section .hero-btn-primary {
  background: linear-gradient(145deg, #ebce7d 0%, var(--ana-gold-500) 48%, #b99225 100%);
  color: #ffffff;
  border: 0;
  box-shadow: 0 12px 30px rgba(208, 168, 48, 0.34);
}

.hero-section .hero-btn-primary:hover,
.hero-section .hero-btn-primary:focus-visible {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(208, 168, 48, 0.4);
}

.hero-section .hero-btn-secondary {
  border: 1.5px solid rgba(228, 199, 113, 0.84);
  color: #ffffff;
  background: linear-gradient(145deg, rgba(8, 22, 52, 0.54), rgba(8, 22, 52, 0.2));
}

.hero-section .hero-btn-secondary:hover,
.hero-section .hero-btn-secondary:focus-visible {
  color: #ffffff;
  background: #f7edd2;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(234, 201, 104, 0.22);
}

.hero-micro-note {
  margin-top: 0.95rem;
  font-size: 0.83rem;
  color: rgba(235, 245, 255, 0.82);
  letter-spacing: 0.02em;
}

.hero-trust .trust-badge {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  padding: 11px 12px;
  height: 100%;
}

.trust-number {
  display: block;
  color: var(--ana-gold-300);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.trust-label {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  border-radius: var(--ana-radius-lg);
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.33);
  overflow: hidden;
  animation: hero-float 6.4s ease-in-out infinite;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 168, 48, 0.25), rgba(208, 168, 48, 0));
  right: -70px;
  top: -70px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.16;
  pointer-events: none;
}

.hero-visual-badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0a1838;
  background: linear-gradient(145deg, #f3dc9f, #d8b24a);
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  position: relative;
  z-index: 1;
}

.hero-visual-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
  position: relative;
  z-index: 1;
}

.hero-logo {
  min-height: 140px;
  height: 140px;
  width: auto;
  max-height: none;
  margin-bottom: 0;
}

.hero-panel {
  border-radius: var(--ana-radius-md);
  background: rgba(5, 13, 30, 0.76);
  border: 1px solid rgba(234, 201, 104, 0.38);
  padding: 1.25rem;
  position: relative;
  z-index: 1;
}

.hero-panel h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-panel p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.89);
  margin-bottom: 1rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.panel-grid div {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.79rem;
  font-weight: 600;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.panel-grid div:hover {
  transform: translateY(-1px);
  border-color: rgba(234, 201, 104, 0.62);
  background: rgba(234, 201, 104, 0.11);
}

.panel-grid i {
  color: var(--ana-gold-400);
}

.hero-copy-block>* {
  opacity: 0;
  transform: translateY(10px);
  animation: hero-reveal 0.66s ease forwards;
}

.hero-copy-block> :nth-child(1) {
  animation-delay: 0.08s;
}

.hero-copy-block> :nth-child(2) {
  animation-delay: 0.16s;
}

.hero-copy-block> :nth-child(3) {
  animation-delay: 0.24s;
}

.hero-copy-block> :nth-child(4) {
  animation-delay: 0.32s;
}

.hero-copy-block> :nth-child(5) {
  animation-delay: 0.4s;
}

.hero-copy-block> :nth-child(6) {
  animation-delay: 0.48s;
}

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.feature-card,
.module-card {
  height: 100%;
  border-radius: var(--ana-radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  padding: 1.4rem;
  box-shadow: var(--ana-shadow-card);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.feature-card:hover,
.module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(10, 25, 55, 0.12);
  border-color: rgba(208, 168, 48, 0.45);
}

.feature-card:hover {
  border-color: transparent;
}

.feature-icon,
.module-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0f1d40 0%, #1b326a 100%);
  color: var(--ana-gold-400);
  margin-bottom: 0.95rem;
  font-size: 1.15rem;
}

.feature-card .feature-icon {
  background: linear-gradient(145deg, #ebce7d 0%, var(--ana-gold-500) 48%, #b99225 100%);
  color: #ffffff;
}

.module-card .module-icon {
  background: linear-gradient(145deg, #ebce7d 0%, var(--ana-gold-500) 48%, #b99225 100%);
  color: #ffffff;
}

.module-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feature-card h3,
.module-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.feature-card p,
.module-card p {
  color: var(--ana-text-700);
  margin: 0;
  font-size: 0.95rem;
}

.metric-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ana-radius-md);
  padding: 1.3rem 1rem;
}

.metric-value {
  display: block;
  font-size: clamp(2.2rem, 3.3vw, 3rem);
  font-weight: 900;
  color: var(--ana-gold-500);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-name {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}

.active-companies-wrap {
  display: none;
  background: #ffffff;
  border-top: 3px solid var(--ana-gold-500);
  border-bottom: 3px solid var(--ana-gold-500);
  padding: 1.15rem 0 1.25rem;
  padding-top: 40px;
  padding-bottom: 40px;
}

.active-companies-title {
  text-align: center;
  color: var(--ana-navy-900);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.active-companies-belt {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.active-companies-track {
  display: flex;
  width: max-content;
  gap: 1.8rem;
  animation: active-company-scroll var(--active-scroll-duration, 40s) linear infinite;
  will-change: transform;
}

.active-company-logo-item {
  width: 240px;
  min-width: 240px;
  height: 120px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.13);
  box-shadow: 0 8px 14px rgba(7, 17, 38, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.active-company-logo-item img {
  width: 124px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}

@keyframes active-company-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.45rem));
  }
}

.management-copy {
  color: var(--ana-text-700);
  font-size: 1rem;
}

.management-list {
  display: grid;
  gap: 1rem;
}

.management-item {
  display: flex;
  gap: 0.9rem;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid rgba(12, 24, 49, 0.1);
  padding: 1rem;
}

.management-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #102149;
  color: var(--ana-gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.management-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
}

.management-item p {
  margin: 0;
  color: var(--ana-text-700);
  font-size: 0.94rem;
}

.section-testimonials {
  position: relative;
  background-image: url('/sm/lib_images/hero_index.png');
  background-size: cover;
  background-position: center center;
  padding-top: 88px;
  padding-bottom: 110px;
}

.section-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.section-testimonials .container,
.section-testimonials .testimonial-marquee {
  position: relative;
  z-index: 1;
}

.testimonial-marquee {
  --gap: 1rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  margin-bottom: 5.5rem;
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: var(--gap);
  animation: testimonial-scroll 56s linear infinite;
  padding: 0 1rem;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(390px, 86vw);
  min-height: 220px;
  border-radius: 16px;
  padding: 2.25rem 2.2rem;
  background: linear-gradient(155deg, rgba(12, 31, 74, 0.6), rgba(8, 21, 52, 0.5));
  border: 1px solid rgba(172, 198, 255, 0.28);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(4, 10, 28, 0.34);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 7px;
  left: 14px;
  color: rgba(240, 222, 170, 0.35);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.testimonial-card span {
  margin-top: 1rem;
  display: inline-block;
  color: var(--ana-gold-500);
  font-size: 0.9rem;
  font-weight: 700;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.section-cta {
  display: none;
}

.testimonials-cta-wrap {
  margin-top: 10rem !important;
}

.cta-panel {
  border-radius: var(--ana-radius-lg);
  padding: 2.4rem 1.2rem;
  background: rgba(8, 24, 58, 0.46);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(3, 10, 28, 0.44);
  border: 1px solid rgba(240, 222, 170, 0.28);
  transform: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(5, 16, 40, 0.28), rgba(208, 168, 48, 0.14));
  z-index: 0;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -130px;
  top: -175px;
  background: radial-gradient(circle, rgba(208, 168, 48, 0.34), transparent 70%);
}

.cta-panel h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  margin-bottom: 0.8rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.cta-panel p {
  margin: 0 auto 1.4rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.cta-panel .btn {
  position: relative;
  z-index: 2;
}

.section-faq {
  position: relative;
  background:
    radial-gradient(circle at 10% 12%, rgba(208, 168, 48, 0.2), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(96, 165, 250, 0.14), transparent 40%),
    linear-gradient(165deg, #f8fbff 0%, #eef3fb 100%);
  overflow: hidden;
}

.section-faq::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -110px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(13, 32, 73, 0.14), transparent 72%);
  pointer-events: none;
}

.faq-intro {
  position: sticky;
  top: 94px;
}

.faq-intro h2 {
  font-size: clamp(1.85rem, 2.4vw, 2.55rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.faq-intro p {
  color: var(--ana-text-700);
  margin-bottom: 1rem;
}

.faq-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(208, 168, 48, 0.45);
  background: rgba(255, 255, 255, 0.64);
  font-weight: 700;
  color: #10254f;
  font-size: 0.84rem;
}

.faq-intro-badge i {
  color: var(--ana-gold-500);
}

.faq-accordion-wrap {
  position: relative;
}

.faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 0;
  border-radius: 14px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(9, 27, 66, 0.1);
  box-shadow: 0 10px 22px rgba(8, 18, 38, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.faq-button {
  background: transparent !important;
  color: #0e2249 !important;
  font-weight: 700;
  font-size: 1rem;
  border: 0 !important;
  box-shadow: none !important;
  padding: 1rem 1.15rem;
}

.faq-button::after {
  filter: saturate(1.25);
}

.faq-button:not(.collapsed) {
  color: #0b1b3d !important;
  background: linear-gradient(145deg, rgba(208, 168, 48, 0.2), rgba(208, 168, 48, 0.08)) !important;
}

.faq-body {
  color: var(--ana-text-700);
  padding: 0.1rem 1.15rem 1.05rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.demo-form-wrap {
  background: #ffffff;
  border-radius: var(--ana-radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--ana-shadow-soft);
  padding: 1.5rem;
}

.form-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f1f43;
  margin-bottom: 0.35rem;
}

.form-control {
  border-radius: 12px;
  min-height: 46px;
  border-color: rgba(15, 23, 42, 0.18);
  padding: 0.62rem 0.88rem;
  font-size: 0.96rem;
}

.form-control:focus {
  border-color: rgba(208, 168, 48, 0.88);
  box-shadow: 0 0 0 0.2rem rgba(208, 168, 48, 0.2);
}

textarea.form-control {
  min-height: 132px;
}

.demo-info {
  border-radius: 14px;
  border: 1px solid rgba(208, 168, 48, 0.4);
  background: #fff7df;
  padding: 0.95rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.demo-info i {
  color: #a37f18;
  margin-top: 0.15rem;
}

.demo-info p {
  margin: 0;
  color: #4b5563;
  font-size: 0.94rem;
}

.btn-send {
  min-width: 210px;
}

.form-note {
  color: #5f6b80;
  font-size: 0.86rem;
}

.form-feedback {
  display: none;
  margin-top: 1rem;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-feedback.ok,
.form-feedback.error {
  display: block;
}

.form-feedback.ok {
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-feedback.error {
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

.site-footer {
  background: linear-gradient(145deg, #050d1f, #0a1838);
  color: rgba(255, 255, 255, 0.9);
  padding: 52px 0;
  border-top: 1px solid rgba(208, 168, 48, 0.25);
}

.site-footer h3 {
  font-size: 1rem;
  color: var(--ana-gold-300);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.site-footer p {
  font-size: 0.95rem;
}

.footer-logo {
  max-height: 44px;
}

.footer-sm-logo {
  max-height: 32px;
  opacity: 0.88;
}

.footer-copy,
.footer-powered {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e6c870, var(--ana-gold-500));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(208, 168, 48, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.24s ease;
  z-index: 40;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  color: #ffffff;
}

@media (max-width: 1199.98px) {
  .section-space {
    padding: 84px 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 84px;
  }

  .hero-title {
    max-width: 860px;
  }
}

@media (max-width: 991.98px) {
  .hero-copy-block {
    padding: 1.1rem;
  }

  .hero-title,
  .hero-subtitle,
  .hero-benefits li {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .section-heading {
    max-width: 100%;
  }

  .section-heading p {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-intro {
    position: static;
  }

  .section-cta {
    display: none;
  }

  .testimonials-cta-wrap {
    margin-top: 7rem !important;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 70px 0;
  }

  .hero-section {
    padding: 78px 0 62px;
  }

  .section-cta {
    display: none;
  }

  .testimonials-cta-wrap {
    margin-top: 5.5rem !important;
  }

  .hero-cta {
    gap: 0.8rem;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-copy-block {
    border-radius: 16px;
    padding: 1rem;
  }

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

  .metric-card {
    min-height: auto;
  }

  .demo-form-wrap {
    padding: 1.25rem;
  }

  .btn-send {
    width: 100%;
    min-width: 0;
  }

  .testimonial-card {
    width: 82vw;
  }

  .site-footer {
    text-align: center;
  }

  .faq-button {
    font-size: 0.95rem;
    padding: 0.95rem 0.95rem;
  }

  .faq-body {
    padding: 0.05rem 0.95rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {

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