/* ==========================================================================
   REGISTRIO LANDING PAGE — DESIGN SYSTEM & COMPLETE STYLESHEET
   Stack: Vanilla CSS with CSS Custom Properties
   Methodology: BEM-like naming
   Approach: Mobile-first responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --color-bg-primary: #0A0E17;
  --color-bg-secondary: #111827;
  --color-bg-card: #1A2035;

  /* Borders */
  --color-border: #2A3550;
  --color-border-hover: #3D4F7A;

  /* Accent (Blue — 100% exact match across all buttons, text, icons, links) */
  --color-accent: #3B82F6;
  --color-accent-hover: #2563EB;
  --color-accent-glow: rgba(59, 130, 246, 0.25);
  --color-accent-light: #3B82F6;

  /* Text */
  --color-text-heading: #FFFFFF;
  --color-text-body: #9CA3AF;
  --color-text-muted: #6B7280;
  --color-text-accent: #3B82F6;

  /* Feedback */
  --color-success: #34D399;

  /* Gradients */
  --gradient-hero-top: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.10) 0%, transparent 60%);
  --glow-blue: radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);

  /* Spacing */
  --section-padding-y: 4rem;
  --section-padding-x: 1rem;
  --card-padding: 1.75rem;
  --card-radius: 12px;
  --btn-radius: 8px;
  --btn-radius-pill: 50px;
  --grid-gap: 1.5rem;
  --container-max: 1200px;

  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  :root {
    --section-padding-y: 5rem;
    --section-padding-x: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-padding-y: 6rem;
    --section-padding-x: 1.5rem;
    --card-padding: 2rem;
  }
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  color: var(--color-text-heading);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.8px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  max-width: 700px;
  line-height: 1.7;
}

.text-accent {
  color: var(--color-text-accent);
}

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

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  width: 100%;
}

.section {
  padding: 4.5rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .section {
    padding: 5.5rem 0;
  }
}

.section--alt {
  background-color: var(--color-bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__header p {
  margin: 1rem auto 0;
  color: var(--color-text-body);
  max-width: 650px;
  font-size: 1.05rem;
}

/* Section label (small uppercase text above heading) */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--btn-radius);
  padding: 0.9rem 1.8rem;
  transition: var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: #2563EB;
  color: #FFFFFF;
  border: 1px solid #2563EB;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: #1D4ED8;
  border-color: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 4px 35px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  border-color: var(--color-accent-hover);
  color: var(--color-accent-hover);
  background-color: rgba(59, 130, 246, 0.08);
}

.btn-large {
  padding: 1.2rem 2.8rem;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   5. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: contain;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-name {
  font-size: 1.52rem;
  font-weight: 800;
  color: var(--color-text-heading);
  letter-spacing: -0.5px;
  line-height: 1;
}

.navbar__logo-subtitle {
  font-size: 0.64rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  line-height: 1;
  margin-top: 3px;
  display: block;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
}

.navbar__links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.navbar__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-body);
  transition: color 0.2s ease;
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-text-heading);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta-wrapper {
  display: none;
}

.navbar__cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   5.1. NAVBAR DROPDOWN MENUS
   -------------------------------------------------------------------------- */
.navbar__dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 0.25rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.navbar__dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 200px;
  background-color: rgba(17, 24, 39, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 0.5rem 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  list-style: none;
}

.navbar__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-body);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navbar__dropdown-item:hover {
  background-color: rgba(59, 130, 246, 0.12);
  color: var(--color-text-heading);
  padding-left: 1.5rem;
}

/* Navbar positioning & layering */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767px) {
  .navbar {
    justify-content: center;
  }

  .navbar__logo {
    margin: 0 auto;
    z-index: 1006;
  }

  .navbar__menu-toggle {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1006;
  }
}

/* Mobile dropdown sublinks & groups */
.navbar__mobile-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.navbar__mobile-group-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0.35rem;
  margin-bottom: 0.15rem;
}

.navbar__mobile-sublink {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-heading);
  padding: 0.2rem 0.6rem;
  border-left: 2px solid var(--color-accent);
  transition: all 0.2s ease;
}

.navbar__mobile-sublink:hover {
  color: var(--color-accent-hover);
  border-left-color: var(--color-accent-hover);
}

/* Hamburger menu toggle */
.navbar__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1006;
}

.navbar__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-heading);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
}

.navbar__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: var(--color-accent);
}

.navbar__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: var(--color-accent);
}

/* Desktop navbar */
@media (min-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
    justify-content: space-between;
  }

  .navbar__logo {
    margin: 0;
  }

  .navbar__links {
    display: flex;
  }

  .navbar__cta-wrapper {
    display: block;
  }

  .navbar__menu-toggle {
    display: none;
  }
}

/* Mobile menu overlay — Senior Staggered Glass Overlay */
.navbar__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 14, 23, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  padding-top: 4.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  z-index: 1000;
  box-sizing: border-box;
}

.navbar__mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar__mobile-content {
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow-y: auto;
  flex-grow: 1;
}

/* Staggered entrance animation for menu items */
.navbar__mobile-content>* {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar__mobile-menu.active .navbar__mobile-content>*:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.navbar__mobile-menu.active .navbar__mobile-content>*:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.10s;
}

.navbar__mobile-menu.active .navbar__mobile-content>*:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.navbar__mobile-menu.active .navbar__mobile-content>*:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.20s;
}

.navbar__mobile-menu.active .navbar__mobile-content>*:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.navbar__mobile-menu.active .navbar__mobile-content>*:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.30s;
}

.navbar__mobile-menu .navbar__link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.navbar__mobile-menu .navbar__link:hover {
  color: var(--color-accent-hover);
}

.navbar__mobile-cta {
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

.navbar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.navbar__overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {

  .navbar__mobile-menu,
  .navbar__overlay {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 85vh;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 70%;
  background: var(--gradient-hero-top);
  pointer-events: none;
  z-index: 0;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-accent-light);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--btn-radius-pill);
  margin-bottom: 2rem;
}

.hero__badge-price {
  color: #ffffff;
  font-weight: 700;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero__title {
  margin-bottom: 1.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-body);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.15rem;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__trust span {
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   7. CARD COMPONENT
   -------------------------------------------------------------------------- */
.card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
  text-align: center;
}

.card__title {
  margin-bottom: 0.75rem;
  text-align: center;
}

.card__description {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  text-align: center;
}

.card__badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent-light);
  border-radius: var(--btn-radius-pill);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.card__link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: block;
  text-align: center;
}

.card__link:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* Process card (with decorative step number) */
.card--process {
  position: relative;
}

.card__step-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .card__step-number {
    font-size: 4rem;
  }
}

/* --------------------------------------------------------------------------
   8. TESTIMONIAL CARD
   -------------------------------------------------------------------------- */
.testimonial-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-align: center;
}

.testimonial-card__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-body);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
  text-align: center;
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--color-text-heading);
  font-size: 0.95rem;
  text-align: center;
}

.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-align: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .card,
  .testimonial-card {
    padding: 1.35rem 1.25rem;
  }

  .card__icon {
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
  }

  .card__title {
    font-size: 1.15rem;
  }

  .card__description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .testimonial-card__quote {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.15rem;
  }
}




/* --------------------------------------------------------------------------
   9. SPLIT LAYOUT (ACTE NECESARE & COSTURI)
   -------------------------------------------------------------------------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 3rem 0;
  text-align: left;
}

@media (min-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }
}

.split-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Col 1: Documente Necesare */
.split-col__title {
  color: var(--color-text-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.doc-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-bg-card);
  padding: 1.25rem;
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex: 1;
  text-align: left;
}

.doc-list__item:hover {
  transform: translateX(5px);
  border-color: var(--color-accent);
}

.doc-list__icon {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.doc-list__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.doc-list__title {
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  text-align: left;
}

.doc-list__desc {
  color: var(--color-text-body);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

/* Col 2: Costuri (Card) */
.cost-card {
  background-color: var(--color-bg-card);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  text-align: left;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--color-border);
  gap: 1rem;
}

.cost-row:last-of-type {
  border-bottom: none;
}

.cost-row__label {
  color: var(--color-text-body);
  font-size: 1rem;
  font-weight: 500;
}

.cost-row__value {
  color: var(--color-text-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  flex-shrink: 0;
  min-width: 90px;
}

.cost-row--total {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-border);
  border-bottom: none;
}

.cost-row--total .cost-row__label {
  color: var(--color-text-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.cost-row--total .cost-row__value {
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: 3.5rem var(--section-padding-x) 1.5rem;
}

.footer .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__grid--two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer__grid--two-col {
    grid-template-columns: 1.1fr 1fr;
  }
}

.footer__left,
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__contact-box {
  margin-top: 0.5rem;
}

.contact-icon {
  font-size: 1rem;
  line-height: 1;
}

.footer__brand-description {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.6;
  margin-top: 0.5rem;
  max-width: 340px;
  text-align: left;
}

@media (max-width: 767px) {
  .footer__brand-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__column-title {
  font-weight: 700;
  color: var(--color-text-heading);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.2px;
}

.footer__link {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-text-heading);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-body);
  padding: 0.35rem 0;
}

.footer__contact-item a {
  color: var(--color-text-body);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__contact-item a:hover {
  color: var(--color-accent-light);
}

/* ANPC Compliance Badges */
.footer__anpc-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.anpc-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 0.75rem 1.1rem;
  transition: var(--transition-base);
  text-decoration: none;
  max-width: 380px;
}

.anpc-badge:hover {
  border-color: var(--color-accent);
  background-color: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.anpc-badge__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.anpc-badge__text {
  display: flex;
  flex-direction: column;
}

.anpc-badge__sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.anpc-badge__main {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-heading);
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   11. SCROLL ANIMATIONS (Fade In)
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for cards */
.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

.fade-in-delay-6 {
  transition-delay: 0.6s;
}

/* --------------------------------------------------------------------------
   12. HIGHLIGHT TEXT IN CARDS
   -------------------------------------------------------------------------- */
.card__highlight {
  font-style: italic;
  color: var(--color-accent);
  font-size: 0.88rem;
  margin-top: 0.75rem;
  display: block;
}

/* --------------------------------------------------------------------------
   13. SELECTION STYLE
   -------------------------------------------------------------------------- */
::selection {
  background-color: rgba(59, 130, 246, 0.3);
  color: var(--color-text-heading);
}

/* --------------------------------------------------------------------------
   14. SCROLLBAR STYLING
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-border-hover);
}

/* --------------------------------------------------------------------------
   15. BLUE GLOW DECORATION (Bottom sections)
   -------------------------------------------------------------------------- */
.section--glow-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 40%;
  background: var(--glow-blue);
  pointer-events: none;
  z-index: 0;
}

.section--glow-bottom .container {
  position: relative;
  z-index: 1;
}