:root {
  --bg: #020617;
  --bg-muted: #020617;
  --card: #020617;
  --card-soft: #020617;
  --border-subtle: #1f2937;
  --border-strong: #334155;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --accent-blue: #2563eb;
  --accent-green: #10b981;
  --accent-amber: #fbbf24;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0f172a, #020617 45%),
    radial-gradient(circle at bottom right, #022c22, transparent 55%);
  color: var(--text-main);
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-muted {
  position: relative;
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent),
    radial-gradient(circle at bottom, rgba(16, 185, 129, 0.07), transparent);
  pointer-events: none;
}

.section-muted>.container {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.numbers-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  letter-spacing: -0.04em;
}

.numbers-copy p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 22rem;
}

.numbers-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.numbers-card {
  position: relative;
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.35), transparent),
    radial-gradient(circle at bottom, rgba(16, 185, 129, 0.3), transparent),
    rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.numbers-card--primary {
  grid-column: span 2;
}

.numbers-card-main {
  z-index: 1;
}

.numbers-value-row {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.numbers-value {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #e5e7eb;
}

.numbers-plus {
  font-size: 1rem;
  font-weight: 700;
  color: #16a34a;
}

.numbers-label {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.numbers-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
}

.numbers-icon--blue {
  background: radial-gradient(circle at 30% 20%, #bfdbfe, #3b82f6);
}

.numbers-icon--pink {
  background: radial-gradient(circle at 30% 20%, #fecdd3, #f472b6);
}

.numbers-icon--purple {
  background: radial-gradient(circle at 30% 20%, #ddd6fe, #8b5cf6);
}

.numbers-icon--orange {
  background: radial-gradient(circle at 30% 20%, #fed7aa, #fb923c);
}

.numbers-icon--green {
  background: radial-gradient(circle at 30% 20%, #bbf7d0, #22c55e);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom,
      rgba(15, 23, 42, 0.9),
      rgba(15, 23, 42, 0.7),
      transparent);
  border-bottom: 1px solid rgba(30, 64, 175, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-green));
  transition: width 0.18s ease-out;
}

.nav a:hover {
  color: var(--text-main);
}

.nav a:hover::after {
  width: 100%;
}

.disclaimer-bar {
  border-top: 1px solid rgba(51, 65, 85, 0.7);
  background: radial-gradient(circle at left, rgba(37, 99, 235, 0.12), transparent),
    radial-gradient(circle at right, rgba(16, 185, 129, 0.12), transparent);
}

.disclaimer-bar p {
  margin: 0;
  padding: 0.5rem 1.25rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  margin: 1rem 0 0.9rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  color: #bbf7d0;
  background: radial-gradient(circle at top left, #16a34a, #22c55e);
  background-size: 200% 200%;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.4);
}

.accent-gradient {
  background: linear-gradient(to right, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.btn-primary {
  background: linear-gradient(to right, var(--accent-blue), var(--accent-green));
  border-color: rgba(56, 189, 248, 0.8);
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(5, 150, 105, 0.7);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(37, 99, 235, 0.8);
  color: #dbeafe;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-email {
  border-color: rgba(59, 130, 246, 0.7);
  color: #dbeafe;
}

.btn-email:hover {
  background: radial-gradient(circle at top left, #1d4ed8, #2563eb);
  color: #eff6ff;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.85);
}

.btn-whatsapp {
  border-color: rgba(34, 197, 94, 0.7);
  color: #bbf7d0;
}

.btn-whatsapp:hover {
  background: radial-gradient(circle at top left, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.8);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #bbf7d0, #16a34a);
  display: inline-block;
  position: relative;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.7);
  margin-right: 0.4rem;
}

.whatsapp-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid #ecfdf5;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(30deg);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.hero-card {
  border-radius: 26px;
  padding: 1.6rem 1.5rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.25), transparent),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.hero-card ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-card li+li {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(55, 65, 81, 0.7);
}

.hero-card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.pricing-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem 1.55rem;
}

.pricing-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.pricing-tagline {
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.currency {
  font-size: 1.2rem;
  opacity: 0.9;
}

.price-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 0.1rem;
}

.feature-list {
  list-style: none;
  margin: 1rem 0 1.4rem;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-main);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.feature-list li::before {
  content: "✓";
  font-size: 0.75rem;
  margin-top: 0.2rem;
  color: var(--accent-green);
}

.feature-list li+li {
  margin-top: 0.4rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.95);
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card--highlight {
  border-color: rgba(52, 211, 153, 0.7);
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.35), transparent),
    radial-gradient(circle at bottom, rgba(16, 185, 129, 0.45), transparent),
    rgba(15, 23, 42, 0.96);
  position: relative;
  overflow: hidden;
}

.pricing-card--highlight .badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.8);
  color: #bbf7d0;
}

.price-label {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: #93c5fd;
  width: fit-content;
}

.price-prefix {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-right: 0.15rem;
}

/* Selectable pricing options */
.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.9rem 0 0.2rem;
}

.pricing-option {
  cursor: pointer;
}

.pricing-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-option-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.7);
  background: rgba(15, 23, 42, 0.5);
  font-size: 0.85rem;
  transition: all 0.15s ease-out;
}

.pricing-option-inner:hover {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
}

.pricing-option input[type="radio"]:checked+.pricing-option-inner {
  border-color: rgba(34, 197, 94, 0.7);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

.pricing-option-name {
  color: var(--text-main);
  font-weight: 500;
}

.pricing-option-price {
  color: var(--accent-green);
  font-weight: 600;
}

/* Best For section */
.best-for {
  margin: 0.2rem 0 1.2rem;
  padding: 0.75rem 0.8rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(55, 65, 81, 0.5);
}

.best-for-title {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.best-for-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-main);
}

.best-for-list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.best-for-list li::before {
  content: "→";
  color: var(--accent-blue);
  font-size: 0.7rem;
}

.best-for-list li+li {
  margin-top: 0.25rem;
}

/* Pricing disclaimer */
.pricing-disclaimer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* -------- Plan Contact Modal -------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.modal-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: 92%;
  max-width: 420px;
  border-radius: 22px;
  padding: 2rem 1.6rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.2), transparent),
    rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s ease;
}

.modal-overlay.modal-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-title {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  color: var(--text-main);
}

.modal-plan-summary {
  margin: 0 0 1.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(55, 65, 81, 0.5);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-btn {
  justify-content: center;
  font-size: 0.92rem;
  padding: 0.75rem 1.2rem;
}

button.btn {
  font-family: inherit;
  outline: none;
}

button.btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
}

.step {
  display: flex;
  gap: 0.85rem;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  background: radial-gradient(circle at top, var(--accent-blue), var(--accent-green));
  color: #eff6ff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.7);
}

.step-body h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.step-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.fine-print {
  margin-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.link-inline {
  color: #bfdbfe;
  text-decoration: none;
  border-bottom: 1px dotted rgba(191, 219, 254, 0.6);
}

.link-inline:hover {
  color: #ffffff;
  border-bottom-style: solid;
}

.cta-section {
  padding-bottom: 4.5rem;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 1.6rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at left, rgba(37, 99, 235, 0.5), transparent),
    radial-gradient(circle at right, rgba(16, 185, 129, 0.5), transparent),
    rgba(15, 23, 42, 0.97);
  box-shadow: var(--shadow-soft);
}

.cta-inner h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.cta-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  padding: 1.25rem 0 1.5rem;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.founder-credit {
  display: inline-block;
  margin-left: 0.75rem;
  color: #e5e7eb;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .numbers-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .numbers-copy p {
    max-width: none;
  }

  .pricing-grid,
  .pricing-grid--three,
  .steps,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 1rem;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .cta-inner {
    padding-inline: 1.1rem;
  }

  .card {
    padding-inline: 1.15rem;
  }

  .disclaimer-bar p {
    padding-inline: 1.1rem;
  }
}

/* ===== NEW FEATURE STYLES ===== */

/* --- Section Pill --- */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bbf7d0;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  margin-bottom: 0.8rem;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent),
    rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(31, 41, 55, 0.8);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border-color: rgba(52, 211, 153, 0.4);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), rgba(16, 185, 129, 0.2));
}

.why-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--text-main);
}

.why-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.testimonial-stars {
  font-size: 1rem;
  color: #fbbf24;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.65;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Tools Promo Grid --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.12), transparent),
    rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(31, 41, 55, 0.8);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
  border-color: rgba(59, 130, 246, 0.6);
}

.tool-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.tool-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--text-main);
}

.tool-card p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.tool-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
  transition: color 0.15s ease;
}

.tool-card:hover .tool-link {
  color: #6ee7b7;
}

/* --- Contact Form Section --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-optional {
  font-weight: 400;
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.7);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Contact info side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  border-radius: 14px;
  padding: 1.2rem 1rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  border: 1px solid rgba(31, 41, 55, 0.8);
  text-align: center;
}

.contact-info-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-info-card h4 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

.contact-info-card a {
  color: var(--accent-green);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-info-card a:hover {
  color: #6ee7b7;
}

.contact-info-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Enhanced Footer --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem 0 2rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.7);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom p {
  margin: 0;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle--active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-cta {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-green));
  color: #f9fafb !important;
  font-weight: 500;
  font-size: 0.82rem;
}

/* --- Responsive for new sections --- */
@media (max-width: 900px) {

  .why-grid,
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .contact-info-card {
    flex: 1;
    min-width: 140px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(16px);
    padding: 1rem 1.25rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.7);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
  }

  .why-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Tool Page Shared Styles --- */
.tool-page-hero {
  padding: 2.5rem 0 1.5rem;
}

.tool-page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.tool-page-hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.calc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.calc-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.12), transparent),
    rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(31, 41, 55, 0.8);
  box-shadow: var(--shadow-soft);
}

.calc-card .form-row {
  margin-bottom: 0;
}

.calc-card .form-group {
  margin-bottom: 0.75rem;
}

.calc-btn {
  margin-top: 0.5rem;
}

.result-card {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.result-card h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--accent-green);
}

.result-table {
  width: 100%;
  border-collapse: collapse;
}

.result-table tr {
  border-bottom: 1px solid rgba(31, 41, 55, 0.5);
}

.result-table tr:last-child {
  border-bottom: none;
}

.result-table td {
  padding: 0.65rem 0.5rem;
  font-size: 0.9rem;
}

.result-table td:first-child {
  color: var(--text-muted);
}

.result-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-main);
}

.result-table .total-row td {
  font-size: 1.05rem;
  padding-top: 0.9rem;
  border-top: 2px solid rgba(52, 211, 153, 0.4);
  color: var(--accent-green);
}

.result-table .total-row td:first-child {
  color: var(--accent-green);
}

.regime-toggle {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.7);
  margin-bottom: 1rem;
}

.regime-toggle label {
  flex: 1;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.5);
  transition: all 0.18s ease;
}

.regime-toggle input[type="radio"] {
  display: none;
}

.regime-toggle input[type="radio"]:checked+label {
  background: linear-gradient(to right, var(--accent-blue), var(--accent-green));
  color: #f9fafb;
}

/* Comparison table */
.comparison-section {
  padding: 2rem 0 4rem;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.8);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(31, 41, 55, 0.5);
}

.comparison-table th {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-weight: 600;
  position: sticky;
  top: 0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-main);
}

.comparison-table td {
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.4);
}

.comparison-table tr:hover td {
  background: rgba(37, 99, 235, 0.08);
}

.comparison-table .highlight-col {
  background: rgba(16, 185, 129, 0.08) !important;
  border-left: 1px solid rgba(52, 211, 153, 0.2);
  border-right: 1px solid rgba(52, 211, 153, 0.2);
}

.comparison-table .check {
  color: var(--accent-green);
}

.comparison-table .cross {
  color: rgba(239, 68, 68, 0.7);
}

/* Receipt preview */
.receipt-preview {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: #fff;
  color: #1f2937;
  margin-top: 1.5rem;
}

.receipt-preview h3 {
  margin: 0 0 0.5rem;
  color: #111827;
  text-align: center;
  font-size: 1.2rem;
}

.receipt-preview .receipt-subtitle {
  text-align: center;
  color: #6b7280;
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
}

.receipt-preview table {
  width: 100%;
  margin-bottom: 1.5rem;
}

.receipt-preview table td {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #374151;
  vertical-align: top;
}

.receipt-preview table td:first-child {
  font-weight: 600;
  width: 40%;
  color: #111827;
}

.receipt-preview .receipt-amount {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #059669;
  margin: 1rem 0;
  padding: 0.75rem;
  background: #ecfdf5;
  border-radius: 10px;
}

.receipt-preview .receipt-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed #d1d5db;
  font-size: 0.82rem;
  color: #6b7280;
}

.receipt-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-print {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-main);
}

.btn-print:hover {
  background: rgba(15, 23, 42, 0.95);
}

/* --- Modern Dark Theme Pricing --- */
.dark-pricing-section {
  background: radial-gradient(circle at top left, #0a1628, #1a2942);
  position: relative;
  overflow: hidden;
}

.dark-pricing-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(96, 239, 255, 0.05), transparent 60%);
  pointer-events: none;
}

.dark-pricing-section .section-header h2,
.dark-pricing-section .section-header p {
  position: relative;
  z-index: 1;
}

.dark-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.6rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(96, 239, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: visible;
  z-index: 1;
}

.dark-pricing-card:hover {
  transform: translateY(-8px);
  border-color: #60efff;
  box-shadow: 0 12px 40px rgba(0, 97, 255, 0.3), 0 0 20px rgba(96, 239, 255, 0.4);
}

.dark-pricing-card--highlight {
  border: 1px solid rgba(96, 239, 255, 0.4);
  background: linear-gradient(145deg, rgba(20, 35, 60, 0.8), rgba(10, 22, 40, 0.9));
}

.dark-pricing-card--highlight:hover {
  box-shadow: 0 15px 45px rgba(0, 97, 255, 0.4), 0 0 30px rgba(96, 239, 255, 0.6);
}

.dark-pricing-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  color: #fff;
}

.badge-container {
  position: absolute;
  top: -12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.left-badges {
  left: 1rem;
  align-items: flex-start;
}

.right-badge {
  position: absolute;
  top: -12px;
  right: 1rem;
}

@keyframes pulse-badge {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.pulse-badge {
  animation: pulse-badge 2s infinite;
}

.discount-badge, .offer-badge, .recommended-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.discount-badge, .offer-badge {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  border: 1px solid #f87171;
}

.recommended-badge {
  background: linear-gradient(135deg, #10b981, #047857);
  border: 1px solid #34d399;
}

.price-box {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.original-price {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.dark-pricing-card .price {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #10b981;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.save-amount {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: #34d399;
  font-weight: 600;
}

.dark-pricing-card .btn {
  margin-top: auto;
}