:root {
  --orange: #f5821f;
  --orange-dark: #d66a13;
  --orange-soft: #ffd9b8e6;
  --cream: #fffaf1;
  --paper: #ffffff;
  --dark: #111111;
  --gray: #404040;
  --light-gray: #f5f3ef;
  --green: #247539;
  --purple: #5c328c;
  --purple-soft: #f1ebfc;
  --green-soft: #d7fada;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 12px rgba(17, 17, 17, 0.03);
  --shadow: 0 12px 32px rgba(17, 17, 17, 0.05);
  --shadow-lg: 0 20px 48px rgba(17, 17, 17, 0.08);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark);
  background: var(--cream);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.section-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
}

@media (max-width: 768px) {
  .section-shell { padding: 60px 24px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255, 250, 241, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.logo-badge {
  padding: 3px 8px;
  color: #fff;
  background: var(--orange);
  border-radius: 6px;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 800;
  vertical-align: middle;
}

.nav {
  display: flex;
  gap: 32px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14.5px; 
  font-weight: 600;
}

.nav a {
  color: var(--gray, #414141);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--dark, #111111);
}

.cart {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

@media (max-width: 768px) {
  .site-header { padding: 16px 24px; }
  .nav { display: none; }
}

.hero-visual {
position: relative;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.slider-container {
position: relative;
width: 100%;
max-width: 440px;
margin: 0 auto;
}

.slider-wrapper {
position: relative;
width: 100%;
min-height: 580px;
display: flex;
justify-content: center;
align-items: center;
}
.hero-copy{
padding-bottom:20px;
}
.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transform: scale(0.96);
transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0.4s;
}

.slide.active {
opacity: 1;
visibility: visible;
transform: scale(1);
position: relative;
}

.infographic-mockup img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 40px rgba(17, 17, 17, 0.12);
}

.slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--paper, #ffffff);
color: var(--dark, #111111);
border: 2px solid rgba(17, 17, 17, 0.08);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: all 0.2s ease;
}

.slider-arrow:hover {
background: var(--dark, #111111);
color: #ffffff;
border-color: var(--dark, #111111);
box-shadow: 0 6px 16px rgba(17, 17, 17, 0.2);
}

.prev-arrow {
left: -24px;
}

.next-arrow {
right: -24px;
}

.slider-arrow.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}

@media (max-width: 480px) {
.prev-arrow { left: 4px; }
.next-arrow { right: 4px; }
.slider-wrapper { min-height: 460px; }
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 40px; }
}

.eyebrow {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  background: rgba(245, 130, 31, 0.08);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
}

h1 {
  font-size: clamp(38px, 5.5vw, 54px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 32px;
}

.hero-pills, .trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .hero-pills, .trust-row { justify-content: center; }
}

.hero-pills span, .trust-row span {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-sm);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-actions { justify-content: center; }
}

.btn {
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.1);
}

.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { background: var(--paper); border: 1px solid rgba(17, 17, 17, 0.12); color: var(--dark); }
.btn-ghost:hover { border-color: var(--dark); background: var(--light-gray); }
.btn-purple { background: var(--purple); color: white; }
.btn-success { background: var(--green); color: white; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

.feature-strip div {
  padding: 24px;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  box-shadow: var(--shadow);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
}

.panel {
  background: var(--paper);
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-shadow: var(--shadow);
}

.compact-guide {
  background: var(--orange-soft);
  border: 1px solid rgba(245, 130, 31, 0.1);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  padding-left: 32px;
  position: relative;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--green);
  font-weight: 900;
  background: var(--green-soft);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service {
  background: var(--orange-soft);
  padding: 38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 130, 31, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.service.purple { 
  background: var(--purple-soft); 
  border-color: rgba(109, 62, 161, 0.05);
}

.service h3 { 
  font-size: 26px; 
  font-weight: 800;
  margin-bottom: 12px; 
}

.service strong { 
  display: block; 
  font-size: 38px; 
  font-weight: 900;
  margin: 24px 0; 
  letter-spacing: -0.02em;
}

.service-list { 
  padding-left: 20px; 
  margin-bottom: 32px; 
  display: grid;
  gap: 8px;
  color: var(--gray);
}

.action-group {
display: flex;
gap: 60px;
flex-wrap: wrap;
margin-top: auto;
padding-top: 24px;
}

@media (max-width: 480px) {
.action-group {
  flex-direction: column;
  width: 100%;
}
.action-group .btn {
  width: 100%;
}
}

.btn-email {
background: var(--paper, #ffffff);
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 14px 24px;
border-radius: 10px;
font-weight: 700;
font-size: 15px;
text-decoration: none;
box-shadow: var(--shadow-sm);
transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-email svg {
transition: transform 0.2s ease;
}

.btn-email-orange {
color: var(--orange-dark);
border: 2px solid var(--orange);
}

.btn-email-orange:hover {
background: var(--orange);
color: #ffffff;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(245, 130, 31, 0.25);
}

.btn-email-purple {
color: var(--purple);
border: 2px solid var(--purple);
}

.btn-email-purple:hover {
background: var(--purple);
color: #ffffff;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(109, 62, 161, 0.25);
}

.btn-email:hover svg {
transform: translateX(2px) scale(1.05);
}

.green-card {
background: #f0fdf4 !important;
border: 1px solid #bbf7d0 !important;
box-shadow: 0 10px 30px rgba(22, 163, 74, 0.05) !important;
}

.score-card-layout {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 40px;
align-items: center;
padding: 40px;
border-radius: 16px;
}

.score-text-side {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.score-visual-side {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}

.radial-progress-container {
position: relative;
width: 160px;
height: 160px;
display: flex;
align-items: center;
justify-content: center;
}

.progress-ring {
transform: rotate(-90deg);
transform-origin: 50% 50%;
}

.progress-ring__circle {
stroke-dasharray: 439.82;
stroke-dashoffset: 439.82;
transition: stroke-dashoffset 1.8s cubic-bezier(0.1, 1, 0.1, 1);
}

.score-number-center {
position: absolute;
font-weight: 900;
color: #111827;
display: flex;
align-items: baseline;
}

#scoreCounter {
font-size: 46px;
line-height: 1;
}

.score-max {
font-size: 16px;
color: #166534;
font-weight: 700;
margin-left: 2px;
}

.score-badge {
margin-top: 16px;
font-size: 12px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #15803d;
background: #dcfce7;
padding: 6px 14px;
border-radius: 20px;
}

@media (max-width: 768px) {
.score-card-layout {
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
  padding: 30px 20px;
}
.score-text-side {
  align-items: center;
}
}
.buy-card-modern {
background: linear-gradient(135deg, #111827 0%, #030712 100%);
color: #ffffff;
border-radius: 16px;
padding: 48px 56px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
position: relative;
overflow: hidden;
}

.buy-card-modern::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(247, 196, 135, 0.08) 0%, transparent 70%);
pointer-events: none;
}

.buy-content-side {
max-width: 60%;
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
}

.eyebrow-accent {
color: #f7c487;
font-size: 12px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 12px;
}

.buy-card-modern h2 {
color: #ffffff !important;
font-size: 28px;
font-weight: 800;
line-height: 1.3;
margin-bottom: 12px;
}

.buy-description {
color: #9ca3af;
font-size: 16px;
line-height: 1.5;
margin: 0;
}

.buy-action-side {
flex-shrink: 0;
}

.btn-glow {
position: relative;
transition: all 0.3s ease;
box-shadow: 0 4px 14px rgba(247, 196, 135, 0.3);
}

.btn-glow:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(247, 196, 135, 0.5);
}

@media (max-width: 768px) {
.buy-card-modern {
  flex-direction: column;
  text-align: center;
  padding: 40px 24px;
  gap: 28px;
}

.buy-content-side {
  max-width: 100%;
  align-items: center;
  text-align: center;
}

.buy-card-modern h2 {
  font-size: 24px;
}

.buy-action-side {
  width: 100%;
}

.buy-action-side .btn {
  display: block;
  width: 100%;
  text-align: center;
}
}
.donation-badge {
display: flex;
align-items: flex-start;
gap: 12px;
margin-top: 24px;
padding: 12px 16px;
background: rgba(247, 196, 135, 0.06);
border-left: 3px solid #f7c487;
border-radius: 4px 12px 12px 4px;
max-width: 90%;
}

.donation-badge span {
font-size: 14px;
line-height: 1.4;
color: #e5e7eb;
}

.donation-badge strong {
color: #f7c487;
}

.donation-badge svg {
flex-shrink: 0;
margin-top: 2px;
}

.action-subtext {
font-size: 12px;
color: #9ca3af;
text-align: center;
margin-top: 10px;
font-weight: 600;
}

@media (max-width: 768px) {
.donation-badge {
  max-width: 100%;
  margin-top: 16px;
  text-align: left;
}
}
 .about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.about-container {
  width: 100%;
}

.about-header {
  text-align: left;
  max-width: 800px;
  margin: 0 0 48px 0;
}

.about-badge {
  background: var(--orange-soft);
  color: var(--orange-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.about-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark);
}

.about-lead {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-shadow: var(--shadow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
  border-color: rgba(245, 130, 31, 0.2);
}

.card-icon {
  color: var(--orange);
  background: var(--orange-soft);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.about-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.about-social {
  text-align: left;
  border-top: 1px solid var(--light-gray);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.about-social span {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  background: var(--paper);
  color: var(--dark);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn svg {
  transition: transform 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.15);
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.social-btn.li-btn:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-btn.ig-btn:hover {
  background: #e1306c;
  border-color: #e1306c;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .contact-section { grid-template-columns: 1fr; }
}
.contact-us {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.contact-us h2 {
font-size: clamp(28px, 4vw, 38px);
line-height: 1.2;
font-weight: 900;
letter-spacing: -0.02em;
margin: 0;
}

.lead-form {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius);
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(17, 17, 17, 0.03);
}

.lead-form label {
  font-weight: 700;
  font-size: 14px;
  display: grid;
  gap: 8px;
}

.lead-form input, .lead-form select {
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17, 17, 17, 0.12);
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  transition: var(--transition);
}

.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05);
}

.faq-section h2 { text-align: center; margin-bottom: 40px; }

details { 
  background: var(--paper); 
  margin-bottom: 16px; 
  border-radius: var(--radius-sm); 
  border: 1px solid rgba(17, 17, 17, 0.05); 
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

details[open] {
  box-shadow: var(--shadow);
  border-color: rgba(17, 17, 17, 0.15);
}

summary { 
  padding: 20px; 
  font-weight: 700; 
  cursor: pointer; 
  outline: none;
  user-select: none;
}

details p { 
  padding: 0 20px 20px 20px; 
  margin: 0; 
  color: var(--gray); 
  font-size: 15px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.30fr 0.70fr;
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .cart-layout { grid-template-columns: 1fr; }
}
.summary-card{
  height: 30rem;
}
.payments{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fa-solid{
  padding:2px;
}
.cart-card, .summary-card {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-shadow: var(--shadow);
}

.cart-table-head {
  display: grid;
  grid-template-columns: 1fr 100px 100px 40px;
  font-weight: 800;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .cart-table-head { display: none; }
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr 100px 100px 40px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
}

@media (max-width: 600px) {
  .cart-item { 
    grid-template-columns: 1fr; 
    gap: 16px; 
    text-align: center; 
    padding: 32px 0;
  }
  .product-info { flex-direction: column; }
}

.cart-anchor-modern {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
padding: 8px;
border-radius: 50%;
color: var(--dark, #111111);
transition: all 0.2s ease;
}

.cart-anchor-modern:hover {
color: var(--orange, #f7c487);
background: rgba(17, 17, 17, 0.04);
transform: translateY(-1px);
}

.cart-icon-wrapper {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
}

.cart-svg {
display: block;
}

.cart-bubble-modern {
position: absolute;
top: -4px;
right: -4px;
background: var(--orange, #f7c487);
color: #111111;
font-size: 10px;
font-weight: 800;
min-width: 16px;
height: 16px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 4px;
border: 2px solid #ffffff;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
pointer-events: none;
transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-bubble-modern.bump {
transform: scale(1.3);
}
.product-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 700;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #ccc;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.remove-btn:hover { color: #d9422c; transform: scale(1.1); }

.upsell-section { 
  margin-top: 48px; 
  border-top: 2px dashed rgba(17, 17, 17, 0.1); 
  padding-top: 32px; 
}

.upsell-section h2 { 
  font-size: 20px; 
  font-weight: 800;
  margin-bottom: 20px;
}

.upsell-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cream);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(17, 17, 17, 0.03);
}
.purple{
  background: var(--purple-soft);
}

@media (max-width: 500px) {
  .upsell-card { flex-direction: column; text-align: center; gap: 12px; }
}

.upsell-details { flex: 1; }
.upsell-details h3 { margin: 0; font-size: 16px; font-weight: 700; }
.upsell-details p { margin: 4px 0 0; font-size: 13px; color: var(--gray); }

.summary-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.summary-row, .summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 600;
}

.summary-total { 
  font-size: 22px; 
  font-weight: 900; 
  border-bottom: none; 
  padding-top: 24px;
}

.secure-copy { 
  font-size: 12px; 
  text-align: center; 
  color: var(--gray); 
  margin: 16px 0; 
}

.is-disabled { 
  opacity: 0.4; 
  pointer-events: none; 
}

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark);
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 1000;
}

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

.hidden { display: none !important; }

.site-footer {
  background: #f2eee5;
  padding: 64px 24px;
  margin-top: 80px;
  border-top: 1px solid rgba(17, 17, 17, 0.05);
}

.site-footer strong {
  color:var(--orange);
}
.site-footer p{
  font-weight: bold;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.copyright { 
  text-align: center; 
  margin-top: 48px; 
  font-size: 14px; 
  color: var(--gray); 
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.quantity-control {
display: inline-flex;
align-items: center;
background: rgba(17, 17, 17, 0.04);
border: 1px solid rgba(17, 17, 17, 0.08);
border-radius: 30px;
padding: 4px;
gap: 4px;
}

.qty-btn {
width: 28px;
height: 28px;
border-radius: 50%;
border: none;
background: #ffffff;
color: var(--dark, #111111);
font-size: 16px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
transition: all 0.2s ease;
}

.qty-btn:hover {
background: var(--dark, #111111);
color: #ffffff;
}

.qty-btn:active {
transform: scale(0.92);
}

.qty-number {
font-size: 14px;
font-weight: 800;
min-width: 24px;
text-align: center;
color: var(--dark, #111111);
}

.cart-item-row {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
align-items: center;
padding: 16px 0;
border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.cart-table-head, 
.cart-item {
display: grid !important;
grid-template-columns: 2fr 1.2fr 1fr;
align-items: center;
gap: 20px;
}

.cart-table-head {
border-bottom: 2px solid rgba(17, 17, 17, 0.08);
padding-bottom: 12px;
margin-bottom: 8px;
font-weight: 700;
color: var(--gray, #666666);
}

.cart-item .product-info { grid-column: 1; }
.cart-item .quantity-control { grid-column: 2; justify-self: start; }
.cart-item .line-total { grid-column: 3; text-align: left; }

.cart-item {
position: relative;
padding: 20px 0;
border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.cart-item .remove-btn {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}

.upsell-icon-svg {
width: 40px;
height: 40px;
border-radius: 8px;
background: rgba(17, 17, 17, 0.04);
color: #ffc885;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.upsell-icon-svg.purple-icon {
background: rgba(109, 62, 161, 0.08);
color: #6d3ea1;
}

@media (max-width: 600px) {
.cart-table-head {
  display: none !important;
}
.cart-item {
  grid-template-columns: 1fr !important;
  gap: 16px;
  text-align: center;
}
.cart-item .quantity-control {
  justify-self: center;
}
.cart-item .line-total {
  text-align: center;
}
}
.cart-item .product-info {
display: flex;
align-items: center;
gap: 16px;
}

.product-text-details {
display: flex;
flex-direction: column;
gap: 6px;
text-align: left;
}

.product-text-details h3 {
margin: 0;
font-size: 18px;
font-weight: 700;
color: var(--dark, #111111);
}

.product-item-desc {
margin: 0;
font-size: 14px;
line-height: 1.4;
color: #4b5563;
}

.product-item-meta {
font-size: 12px;
color: var(--gray, #6b7280);
font-weight: 500;
}

.cart-item-icon-container {
width: 48px;
height: 48px;
border-radius: 10px;
background: rgba(17, 17, 17, 0.04);
color: #ffc885;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.cart-item-icon-container.purple-icon {
background: rgba(109, 62, 161, 0.08);
color: #6d3ea1;
}

.cart-item-image {
width: 48px;
height: 48px;
object-fit: cover;
border-radius: 8px;
border: 1px solid rgba(17, 17, 17, 0.05);
flex-shrink: 0;
}
.upsell-section h2 {
display: flex;
align-items: center;
gap: 10px;
font-size: 22px;
font-weight: 700;
margin-bottom: 20px;
}

.next-step-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.next-step-card:hover {
  transform: translateY(-4px) scale(1.005);
  border-color: var(--orange, #f7c487);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.04), 
              0 0 20px rgba(247, 196, 135, 0.15);
}

.next-step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 65%;
}

.next-step-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark, #111111);
  margin: 0;
  letter-spacing: -0.02em;
}

.next-step-content p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #555555;
  margin: 0;
}

.eyebrow-accent {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-dark, #d99343);
}

.btn-small.next-step-btn {
  padding: 10px 20px !important;
  font-size: 14px !important;
  height: auto !important;
  min-height: 42px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.btn-small.next-step-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .next-step-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }
  
  .next-step-content {
    max-width: 100%;
  }
  
  .btn-small.next-step-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* Management stări pași modal */
.modal-workflow-step { display: none; }
.modal-workflow-step.active { display: block; }

/* Zona interactivă de drag and drop fișier */
.custom-drop-zone {
  border: 2px dashed #bbf7d0;
  background: #f0fdf4;
  padding: 35px 20px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.custom-drop-zone:hover {
  background: #e6fced;
  border-color: #16a34a;
}

/* Caseta documentului și a laserului animat */
.laser-scan-box {
  position: relative;
  width: 130px;
  height: 160px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin: 25px auto;
  overflow: hidden;
  padding: 15px;
}
.laser-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #16a34a;
  box-shadow: 0 0 10px #16a34a, 0 0 4px #16a34a;
  animation: laserMoving 2s linear infinite;
}
.fake-doc-lines .f-line {
  height: 6px;
  background: #e5e7eb;
  margin-bottom: 12px;
  border-radius: 3px;
}
.fake-doc-lines .f-line.short { width: 45%; }
.fake-doc-lines .f-line.medium { width: 75%; }

@keyframes laserMoving {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Caseta de feedback din etapa finală */
.score-advice-box {
  background: #f9fafb;
  border-left: 4px solid #16a34a;
  padding: 15px;
  border-radius: 0 8px 8px 0;
  margin-top: 15px;
}

/* Structura de container a modalului general (afișat flex doar la .is-open) */
.cv-modal-shell {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.cv-modal-shell.is-open { display: flex; }
.cv-modal-content-box {
  background: white; padding: 35px 30px; border-radius: 16px;
  width: 90%; max-width: 440px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}
.cv-modal-close-btn {
  position: absolute; top: 12px; right: 20px; font-size: 26px; cursor: pointer; color: #9ca3af; transition: color 0.2s;
}
.cv-modal-close-btn:hover { color: #1f2937; }

/* Starea butonului dezactivat până la urcarea fișierului */
.btn-success:disabled {
  background: #cbd5e1 !important; color: #64748b !important; cursor: not-allowed;
}