.elementor-47971 .elementor-element.elementor-element-c0c88d8 > .elementor-element-populated{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-fa1060d *//* Premium Modern Theme - Dental Landing Page (Blue/Purple/White) */
.adc-flow-page {
  --brand-primary: #734a94;       /* Lighter purple */
  --brand-secondary: #503266;     /* User suggested base */
  --brand-accent: #b77ce6;        /* Highlight purple */
  --brand-highlight: #ffffff;     /* Pure White */
  --brand-glow: rgba(80, 50, 102, 0.4);
  --brand-dark: #160d1c;          /* Deepest purple */
  --brand-darker: #1e1226;        /* Dark purple background */
  --brand-surface: #2d1c3a;       /* Surface purple */
  
  --text-main: #f8fafc;
  --text-muted: #d0bce6;          /* Muted purpleish text */
  
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.12);
  
  --radius-lg: 32px;
  --radius-md: 20px;
  
  --shadow-primary: 0 0 40px rgba(115, 74, 148, 0.15);
  --shadow-glow: 0 0 80px rgba(80, 50, 102, 0.15);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);

  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--brand-darker);
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Ambient Background Orbs */
.adc-flow-page::before,
.adc-flow-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 18s infinite alternate ease-in-out;
}

.adc-flow-page::before {
  top: -10%;
  left: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
}

.adc-flow-page::after {
  top: 40%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
  animation-delay: -7s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 60px) scale(1.05);
  }

  100% {
    transform: translate(-30px, 30px) scale(0.95);
  }
}

.adc-flow-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.adc-flow-page .container {
  width: min(1200px, 90vw);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.adc-flow-page section {
  padding: 80px 0;
  position: relative;
}

.adc-flow-page h1,
.adc-flow-page h2,
.adc-flow-page h3 {
  line-height: 1.15;
}

/* Reusable UI Components */
.text-accent {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand-accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(8px);
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 18px;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  margin-bottom: 16px;
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  from {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
  }

  to {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.35);
  }
}

.card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--brand-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.card:hover::before {
  opacity: 1;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  background: linear-gradient(180deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Header & Hero Area */
.hero {
  padding-top: 92px;
}

.hero-grid { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 980px; margin: 0 auto; gap: 0; }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.hero-grid h1 { font-family: "Playfair Display", serif; font-size: clamp(40px, 5vw, 68px); font-weight: 900; background: linear-gradient(180deg, #ffffff 20%, #e2e8f0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 10px 30px rgba(0,0,0,0.6); margin-top: 10px;}
.hero-grid .lead { max-width: 860px; margin: 30px 0 0; font-size: clamp(16px, 1.8vw, 18px); color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.small-pill { background: rgba(255,255,255,0.05); padding: 10px 22px; border-radius: 999px; font-size: 15px; font-weight: 500; border: 1px solid var(--glass-border); color: #f8fafc; }
.hero-actions { display: flex; gap: 16px; margin-top: 40px; justify-content: center; flex-wrap: wrap; width: 100%; }
.hero-actions.hero-actions-primary {
  margin-top: 36px;
  gap: 16px;
}

.hero-actions.hero-actions-primary .btn {
  min-height: 62px;
  padding-inline: 40px;
}

.hero-actions.hero-actions-primary .btn-primary {
  background: linear-gradient(135deg, #9e6cef, #7448be);
  box-shadow:
    0 16px 36px rgba(138, 89, 220, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-actions.hero-actions-primary .btn-primary:hover {
  box-shadow:
    0 20px 42px rgba(160, 109, 240, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-actions.hero-actions-primary .btn-secondary {
  background: rgba(28, 17, 42, 0.64);
  border-color: rgba(183, 151, 228, 0.3);
  color: rgba(255, 255, 255, 0.88);
}

.hero-stats-wrap {
  margin-top: 52px;
}

.hero-pills.hero-pills-late {
  margin-top: 22px;
  opacity: 0.88;
}

.hero-pills.hero-pills-late .small-pill {
  padding: 9px 18px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.protocol-box {
  text-align: center;
  padding: 40px;
}

.protocol-icon {
  font-size: 52px;
  margin-bottom: 20px;
  text-shadow: var(--shadow-glow);
}

.protocol-title {
  font-size: 20px;
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
  color: var(--brand-highlight);
}

.protocol-box p {
  font-size: 14px;
  color: var(--text-muted);
}

.protocol-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.protocol-badges span {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -10px;
  width: 1px;
  height: 80%;
  background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
}

.stat strong {
  display: block;
  background: linear-gradient(135deg, var(--brand-highlight), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.2;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 500;
}

/* Benefits Ribbon */
.benefits-ribbon {
  padding: 40px 0;
  background: rgba(59, 130, 246, 0.05);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.benefit-item h4 {
  color: var(--brand-highlight);
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.benefit-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Ce Este Section */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.ce-este h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.ce-este-p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}

.ce-este-p strong {
  color: #fff;
  font-weight: 500;
}

.highlight-banner {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  gap: 16px;
  align-items: center;
}

.highlight-banner h4 {
  font-size: 16px;
  color: var(--brand-highlight);
  margin-bottom: 4px;
}

.highlight-banner p {
  font-size: 13px;
  color: #cbd5e1;
}

.ce-este-list {
  padding: 40px;
}

.numbered-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.numbered-features li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.numbered-features .num {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
  box-shadow: var(--shadow-primary);
}

.numbered-features h4 {
  color: var(--brand-highlight);
  margin-bottom: 6px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.numbered-features p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Caz Real */
.before-after-container {
  max-width: 900px;
  margin: 40px auto;
  aspect-ratio: 16/9;
  background: #11131a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img-after {
  z-index: 1;
}

.ba-img-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid #fff;
  z-index: 2;
}

.ba-img-before-wrapper img {
  width: 200%;
  max-width: none;
}

.ba-slider-handle {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  color: var(--brand-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.ba-label {
  position: absolute;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}

.ba-label.left {
  left: 20px;
}

.ba-label.right {
  right: 20px;
}

.caz-real-footer {
  text-align: center;
  max-width: 800px;
  margin: 30px auto 0;
}

.caz-real-footer h3 {
  color: var(--brand-highlight);
  margin-bottom: 12px;
  font-size: 20px;
  font-family: "Playfair Display", serif;
}

.caz-real-footer p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Comparison Guide */
.comparison-tables {
  display: grid;
  align-items: stretch;
  margin-top: 40px;
  gap: 24px;
}

.comparison-tables.carousel-layout {
  grid-template-columns: minmax(250px, 0.9fr) minmax(320px, 1.08fr) minmax(250px, 0.9fr);
  align-items: center;
  perspective: 1200px;
}

.compare-card {
  --card-bg: linear-gradient(160deg, rgba(50, 29, 70, 0.98), rgba(37, 20, 55, 0.98));
  --card-border-color: rgba(166, 127, 221, 0.35);
  --card-title-color: #fbf8ff;
  --card-subtext-color: #dbc6f2;
  --card-copy-color: #d4c7e6;
  --card-divider-color: rgba(194, 166, 226, 0.22);
  --badge-bg: linear-gradient(135deg, #8e5dc7, #5b347f);
  --badge-color: #ffffff;

  padding: 40px 30px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-color: var(--card-border-color);
  background: var(--card-bg);
  color: var(--card-title-color);
  min-height: 100%;
  overflow: visible;
}

.compare-card.recommended {
  box-shadow: 0 24px 54px rgba(14, 8, 22, 0.6), 0 0 40px rgba(161, 115, 236, 0.28);
}

.comparison-tables.carousel-layout .compare-card {
  cursor: pointer;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    filter 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.comparison-tables.carousel-layout .main-card {
  order: 2;
  cursor: default;
  transform: translateY(-12px) scale(1.05);
  opacity: 1;
  z-index: 3;
}

.comparison-tables.carousel-layout .side-card {
  transform: translateY(18px) scale(0.92);
  opacity: 0.7;
  filter: saturate(0.82);
  z-index: 1;
}

.comparison-tables.carousel-layout .side-left {
  order: 1;
}

.comparison-tables.carousel-layout .side-right {
  order: 3;
}

.comparison-tables.carousel-layout .main-card:hover {
  transform: translateY(-16px) scale(1.07);
}

.comparison-tables.carousel-layout .side-card:hover,
.comparison-tables.carousel-layout .side-card:focus-within {
  transform: translateY(6px) scale(0.97);
  opacity: 0.92;
  filter: saturate(1);
  z-index: 2;
}

.comparison-tables.carousel-layout .compare-card:hover {
  border-color: var(--card-border-color);
  background: var(--card-bg);
}

.comparison-tables.carousel-layout .compare-card:focus-visible {
  outline: 2px solid rgba(245, 235, 255, 0.9);
  outline-offset: 4px;
}

.rec-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--badge-bg);
  color: var(--badge-color);
  font-size: 11px;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
}

.icon-lg {
  font-size: 40px;
  margin-bottom: 20px;
}

.compare-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
  color: var(--card-title-color);
}

.compare-card .subtext {
  display: block;
  font-size: 10px;
  color: var(--card-subtext-color);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-weight: bold;
}

.compare-block {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--card-divider-color);
  text-align: left;
}

.compare-block p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--card-copy-color);
  margin-top: 12px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.badge.positive {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.badge.warning {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.badge.ideal {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.theme-compozit {
  --card-bg: linear-gradient(165deg, #24123a 0%, #341a50 54%, #2d1747 100%);
  --card-border-color: rgba(154, 107, 226, 0.58);
  --card-title-color: #f8f1ff;
  --card-subtext-color: #ddc5fb;
  --card-copy-color: #e0d0f5;
  --card-divider-color: rgba(180, 137, 242, 0.24);
  --badge-bg: linear-gradient(135deg, #a271f8, #6a42a9);
  --badge-color: #fff;
}

.theme-ceramice {
  --card-bg: linear-gradient(168deg, #e8d5ff 0%, #d9bbfb 52%, #cdaaf2 100%);
  --card-border-color: rgba(115, 76, 167, 0.42);
  --card-title-color: #5a2f88;
  --card-subtext-color: #6a3d99;
  --card-copy-color: #5f437f;
  --card-divider-color: rgba(107, 74, 151, 0.2);
  --badge-bg: linear-gradient(135deg, #f8f1ff, #dabbfd);
  --badge-color: #5d348f;
  box-shadow: 0 16px 36px rgba(72, 42, 118, 0.26);
}

.theme-coroane {
  --card-bg: linear-gradient(160deg, #58458f 0%, #7b5abd 48%, #a676e0 100%);
  --card-border-color: rgba(218, 188, 255, 0.4);
  --card-title-color: #f5f1ff;
  --card-subtext-color: #dfcef9;
  --card-copy-color: #ece4fa;
  --card-divider-color: rgba(231, 214, 255, 0.25);
  --badge-bg: linear-gradient(135deg, #cfa8ff, #8f64d4);
  --badge-color: #ffffff;
  box-shadow: 0 16px 36px rgba(42, 22, 75, 0.4);
}

.theme-ceramice .badge.positive {
  background: rgba(15, 141, 95, 0.18);
  color: #0d704b;
}

.theme-ceramice .badge.warning {
  background: rgba(175, 112, 26, 0.2);
  color: #925911;
}

.theme-ceramice .badge.ideal {
  background: rgba(65, 80, 182, 0.18);
  color: #33439d;
}

.theme-ceramice .compare-link {
  background: rgba(94, 55, 145, 0.1);
  border-color: rgba(94, 55, 145, 0.34);
  color: #5f3790;
}

.theme-ceramice .compare-link:hover,
.theme-ceramice .compare-link:focus-visible {
  background: rgba(94, 55, 145, 0.18);
  border-color: rgba(94, 55, 145, 0.5);
}

.theme-coroane .badge.positive {
  background: rgba(184, 255, 228, 0.18);
  color: #d3ffe8;
}

.theme-coroane .badge.warning {
  background: rgba(255, 216, 127, 0.2);
  color: #ffe099;
}

.theme-coroane .badge.ideal {
  background: rgba(189, 213, 255, 0.2);
  color: #d8e6ff;
}

.compare-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.compare-link:hover,
.compare-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}

.compare-link-current {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.46);
}

.quote {
  font-style: italic;
  max-width: 700px;
  margin: 20px auto 0;
  color: #94a3b8;
  font-size: 16px;
}

/* Timeline Process */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
}

.timeline-item {
  text-align: center;
  width: 22%;
  position: relative;
  z-index: 2;
}

.t-circle {
  width: 60px;
  height: 60px;
  background: var(--brand-surface);
  border: 2px solid var(--brand-primary);
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  color: var(--brand-primary);
  box-shadow: var(--shadow-primary);
}

.timeline-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin-top: 30px;
}

.timeline-item h4 {
  color: var(--brand-highlight);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.timeline-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Locations */
.location-ribbon {
  background: rgba(139, 92, 246, 0.1);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin: 60px 0;
  backdrop-filter: blur(10px);
}

.location-ribbon .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.location-ribbon strong {
  color: var(--brand-accent);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.loc-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: #cbd5e1;
}

/* NOU: PRICING GRID DETALIAT */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
}

.price-box.wide {
  grid-column: span 2;
  padding: 30px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.price-box .price-info {
  flex: 1;
  text-align: left;
}

.price-box h5 {
  color: var(--brand-highlight);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}

.price-box .price {
  font-size: 13px;
  color: var(--brand-accent);
  margin-bottom: 6px;
}

.price-box .price strong {
  font-size: 24px;
  font-family: "Playfair Display", serif;
  color: #fff;
}

.price-box p {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ ACCORDION */
.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  padding: 20px;
  cursor: pointer;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item .arrow {
  font-size: 12px;
  color: var(--brand-accent);
  transition: transform 0.3s ease;
}

.faq-item[open] .arrow {
  transform: rotate(180deg);
}

.faq-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA FINAL & FOOTER */
.final-box {
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(88, 28, 135, 0.2), rgba(10, 11, 18, 0.9) 60%), url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="rgba(255,255,255,0.02)" fill-rule="evenodd"><circle cx="50" cy="50" r="1"></circle></g></svg>');
  text-align: center;
  padding: clamp(50px, 8vw, 80px) clamp(20px, 4vw, 40px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.final-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  animation: rotate 25s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.final-box h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--brand-highlight);
  position: relative;
  z-index: 1;
}

.final-box p {
  margin: 16px auto 0;
  max-width: 700px;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.footer-stats-bar {
  background: transparent;
  border: none;
  padding: 16px 0 6px;
  margin-top: 0;
}

.footer-stats {
  margin-inline: auto;
}

.footer-stats .stat strong {
  font-size: clamp(44px, 3.6vw, 72px);
}

/* Media Queries */
@media (max-width: 1080px) {

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

  .comparison-tables.carousel-layout {
    grid-template-columns: minmax(180px, 0.86fr) minmax(240px, 1fr) minmax(180px, 0.86fr);
    gap: 14px;
  }

  .comparison-tables.carousel-layout .main-card {
    transform: translateY(-8px) scale(1.02);
  }

  .comparison-tables.carousel-layout .side-card {
    transform: translateY(12px) scale(0.88);
  }

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

  .price-box.wide {
    grid-column: 1;
  }

}

@media (max-width: 768px) {
  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-grid .lead {
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-actions.left-align {
    justify-content: center;
  }

  .hero-stats-wrap {
    margin-top: 30px;
  }

  .hero-pills.hero-pills-late {
    margin-top: 16px;
    gap: 10px;
    opacity: 0.94;
  }

  .hero-pills.hero-pills-late .small-pill {
    font-size: 13px;
    padding: 8px 14px;
  }

  .hero-actions.hero-actions-primary {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions.hero-actions-primary .btn {
    width: 100%;
    min-height: 56px;
    padding-inline: 22px;
  }

  .two-col,
  .grid-3,
  .comparison-tables,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .comparison-tables.carousel-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .comparison-tables.carousel-layout .compare-card {
    opacity: 1;
    filter: none;
    transform: none !important;
  }

  .comparison-tables.carousel-layout .main-card {
    order: 1;
  }

  .comparison-tables.carousel-layout .side-left {
    order: 2;
  }

  .comparison-tables.carousel-layout .side-right {
    order: 3;
  }

  .comparison-tables.carousel-layout .rec-badge {
    top: 12px;
    left: 16px;
    transform: none;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 20px 10px;
  }

  .stats::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  }

  .stat {
    padding: 16px 8px;
  }

  .stat::after {
    display: none;
  }

  .stat:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    display: block;
    background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
  }

  .stat strong {
    font-size: clamp(54px, 10vw, 76px);
    line-height: 1;
  }

  .stat span {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
    font-weight: 700;
  }

  .footer-stats {
    width: 100%;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .timeline-line {
    width: 2px;
    height: 40px;
    margin: 0 auto 30px;
    background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
  }
}/* End custom CSS */