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

:root {
  --navy-950: #07111f;
  --navy-900: #0b1627;
  --navy-800: #10233d;
  --navy-700: #173154;
  --gold-500: #c8a24a;
  --gold-400: #dfc16d;
  --gold-200: #f4e2b0;
  --cream-50: #fbf7ef;
  --cream-100: #f4ede0;
  --sand-200: #e7dcc4;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-600: #526174;
  --line: rgba(200, 162, 74, 0.18);
  --line-soft: rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 70px rgba(7, 17, 31, 0.2);
  --shadow-xl: 0 40px 90px rgba(7, 17, 31, 0.34);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
}

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

body {
  margin: 0;
  padding-top: 88px;
  font-family: var(--sans);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(200, 162, 74, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--cream-50) 100%);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav {
  width: min(1200px, calc(100% - 1rem));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #fff;
}

.brand small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
}

.nav-links {
  display: none;
  gap: 1.4rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-400);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.nav-cta {
  padding: 0.85rem 1.2rem;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(200, 162, 74, 0.22);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(200, 162, 74, 0.16), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(200, 162, 74, 0.08), transparent 18%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 48%, var(--navy-800) 100%);
  color: #fff;
  padding: 4.5rem 0 4rem;
}

.hero::before,
.section-dark::before {
  content: '';
  position: absolute;
  inset: auto -12rem 4rem auto;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.16), transparent 64%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 1.4rem;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
}

.eyebrow {
  margin: 0;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero h1,
.section-head h2,
.cta-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.45rem, 8vw, 4.9rem);
  max-width: 12ch;
}

.lead,
.section-head p,
.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 58ch;
}

.hero-actions {
  display: grid;
  gap: 0.85rem;
}

.btn {
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 18px 30px rgba(200, 162, 74, 0.2);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-outline:hover {
  border-color: rgba(200, 162, 74, 0.58);
  color: var(--gold-200);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-pills span,
.status-badge,
.card-label,
.price-meta,
.panel-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-pills span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
}

.panel-top,
.panel-score,
.panel-foot,
.panel-list article,
.quote-meta,
.footer-brand {
  display: flex;
  align-items: center;
}

.panel-top,
.panel-foot {
  justify-content: space-between;
  gap: 0.9rem;
}

.panel-kicker {
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
  margin-bottom: 0.25rem;
}

.panel-top h2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.status-badge {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: #8cf0b9;
  border: 1px solid rgba(52, 211, 153, 0.16);
  white-space: nowrap;
}

.panel-score {
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 31, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-score span,
.panel-foot span,
.panel-list p {
  color: rgba(255, 255, 255, 0.6);
}

.panel-score strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold-200);
  margin-top: 0.2rem;
}

.panel-score p {
  margin: 0;
  max-width: 20ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.panel-list {
  display: grid;
  gap: 0.8rem;
}

.panel-list article {
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-list strong,
.panel-foot strong,
.quote-meta strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.panel-list p,
.quote-meta span {
  margin: 0;
  font-size: 0.84rem;
}

.icon-badge,
.card-icon {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 0.9rem;
  background: rgba(200, 162, 74, 0.12);
  border: 1px solid rgba(200, 162, 74, 0.2);
  color: var(--gold-200);
  font-weight: 800;
}

.panel-foot {
  padding-top: 0.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.panel-foot > div {
  padding: 0.85rem 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(7, 17, 31, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-foot span {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}

.panel-foot strong {
  font-size: 1rem;
}

.section {
  position: relative;
  padding: 4.4rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff 0%, var(--cream-50) 100%);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  overflow: hidden;
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

.section-head h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: var(--ink-900);
  max-width: 14ch;
}

.section-head p {
  color: var(--ink-600);
  max-width: 62ch;
}

.section-head-dark h2,
.section-head-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head-dark h2 {
  color: #fff;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
}

.pain-card {
  background: linear-gradient(180deg, #fff 0%, #fdf9f1 100%);
  border-color: rgba(200, 162, 74, 0.16);
  border-top: 4px solid #c65252;
}

.card-label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gold-500);
}

.feature-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  line-height: 1.15;
  color: var(--ink-900);
}

.feature-card p {
  margin: 0;
  color: var(--ink-600);
}

.section-dark .feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.section-dark .feature-card h3,
.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .feature-card h3 {
  color: #fff;
}

.dark-card {
  position: relative;
  overflow: hidden;
}

.dark-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -22% auto;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.16), transparent 68%);
  pointer-events: none;
}

.card-icon {
  margin-bottom: 0.8rem;
}

.accent-card {
  border-color: rgba(200, 162, 74, 0.32);
  box-shadow: 0 20px 50px rgba(200, 162, 74, 0.08);
}

.simple-card h3 {
  margin-bottom: 0.55rem;
}

.simple-card .card-icon {
  width: auto;
  min-width: 3rem;
  padding: 0 0.8rem;
  border-radius: 999px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.05rem;
  text-align: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table thead th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-600);
  background: linear-gradient(180deg, #fff 0%, #f8f4ea 100%);
}

.comparison-table thead th.table-highlight {
  color: var(--navy-900);
  background: linear-gradient(180deg, rgba(200, 162, 74, 0.12), rgba(200, 162, 74, 0.06));
}

.comparison-table tbody td {
  color: var(--ink-600);
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(247, 243, 234, 0.54);
}

.comparison-table tbody td:nth-child(3) {
  background: rgba(200, 162, 74, 0.08);
  font-weight: 700;
  color: var(--navy-900);
}

.yes {
  color: #16815b;
  font-weight: 800;
}

.no {
  color: #b63d3d;
  font-weight: 800;
}

.section-dark .section-head p,
.section-dark .section-head h2 {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: grid;
  gap: 0.6rem;
}

.featured-card {
  border-color: rgba(200, 162, 74, 0.35);
  box-shadow: 0 0 0 1px rgba(200, 162, 74, 0.08), 0 24px 60px rgba(7, 17, 31, 0.16);
}

.price-amount {
  margin: 0;
  color: var(--gold-500);
  font-size: 2rem;
  font-weight: 800;
}

.price-meta {
  margin: 0;
  color: var(--ink-600);
  letter-spacing: 0.08em;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 0.25rem 0 0;
  padding: 0;
}

.price-list li,
.cta-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-600);
}

.price-list li::before,
.cta-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 900;
}

.price-note {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(200, 162, 74, 0.1);
  border: 1px solid rgba(200, 162, 74, 0.2);
  color: var(--navy-900);
  font-weight: 700;
}

.testimonials-grid .quote-card {
  display: grid;
  gap: 1rem;
}

.quote-card p {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ink-900);
}

.quote-meta {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.quote-meta span {
  color: var(--ink-600);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  color: var(--ink-900);
}

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

.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(200, 162, 74, 0.12);
  color: var(--gold-500);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--ink-600);
}

.section-cta {
  color: #fff;
}

.cta-layout {
  display: grid;
  gap: 1.3rem;
}

.cta-copy h2 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  margin-bottom: 0.9rem;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.cta-points li {
  color: rgba(255, 255, 255, 0.78);
}

.demo-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-xl);
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field.full-width {
  margin-top: 0.2rem;
}

label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

input,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 31, 0.34);
  color: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(200, 162, 74, 0.7);
}

select option {
  background: var(--navy-900);
  color: #fff;
}

.btn-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.6;
}

.site-footer {
  padding: 1.5rem 0 2.25rem;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer-inner {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand span {
  font-size: 0.78rem;
  max-width: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.footer-inner p {
  margin: 0;
  max-width: 60ch;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 162, 74, 0.5);
  background: rgba(200, 162, 74, 0.12);
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.social-link.instagram {
  color: #f1d29c;
}

.social-link.whatsapp {
  color: #9be7b5;
}

.social-link span {
  font-size: 0.85rem;
  font-weight: 800;
}

@media (min-width: 700px) {
  body {
    padding-top: 92px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .section-head p,
  .lead,
  .cta-copy p {
    font-size: 1.03rem;
  }

  .card-grid.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .nav-links {
    display: flex;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: start;
    gap: 2rem;
  }

  .hero {
    padding: 6rem 0 5rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .section {
    padding: 5.8rem 0;
  }

  .card-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-form {
    padding: 1.4rem;
  }
}

@media (min-width: 1180px) {
  .cta-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
