:root {
  --site-bg: #f2f5fa;
  --site-surface: #ffffff;
  --site-surface-soft: #f7f9fc;
  --site-primary: #1b4dd8;
  --site-primary-strong: #0f2f7a;
  --site-accent: #12b981;
  --site-text: #0c1b2a;
  --site-muted: #5e6f86;
  --site-border: #d8e2f0;
  --site-shadow-md: 0 18px 38px rgba(15, 32, 55, 0.12);
  --site-shadow-lg: 0 28px 60px rgba(15, 32, 55, 0.18);
  --site-glass: rgba(255, 255, 255, 0.72);
}

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.site-public {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--site-text);
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(27, 77, 216, 0.12), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(18, 185, 129, 0.12), transparent 55%),
    linear-gradient(180deg, #f5f7fc 0%, #eef2f7 60%, #f8faff 100%);
  background-color: var(--site-bg);
  line-height: 1.65;
  position: relative;
}

body.site-public::before {
  content: "";
  position: fixed;
  inset: -22vh -18vw auto;
  height: 62vh;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(46vw 34vh at 12% 20%, rgba(27, 77, 216, 0.2), transparent 72%),
    radial-gradient(34vw 28vh at 88% 52%, rgba(18, 185, 129, 0.18), transparent 72%);
}

body.site-public::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(90deg, rgba(12, 27, 42, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(12, 27, 42, 0.05) 1px, transparent 1px);
  background-size: 90px 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0e223f;
}

a {
  color: inherit;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 700;
}

.section-kicker {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-accent);
}

.btn-modern-primary {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--site-primary) 0%, var(--site-primary-strong) 100%);
  border-radius: 999px;
  padding: 0.56rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(27, 77, 216, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-modern-primary:hover,
.btn-modern-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(27, 77, 216, 0.32);
}

.btn-modern-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 0.56rem 1.08rem;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn-modern-ghost:hover,
.btn-modern-ghost:focus {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.2);
}

.btn-modern-outline {
  border: 1px solid rgba(27, 77, 216, 0.36);
  color: var(--site-primary);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.56rem 1.12rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-modern-outline:hover,
.btn-modern-outline:focus {
  color: var(--site-primary-strong);
  background: #fff;
  transform: translateY(-1px);
}

.site-navbar {
  padding: 0.9rem 0;
  position: fixed;
  inset: 0 0 auto;
  z-index: 1035;
  background: rgba(8, 16, 32, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(11px);
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-navbar.is-scrolled {
  background: rgba(9, 18, 36, 0.92);
  border-bottom-color: rgba(121, 153, 201, 0.24);
  box-shadow: 0 12px 30px rgba(6, 12, 26, 0.35);
}

.site-brand {
  color: #fff !important;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.08;
}

.site-brand-title {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-brand-subtitle {
  font-size: 0.68rem;
  opacity: 0.86;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.site-nav-link {
  color: #edf3ff !important;
  font-weight: 600;
  padding: 0.45rem 0.72rem !important;
  margin: 0 0.08rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16);
}

.site-navbar-toggler {
  border-color: rgba(255, 255, 255, 0.55);
}

.site-navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(165, 196, 255, 0.35);
}

.site-navbar-toggler .navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6.4rem;
  padding-bottom: 4rem;
  background:
    linear-gradient(125deg, rgba(7, 18, 38, 0.85) 0%, rgba(9, 30, 68, 0.8) 48%, rgba(8, 38, 78, 0.74) 100%),
    url("/static/core/images/image-1.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55vw 38vh at 20% 18%, rgba(10, 99, 255, 0.2), transparent 68%),
    radial-gradient(38vw 30vh at 82% 70%, rgba(8, 177, 132, 0.16), transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-eyebrow {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
  color: #d8fff1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(18, 185, 129, 0.18);
  border: 1px solid rgba(18, 185, 129, 0.3);
}

.hero-title {
  color: #fff;
  font-size: clamp(2rem, 4.3vw, 4rem);
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #e8f1ff;
  max-width: 60ch;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 980px;
}

.hero-kpi {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 30px rgba(4, 12, 28, 0.2);
}

.hero-kpi strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.hero-kpi span {
  color: #d4e2fb;
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 44px rgba(3, 10, 20, 0.36);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.hero-visual-top {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-visual-top .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.hero-visual-image {
  display: block;
  width: 100%;
}

.hero-visual-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(27, 77, 216, 0.92), rgba(18, 185, 129, 0.9));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-strip-inner {
  border: 1px solid var(--site-border);
  border-radius: 18px;
  background: var(--site-glass);
  box-shadow: 0 12px 26px rgba(16, 35, 62, 0.08);
  padding: 0.9rem 1.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
}

.trust-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #183357;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-items span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(27, 77, 216, 0.16);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.34rem 0.74rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #2a456b;
}

.platform-card {
  height: 100%;
  border: 1px solid var(--site-border);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: var(--site-shadow-md);
  padding: 1.35rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-shadow-lg);
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 0.35;
}

.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27, 77, 216, 0.18), rgba(18, 185, 129, 0.16));
  color: #0f3aa8;
  margin-bottom: 0.7rem;
}

.platform-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.platform-card p {
  margin-bottom: 0;
  color: var(--site-muted);
  font-size: 0.94rem;
}

.showcase-panel {
  border: 1px solid var(--site-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--site-shadow-md);
  background: #fff;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 1.2rem;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
  color: #294467;
}

.showcase-list i {
  margin-top: 0.28rem;
  color: var(--site-primary);
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.workflow-step {
  height: 100%;
  border: 1px solid var(--site-border);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: var(--site-shadow-md);
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.workflow-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.65);
  opacity: 0.35;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 30px;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, var(--site-primary), var(--site-primary-strong));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.workflow-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.workflow-step p {
  color: var(--site-muted);
  margin: 0;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--site-border);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 0.7rem;
  box-shadow: 0 8px 16px rgba(16, 35, 62, 0.05);
}

.faq-accordion .accordion-button {
  font-size: 0.8rem;
  padding: 0.8rem 1rem;
  font-weight: 700;
  color: #16345a;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--site-primary);
  background: #f1f6ff;
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: var(--site-muted);
}

.why-section {
  background: transparent;
}

.why-tab {
  border: 1px solid var(--site-border) !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  color: #1f365b !important;
  background: var(--site-surface) !important;
  box-shadow: 0 8px 18px rgba(16, 35, 62, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.why-tab:hover {
  transform: translateY(-1px);
}

.why-tab.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--site-primary), var(--site-primary-strong)) !important;
  border-color: transparent !important;
  box-shadow: 0 14px 24px rgba(10, 99, 255, 0.28);
}

.why-card,
.feature-card,
.benefit-card,
.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  border: 1px solid var(--site-border);
  border-radius: 20px;
  box-shadow: var(--site-shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover,
.feature-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-shadow-lg);
}

.why-card::after,
.feature-card::after,
.benefit-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.65);
  opacity: 0.35;
}

.why-card {
  padding: clamp(1.35rem, 2.3vw, 2rem);
  text-align: center;
}

.why-card h4 {
  font-size: 1.3rem;
  margin: 0.8rem 0;
}

.why-card p {
  color: var(--site-muted);
  margin-bottom: 0;
}

.why-img {
  max-width: 150px;
}

.animated-tab {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animated-tab.show.active {
  opacity: 1;
  transform: translateY(0);
}

.platform-section,
.showcase-section,
.workflow-section,
.faq-section,
.why-section,
.benefits-section,
.advanced-features,
#testimonials,
.cta-section {
  position: relative;
}

.platform-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-top: 1px solid rgba(216, 226, 240, 0.8);
  border-bottom: 1px solid rgba(216, 226, 240, 0.8);
}

.showcase-section {
  background: linear-gradient(180deg, rgba(245, 248, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.workflow-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border-top: 1px solid rgba(216, 226, 240, 0.6);
}

.faq-section {
  background: #f7f9fd;
}

.advanced-features {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  border-top: 1px solid rgba(216, 226, 240, 0.6);
}

.cta-section {
  background: transparent;
}

.benefit-icon {
  width: 70px;
}

.benefit-desc {
  color: var(--site-muted);
}

.feature-card {
  gap: 0.8rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(15, 32, 55, 0.12);
}

.feature-card h5 {
  font-size: 1.03rem;
}

.feature-card p {
  color: var(--site-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.secured-section {
  position: relative;
}

.secured-desc {
  max-width: 750px;
  color: var(--site-muted);
  font-size: 1.05rem;
}

.secured-icon svg {
  filter: drop-shadow(0 12px 18px rgba(10, 99, 255, 0.2));
  animation: floatY 3.4s ease-in-out infinite;
}

.cta-section {
  padding-top: 2.7rem !important;
}

.cta-eyebrow {
  color: var(--site-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.cta-image-wrapper {
  position: relative;
  display: inline-flex;
}

.cta-image-wrapper img {
  border-radius: 16px;
  max-width: 138px;
}

.decorative-box {
  position: absolute;
  width: 36px;
  height: 36px;
}

.decorative-box.top-left {
  top: -8px;
  left: -8px;
  border-top: 4px solid var(--site-accent);
  border-left: 4px solid var(--site-accent);
  border-radius: 8px;
}

.decorative-box.bottom-right {
  bottom: -8px;
  right: -8px;
  border-bottom: 4px solid #ffbf46;
  border-right: 4px solid #ffbf46;
  border-radius: 8px;
}

.footer-section {
  margin-top: 2.7rem;
  background: linear-gradient(160deg, #091325 0%, #0f223d 62%, #11284a 100%);
  color: #dce7f8;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #dce7f8;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: #92c2ff;
  opacity: 1;
}

.social-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #dce7f8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(146, 194, 255, 0.24);
}

.newsletter-form .form-control {
  border: 1px solid rgba(204, 221, 246, 0.28);
  background: rgba(4, 18, 38, 0.34);
  color: #e7eefc;
}

.newsletter-form .form-control::placeholder {
  color: #b9c9e3;
}

.floating-message {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1040;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #25d366;
  box-shadow: 0 16px 28px rgba(6, 45, 26, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 30px rgba(6, 45, 26, 0.4);
}

.page-register-company .site-navbar {
  background: rgba(9, 18, 36, 0.88);
}

.registration-alert-stack {
  padding-top: 5.8rem;
  max-width: 900px;
}

.registration-shell {
  padding: 1.25rem 0 4.5rem;
}

.registration-intro {
  position: sticky;
  top: 6.8rem;
}

.registration-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: #102949;
  margin-bottom: 1rem;
  max-width: 11ch;
}

.registration-copy {
  font-size: 1.02rem;
  color: #304866;
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.registration-metric-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.registration-metric-card {
  border: 1px solid rgba(27, 77, 216, 0.12);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(12, 31, 55, 0.08);
}

.registration-metric-card strong {
  display: block;
  color: #13315a;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.registration-metric-card span {
  color: #506581;
  font-size: 0.92rem;
}

.registration-showcase {
  padding: 1.35rem;
  margin-bottom: 1.4rem;
}

.registration-showcase-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.registration-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(27, 77, 216, 0.16), rgba(18, 185, 129, 0.2));
  color: #15335d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.registration-badge-soft {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 77, 216, 0.14);
}

.registration-showcase h2 {
  font-size: 1.35rem;
  margin-bottom: 0.95rem;
}

.registration-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.registration-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #294467;
}

.registration-feature-list i {
  margin-top: 0.22rem;
  color: var(--site-accent);
}

.registration-steps {
  display: grid;
  gap: 1rem;
}

.registration-card {
  padding: clamp(1.3rem, 2vw, 2rem);
}

.registration-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(27, 77, 216, 0.12);
}

.registration-subcopy {
  color: var(--site-muted);
}

.registration-subcopy a {
  color: var(--site-primary);
  font-weight: 700;
  text-decoration: none;
}

.registration-subcopy a:hover {
  text-decoration: underline;
}

.registration-head-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 77, 216, 0.14), rgba(18, 185, 129, 0.18));
  color: #13315a;
  font-weight: 700;
  white-space: nowrap;
}

.registration-form {
  display: grid;
  gap: 1.3rem;
  margin-top: 1.35rem;
}

.registration-section {
  border: 1px solid rgba(27, 77, 216, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  padding: 1.2rem;
  box-shadow: 0 18px 34px rgba(12, 31, 55, 0.08);
}

.registration-section-heading {
  margin-bottom: 1rem;
}

.registration-section-heading h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.registration-section-heading p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.94rem;
}

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

.registration-field {
  min-width: 0;
}

.registration-field-full {
  grid-column: 1 / -1;
}

.registration-input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(27, 77, 216, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: #102949;
  padding: 0.9rem 1rem;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.registration-input:focus {
  outline: none;
  border-color: rgba(27, 77, 216, 0.55);
  box-shadow: 0 0 0 0.22rem rgba(27, 77, 216, 0.14);
}

.registration-textarea {
  min-height: 110px;
  resize: vertical;
}

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

.registration-choice-grid-single {
  margin-top: 1rem;
}

.registration-choice-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(27, 77, 216, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  box-shadow: 0 14px 26px rgba(12, 31, 55, 0.07);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.registration-choice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(12, 31, 55, 0.1);
}

.registration-choice-card.is-selected {
  border-color: rgba(27, 77, 216, 0.45);
  box-shadow: 0 20px 34px rgba(27, 77, 216, 0.14);
  background: linear-gradient(180deg, rgba(241, 246, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.registration-choice-input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  accent-color: var(--site-primary);
  flex: 0 0 auto;
}

.registration-choice-body {
  display: grid;
  gap: 0.35rem;
}

.registration-choice-body strong {
  color: #14345c;
  font-size: 1rem;
}

.registration-choice-body small {
  color: #59708d;
  font-size: 0.88rem;
  line-height: 1.55;
}

.registration-plan-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.registration-plan-card {
  border: 1px solid rgba(27, 77, 216, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
  padding: 1rem;
}

.registration-plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.registration-plan-header h4 {
  margin: 0;
  font-size: 1rem;
}

.registration-plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(27, 77, 216, 0.1);
  color: #17427b;
  font-size: 0.82rem;
  font-weight: 800;
}

.registration-slider-wrap {
  display: grid;
  gap: 0.85rem;
}

.registration-slider {
  width: 100%;
  accent-color: var(--site-primary);
}

.registration-slider-meta {
  display: grid;
  grid-template-columns: auto 110px auto;
  align-items: center;
  gap: 0.8rem;
  color: #56708f;
  font-size: 0.82rem;
}

.registration-count-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(27, 77, 216, 0.16);
  padding: 0.7rem 0.8rem;
  text-align: center;
  font-weight: 700;
  color: #15345e;
  background: #fff;
}

.registration-pricing-card {
  margin-top: 1rem;
  border-radius: 22px;
  padding: 1.15rem;
  background:
    radial-gradient(140% 160% at 100% 0%, rgba(18, 185, 129, 0.14), transparent 40%),
    radial-gradient(120% 160% at 0% 0%, rgba(27, 77, 216, 0.14), transparent 44%),
    linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(27, 77, 216, 0.16);
}

.registration-pricing-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.registration-pricing-kicker {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: var(--site-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-pricing-head h4 {
  margin: 0;
  font-size: 1.15rem;
}

.registration-total-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(27, 77, 216, 0.12);
  color: #17427b;
  font-size: 0.82rem;
  font-weight: 800;
}

.registration-pricing-list {
  display: grid;
  gap: 0.7rem;
}

.registration-pricing-list div,
.registration-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.registration-pricing-list span {
  color: #48617d;
}

.registration-pricing-list strong,
.registration-total-row strong {
  color: #102949;
}

.registration-total-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 77, 216, 0.16);
  font-size: 1.08rem;
  font-weight: 800;
}

.registration-submit {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  font-size: 1rem;
}

.registration-hint {
  margin-top: 0.5rem;
  color: #5d728c;
  font-size: 0.85rem;
}

.registration-error {
  margin-top: 0.55rem;
  color: #c62828;
  font-size: 0.84rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 991.98px) {
  .site-navbar {
    background: rgba(9, 18, 36, 0.92);
  }

  .site-brand-subtitle {
    font-size: 0.62rem;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

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

  .registration-intro {
    position: static;
  }

  .registration-title {
    max-width: 14ch;
  }

  .registration-card-head,
  .registration-pricing-head {
    flex-direction: column;
  }

  .registration-form-grid,
  .registration-choice-grid,
  .registration-plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .site-brand-subtitle {
    display: none;
  }

  .hero-section {
    padding-top: 5.8rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip-inner {
    padding: 0.85rem;
  }

  .trust-items span {
    font-size: 0.72rem;
  }

  .section-title {
    font-size: clamp(1.55rem, 6vw, 2.1rem);
  }

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

  .registration-alert-stack {
    padding-top: 5.3rem;
  }

  .registration-shell {
    padding-top: 0.75rem;
  }

  .registration-title {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
  }

  .registration-section,
  .registration-card,
  .registration-showcase {
    padding: 1rem;
  }

  .registration-slider-meta {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
