/* ===== VARIABLES ===== */
:root {
  --accent: #6c8aff;
  --accent-hover: #5570e6;
  --green: #34d399;
  --green-hover: #2bb584;
  --orange: #f59e0b;
  --red: #ef4444;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.1);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 32px;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__icon {
  font-size: 1.4rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header__link:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.header__link--cta {
  background: var(--accent);
  color: var(--white) !important;
  margin-left: 8px;
}
.header__link--cta:hover {
  background: var(--accent-hover) !important;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hamburger active state */
.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, #eef2ff 100%);
}

.hero__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero__analyzer {
  margin-bottom: 16px;
}

.analyzer-form {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.analyzer-form__input {
  flex: 1;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: var(--font);
  border: none;
  outline: none;
  background: var(--white);
  color: var(--gray-800);
}
.analyzer-form__input::placeholder {
  color: var(--gray-400);
}

.analyzer-form__btn {
  padding: 16px 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.analyzer-form__btn:hover {
  background: var(--accent-hover);
}

.hero__proof {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* Analyzer result */
.analyzer-result {
  display: none;
  max-width: 560px;
  margin: 32px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.analyzer-result.visible {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.analyzer-result__loading {
  display: none;
}
.analyzer-result__loading.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--gray-500);
}

.analyzer-result__content {
  display: none;
}
.analyzer-result__content.visible {
  display: block;
}

.analyzer-result__scores {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}

.analyzer-result__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.analyzer-result__value {
  font-size: 2.5rem;
  font-weight: 800;
}
.analyzer-result__score--bad .analyzer-result__value { color: var(--red); }
.analyzer-result__score--ok .analyzer-result__value { color: var(--orange); }
.analyzer-result__score--good .analyzer-result__value { color: var(--green); }

.analyzer-result__label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.analyzer-result__msg {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section:nth-child(even) {
  background: var(--gray-50);
}

.section__title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section__title + .section__subtitle {
  margin-top: 0;
}

.section__title:not(:has(+ .section__subtitle)) {
  margin-bottom: 48px;
}

/* ===== PROBLEMS ===== */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.problem-card__icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.problem-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.problem-card__text {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CASE STUDIES ===== */
.case-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.case-card__header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-card__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
}

.case-card__tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  background: #eef2ff;
  padding: 4px 12px;
  border-radius: 20px;
}

.case-card__body {
  padding: 32px;
}

.case-card__comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.case-card__side {
  flex: 1;
  text-align: center;
}

.case-card__side-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.case-card__side--before .case-card__side-title { color: var(--red); }
.case-card__side--after .case-card__side-title { color: var(--green); }

.case-card__circles {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.case-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 200px;
  margin: 0 auto;
}

.case-card__metrics li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
}

.case-card__metrics li span { color: var(--gray-500); }
.metric--bad { color: var(--red) !important; }
.metric--good { color: var(--green) !important; }

.case-card__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ===== SCORE CIRCLES ===== */
.score-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.score-circle svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.score-circle__bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 6;
}

.score-circle__fg {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-circle__value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.score-circle__label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 8px;
}

/* Score colors */
.score--green .score-circle__fg { stroke: var(--green); }
.score--green .score-circle__value { color: var(--green); }
.score--orange .score-circle__fg { stroke: var(--orange); }
.score--orange .score-circle__value { color: var(--orange); }
.score--red .score-circle__fg { stroke: var(--red); }
.score--red .score-circle__value { color: var(--red); }

/* ===== PROCESS ===== */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: none;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process-step__text {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.pricing-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  display: block;
}

.pricing-card__ref {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 24px;
}

.pricing-card__features li {
  padding: 6px 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card__features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-card .btn {
  width: 100%;
}

/* Pricing add-on */
.pricing__addon {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 32px;
}

.pricing__addon-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.pricing__addon-info {
  flex: 1;
}

.pricing__addon-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.pricing__addon-info p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.pricing__addon-price {
  text-align: center;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about__inner {
  max-width: 680px;
  margin: 0 auto;
}

.about__content {
  text-align: center;
}

.about__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.about__role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.about__bio {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: color var(--transition);
}
.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
}

.faq-item__answer p {
  padding: 0 0 20px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.contact__email-btn {
  border-color: var(--gray-300);
  color: var(--gray-600);
}
.contact__email-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108, 138, 255, 0.15);
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: var(--gray-400);
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__submit {
  align-self: flex-start;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.footer p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__grid .pricing-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: var(--shadow-lg);
  }

  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__hamburger {
    display: flex;
  }

  .header__link--cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .analyzer-form {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .analyzer-form__input {
    border-bottom: 1px solid var(--gray-200);
  }

  .analyzer-form__btn {
    border-radius: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section__title {
    font-size: 1.75rem;
  }

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

  .case-card__comparison {
    flex-direction: column;
    gap: 16px;
  }

  .case-card__arrow {
    transform: rotate(90deg);
  }

  .case-card__body {
    padding: 24px 16px;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing__grid .pricing-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .pricing__addon-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form__submit {
    align-self: stretch;
  }

  .score-circle {
    width: 96px;
    height: 96px;
  }
  .score-circle svg {
    width: 96px;
    height: 96px;
  }
  .score-circle__value {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.55rem;
  }

  .case-card__circles {
    gap: 16px;
  }

  .score-circle {
    width: 80px;
    height: 80px;
  }
  .score-circle svg {
    width: 80px;
    height: 80px;
  }
  .score-circle__value {
    font-size: 1.15rem;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-alt, #f8f9fb);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary, #4b5563);
  flex: 1;
  font-style: italic;
  border: none;
  margin: 0;
  padding: 0;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent, #6c8aff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  display: block;
  font-size: 0.9rem;
}
.testimonial-card__role {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary, #4b5563);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--accent, #6c8aff);
  color: #fff;
  padding: 56px 0;
}
.cta-banner__inner {
  text-align: center;
}
.cta-banner__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-banner__text {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 24px;
}
.cta-banner .btn--primary {
  background: #fff;
  color: var(--accent, #6c8aff);
  font-weight: 700;
}
.cta-banner .btn--primary:hover {
  background: #f0f0f0;
}
.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: var(--bg-alt, #f8f9fb);
}
.guarantee__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.guarantee__icon {
  color: var(--success, #34d399);
  margin-bottom: 16px;
}
.guarantee__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.guarantee__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary, #4b5563);
}

/* ===== PROCESS DETAILS ===== */
.process__details {
  margin-top: 40px;
  background: var(--bg-alt, #f8f9fb);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.process__details-toggle {
  display: block;
  width: 100%;
  padding: 20px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--accent, #6c8aff);
  list-style: none;
  user-select: none;
}
.process__details-toggle::-webkit-details-marker {
  display: none;
}
.process__details-toggle::before {
  content: '+ ';
}
.process__details[open] .process__details-toggle::before {
  content: '− ';
}
.process__details-content {
  padding: 0 28px 28px;
}
.process__details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process__detail-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary, #111827);
}
.process__detail-col ul {
  list-style: none;
  padding: 0;
}
.process__detail-col li {
  font-size: 0.85rem;
  color: var(--text-secondary, #4b5563);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}
.process__detail-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success, #34d399);
  font-weight: 700;
}

/* ===== RESPONSIVE: NEW SECTIONS ===== */
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .cta-banner__title {
    font-size: 1.4rem;
  }
  .process__details-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .process__details-grid {
    grid-template-columns: 1fr;
  }
}