:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f6f8ff;
  background: #050816;
  --bg: #050816;
  --surface: rgba(19, 28, 55, 0.88);
  --surface-strong: rgba(18, 27, 52, 0.96);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f6f8ff;
  --muted: #a9b3d8;
  --accent: #7ae042;
  --accent-dark: #47b231;
  --accent-soft: rgba(122, 224, 66, 0.14);
  --shadow: 0 35px 120px rgba(10, 18, 44, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(122, 224, 66, 0.12), transparent 36%),
    linear-gradient(180deg, #050816 0%, #02040c 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-brand {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 200px;
}


.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.hero-copy h1,
.section h2,
.highlight-panel h2,
.contact-copy h2 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.5rem, 3.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #f8fbff;
}

.hero-copy p,
.section p,
.feature-card p,
.highlight-panel p,
.contact-copy p,
.step-card p,
.site-footer p {
  color: var(--muted);
  max-width: 45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #56b12f);
  color: #08120a;
}

.button-secondary {
  background: transparent;
  border-color: rgba(122, 224, 66, 0.22);
  color: #ebf2ff;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-features div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.15rem;
  border-radius: 18px;
  color: #e8f0ff;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: linear-gradient(180deg, rgba(5, 8, 22, 0.88), rgba(11, 22, 49, 0.96));
  border: 1px solid rgba(122, 224, 66, 0.16);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(122, 224, 66, 0.12);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-graph {
  margin: 1.75rem auto 1rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  max-width: 340px;
}

.hero-graph svg {
  width: 100%;
  display: block;
  background: #08101f;
}

.graph-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: graph-draw 1.8s ease-out forwards;
}

@keyframes graph-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-card h2 {
  margin: 1.25rem 0 0.75rem;
  font-size: clamp(1.9rem, 2.5vw, 2.8rem);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.stat-grid div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 20px;
}

.stat-grid strong {
  display: block;
  font-size: 1.75rem;
  color: #fff;
}

.section {
  padding: 5rem 0;
}

.section-overlap {
  padding-top: 2.5rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 9, 25, 0.9);
  padding: 1.35rem;
  border-radius: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(122, 224, 66, 0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.step-icon {
  display: inline-flex;
  margin-bottom: 1rem;
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

#about .eyebrow,
#about h2,
#about > .container > p {
  text-align: center;
}

.feature-section .feature-grid,
.feature-list {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.25rem;
}

.feature-card {
  padding: 1.75rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 224, 66, 0.12);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  margin-top: 0;
  color: #fff;
}

.dark-section {
  background: rgba(10, 18, 44, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-panel {
  padding: 2.5rem;
  background: rgba(122, 224, 66, 0.08);
  border: 1px solid rgba(122, 224, 66, 0.12);
  border-radius: 30px;
}

.highlight-panel ul {
  padding-left: 1.2rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  list-style: disc;
}

.highlight-panel li {
  margin-bottom: 1rem;
}

.credibility-section {
  padding: 2rem 0 3rem;
}

.credibility-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.25rem;
  border-radius: 24px;
}

.credibility-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #f6f8ff;
}

.cred-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(122, 224, 66, 0.12);
}

.cred-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.savings-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.savings-table-wrapper {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.savings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.savings-table th,
.savings-table td {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.savings-table th {
  background: rgba(122, 224, 66, 0.12);
  color: #f8fbff;
  font-weight: 700;
}

.savings-table td {
  color: var(--muted);
}

.table-note {
  margin-top: 1rem;
  color: var(--muted);
}

.section-cta {
  margin-top: 2rem;
}

.faq-section {
  padding: 3rem 0 4rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.2rem 1.3rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.faq-icon {
  display: inline-flex;
}

.faq-icon-close {
  display: none;
}

details[open] .faq-icon-question {
  display: none;
}

details[open] .faq-icon-close {
  display: inline-flex;
}

.faq-list p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-panel {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.contact-panel-body {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.contact-number {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 220px;
  color: var(--muted);
}

.contact-number strong {
  color: #f8fbff;
}

.button-whatsapp {
  min-width: 280px;
}

.feature-list article {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.85rem;
}

.feature-list-icon svg {
  width: 28px;
  height: 28px;
}

.feature-list h3 {
  margin: 0 0 0.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-section {
  padding-bottom: 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  max-width: 32rem;
}

.contact-info {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.contact-info strong {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}

.contact-form {
  padding: 2rem;
  background: rgba(3, 9, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
}

.form-row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8efff;
}

input,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: #f6f8ff;
  padding: 1rem 1.1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(122, 224, 66, 0.35);
  box-shadow: 0 0 0 4px rgba(122, 224, 66, 0.12);
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
}

.form-success {
  margin-top: 1.2rem;
  color: #7ae042;
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .feature-grid,
  .steps-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 6vw, 3.3rem);
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    background: rgba(3, 9, 25, 0.96);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.75rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}
