:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface2: #eef1f8;
  --border: rgba(0, 0, 0, 0.08);
  --accent: #2563eb;
  --accent2: #0891b2;
  --text: #0f172a;
  --muted: #64748b;
  --green: #16a34a;
  --gold: #d97706;
}

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

html {
  scroll-behavior: smooth;
}

/*body {*/
/*  font-family: 'DM Sans', sans-serif;*/
/*  background: var(--bg);*/
/*  color: var(--text);*/
/*  line-height: 1.6;*/
/*  overflow-x: hidden;*/
/*}*/

.main-wrapper > .container {
  max-width: 100%;
}

.step::before {
  display:none;
}

.main-wrapper {
  padding-bottom: 0;
}
footer {
  margin-top: -5px;
}



h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

/* NAV */
/*nav {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  z-index: 100;*/
/*  padding: 0 5%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  height: 68px;*/
/*  background: rgba(245, 247, 251, 0.92);*/
/*  backdrop-filter: blur(16px);*/
/*  border-bottom: 1px solid var(--border);*/
/*}*/

/*.logo {*/
/*  font-family: 'Sora', sans-serif;*/
/*  font-weight: 800;*/
/*  font-size: 1.3rem;*/
/*  letter-spacing: -0.02em;*/
/*}*/

/*.logo span {*/
/*  color: var(--accent);*/
/*}*/

.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* HERO */
.hero {
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  /*padding: 120px 5% 80px;*/
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 70%),
  radial-gradient(ellipse 40% 50% at 20% 70%, rgba(8, 145, 178, 0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1d4ed8;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*h1 {*/
/*  font-size: clamp(2.4rem, 5vw, 4rem);*/
/*  font-weight: 800;*/
/*  letter-spacing: -0.03em;*/
/*  line-height: 1.1;*/
/*  animation: fadeUp 0.6s 0.1s ease both;*/
/*  max-width: 820px;*/
/*}*/

.accent-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin-top: 20px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: var(--surface);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat-item {
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

/* SECTION COMMON */
section {
  padding: 40px 5%;
}

.container {
  /*max-width: 1100px;*/
  margin: 0 auto;
}

.section-tag {
  /*font-size: 0.75rem; */
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

/* PAIN POINTS */
.pain-section {
  background: var(--surface);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.pain-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s;
}

.pain-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
}

.pain-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* WHAT YOU GET */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.25);
  background: var(--surface2);
}

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* PROCESS */
.process-section {
  background: var(--surface);
}

.process-steps {
  margin-top: 56px;
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
  /*padding-bottom: 48px;*/
  margin-bottom: 20px;
}

/*.step:last-child {*/
/*  padding-bottom: 0;*/
/*}*/

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-line {
  width: 2px;
  flex: 1;
  margin-top: 8px;
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.03));
}

.step:last-child .step-line {
  display: none;
}

.step-content {
  padding: 10px 0 0 24px;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-duration {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent2);
  background: rgba(6, 182, 212, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.04) 0%, var(--surface) 60%);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px rgba(37, 99, 235, 0.12);
}

.plan-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-price {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;

}

.plan-price .from {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  padding-right: 10px;
  display: inline-block;
}

.plan-price .currency {
  font-size: 1.4rem;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-features li.muted-feat {
  color: var(--muted);
}

.plan-features li.muted-feat::before {
  content: '—';
  color: var(--muted);
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
  margin-top: auto;
}

.plan-cta.primary {
  background: var(--accent);
  color: #fff;
}

.plan-cta.primary:hover {
  background: #2563eb;
}

.plan-cta.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.plan-cta.outline:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: var(--surface2);
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 28px;
}

.pricing-note a {
  color: var(--accent);
  text-decoration: none;
}

/* PORTFOLIO */
.portfolio-section {
  background: var(--surface);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.portfolio-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
}

.portfolio-thumb {
  /*height: 200px;*/
  /*background: linear-gradient(135deg, #1a2340 0%, #0f1829 100%);*/
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 10px 10px 0;

}

.portfolio-thumb img {
  max-width: 100%;
  border-radius: 8px 8px 0 0;
}


.portfolio-thumb-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.thumb-mockup {
  width: 80%;
  height: 80%;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  overflow: hidden;
}

.thumb-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.07);
}

.thumb-bar.accent {
  background: rgba(37, 99, 235, 0.3);
  width: 60%;
}

.thumb-grid-row {
  display: flex;
  gap: 6px;
}

.thumb-block {
  flex: 1;
  height: 40px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-body {
  padding: 24px;
}

.portfolio-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.portfolio-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.portfolio-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.portfolio-metrics {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.metric {
  font-size: 0.8rem;
}

.metric strong {
  color: var(--green);
  font-weight: 700;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
}

.author-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* GUARANTEES */
.guarantees-section {
  background: var(--surface);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.guarantee-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface2);
  transition: border-color 0.2s;
}

.guarantee-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
}

.guarantee-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.guarantee-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

/* FAQ */
.faq-list {
  margin-top: 50px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  user-select: none;
  transition: background 0.2s;
  gap: 16px;
}

.faq-question:hover {
  background: var(--surface2);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(37, 99, 235, 0.08);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* CTA SECTION */
.cta-section {
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #eff6ff 0%, #f5f7fb 60%);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-input {
  flex: 1;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input:focus {
  border-color: var(--accent);
}

.cta-input::placeholder {
  color: var(--muted);
}

.cta-trust {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* FOOTER */
footer {
  padding: 40px 5%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.8rem;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* UTILS */
.text-center {
  text-align: center;
}

.mt-auto {
  margin-top: auto;
}

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

.highlight-green {
  color: var(--green);
}

/* WHY DRUPAL */
.why-drupal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.why-drupal-text .section-sub {
  max-width: 100%;
}

.drupal-points {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drupal-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
}

.dp-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dp-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.dp-text span {
  color: var(--muted);
  font-size: 0.85rem;
}

.drupal-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.dv-row:last-child {
  border-bottom: none;
}

.dv-label {
  color: var(--muted);
}

.dv-bar {
  height: 6px;
  border-radius: 4px;
  background: rgba(37, 99, 235, 0.08);
  flex: 1;
  margin: 0 16px;
  position: relative;
  overflow: hidden;
}

.dv-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.dv-val {
  font-weight: 600;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .why-drupal {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 28px;
  }

  nav {
    padding: 0 4%;
  }

  .hero, section {
    /*padding: 80px 4%;*/
  }

  .hero {
    /*padding-top: 100px;*/
  }
}
