:root {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: #0d0c0c;
  color: #fff6ea;
  --ink: #fff6ea;
  --muted: rgba(255, 246, 234, 0.7);
  --surface: rgba(255, 255, 255, 0.04);
  --panel: rgba(255, 255, 255, 0.08);
  --accent: #f97316;
  --accent-strong: #ff9b2b;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% -10%, rgba(249, 115, 22, 0.4), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(255, 155, 43, 0.2), transparent 40%),
    radial-gradient(circle at 50% 55%, rgba(255, 125, 0, 0.08), transparent 35%),
    #0d0c0c;
  color: var(--ink);
}

.page {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(13, 12, 12, 0.35);
  border-radius: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(255, 198, 140, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.brand-logo {
  width: clamp(148px, 18vw, 220px);
  height: auto;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 198, 140, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
}

.menu-toggle span:not(.menu-label) {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-label {
  font-size: 0.85rem;
  margin-left: 0.2rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(249, 115, 22, 0.15);
  color: #fff;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ff7600, #ff9b2b);
  color: #fff;
  box-shadow: 0 15px 35px rgba(255, 118, 0, 0.3);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 198, 140, 0.25);
  color: var(--ink);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.btn.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 15px 35px rgba(18, 140, 126, 0.28);
}

.btn.whatsapp:hover,
.btn.whatsapp:focus-visible {
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 118, 0, 0.12), rgba(13, 12, 12, 0.95));
  border: 1px solid rgba(255, 215, 160, 0.25);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  overflow: hidden;
}

.hero-content {
  min-width: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin: 0.4rem 0;
  line-height: 1.04;
  max-width: 11ch;
}

.hero p {
  color: var(--muted);
  margin: 0.75rem 0 0;
  line-height: 1.6;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.trust-strip span {
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 205, 148, 0.18);
  color: var(--ink);
  font-size: 0.82rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.hero-stats div {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(249, 115, 22, 0.05));
  border-radius: 18px;
  border: 1px solid rgba(255, 214, 163, 0.12);
}

.stat-value {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

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

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  min-width: 0;
}

.visual-chip {
  position: absolute;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(249, 115, 22, 0.14));
  border: 1px solid rgba(255, 209, 158, 0.22);
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.chip-top {
  top: 6%;
  left: 10%;
}

.chip-right {
  top: 28%;
  right: 0;
}

.chip-bottom {
  bottom: 6%;
  left: 6%;
}

.flame-stage {
  position: relative;
  width: min(390px, 82%);
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
}

.flame-aura {
  position: absolute;
  inset: 10% 8% 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 200, 95, 0.48), transparent 36%),
    radial-gradient(circle at 50% 32%, rgba(255, 120, 20, 0.42), transparent 58%);
  filter: blur(20px);
  animation: flameGlow 4.2s ease-in-out infinite;
}

.flame-core {
  position: relative;
  width: 68%;
  height: 82%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.flame {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 55% 55% 46% 46%;
  clip-path: polygon(50% 0%, 72% 14%, 88% 38%, 86% 62%, 74% 82%, 50% 100%, 26% 82%, 14% 62%, 12% 38%, 28% 14%);
  filter: drop-shadow(0 0 20px rgba(255, 135, 31, 0.35));
}

.flame-back {
  width: 64%;
  height: 78%;
  margin-left: -32%;
  background: linear-gradient(180deg, #ffd166 0%, #ff8a00 52%, #e24a0f 100%);
  animation: flameSwayBack 5.2s ease-in-out infinite;
}

.flame-front {
  width: 28%;
  height: 42%;
  margin-left: 10%;
  background: linear-gradient(180deg, #fff7d6 0%, #ffd15c 42%, #ff7b20 100%);
  animation: flameSwayFront 3.7s ease-in-out infinite;
}

.flame-ring {
  position: absolute;
  inset: 8% 10% 14%;
  border-radius: 50%;
  border: 7px solid rgba(244, 170, 94, 0.7);
  box-shadow: 0 0 30px rgba(255, 142, 34, 0.2);
}

.flame-reflection {
  position: absolute;
  bottom: 2%;
  width: 52%;
  height: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 162, 65, 0.42), rgba(255, 162, 65, 0));
  filter: blur(10px);
  animation: reflectionPulse 4.5s ease-in-out infinite;
}

.hero-panel {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: min(260px, 80%);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px rgba(3, 7, 18, 0.45);
}

.section-intro {
  max-width: 720px;
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.panel-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.panel-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.panel-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-pill {
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.pillars,
.about,
.journey,
.safety,
.faq,
.quote-cta {
  background: linear-gradient(160deg, rgba(255, 118, 0, 0.08), rgba(13, 12, 12, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 26px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 20px 60px rgba(3, 7, 18, 0.35);
}

.pillars header,
.about header,
.faq header,
.safety header,
.section-heading {
  margin-bottom: 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.9fr);
  gap: 1.2rem;
}

.about-card,
.about-panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-card p,
.about-panel p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.75rem;
  color: var(--ink);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.pillars-grid article {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillars-grid article::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 185, 92, 0.9), rgba(255, 117, 24, 0));
}

.pillars-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.5);
}

.service-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 214, 163, 0.88);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.journey-grid div {
  border-radius: 18px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease;
}

.journey-grid div:hover {
  border-color: rgba(249, 115, 22, 0.4);
}

.step-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.step-label + h3 {
  margin-bottom: 0.25rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.safety-grid article {
  border-radius: 16px;
  padding: 1.3rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.safety-grid article::after {
  content: '';
  position: absolute;
  inset: -30% -40%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.24), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.safety-grid article:hover::after,
.safety-grid article.active::after {
  opacity: 1;
}

.safety-grid article h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.safety-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.testimonials {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(249, 115, 22, 0.06));
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(3, 7, 18, 0.35);
}

.testimonials blockquote {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.5;
}

.testimonials cite {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quote-cta {
  text-align: left;
  position: relative;
  overflow: hidden;
}

.quote-cta::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 36, 0.26), rgba(255, 140, 36, 0));
  pointer-events: none;
}

.quote-cta h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.quote-cta p {
  color: var(--muted);
  max-width: 720px;
}

.footer {
  background: linear-gradient(135deg, rgba(255, 118, 0, 0.15), rgba(13, 12, 12, 0.9));
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--ink);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

@keyframes flameGlow {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes flameSwayBack {
  0%,
  100% {
    transform: translateX(-50%) rotate(-5deg) scaleY(0.98);
  }
  50% {
    transform: translateX(-50%) rotate(4deg) scaleY(1.06);
  }
}

@keyframes flameSwayFront {
  0%,
  100% {
    transform: translateX(-50%) rotate(-8deg) scaleY(0.94);
  }
  50% {
    transform: translateX(-50%) rotate(7deg) scaleY(1.1);
  }
}

@keyframes reflectionPulse {
  0%,
  100% {
    transform: scaleX(0.92);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1.06);
    opacity: 0.9;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 1rem;
    gap: 1.5rem;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    position: static;
    padding: 0.65rem;
    gap: 0.75rem;
  }

  .brand {
    order: initial;
    padding: 0.4rem 0.7rem;
    justify-self: start;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 198, 140, 0.14);
    border-radius: 18px;
    padding: 0.5rem;
  }

  nav.is-open {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 0.8rem 0.9rem;
  }

  .site-header > .btn.ghost {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 1.35rem;
    gap: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: none;
  }

  .hero-actions,
  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .footer-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .trust-strip {
    gap: 0.5rem;
  }

  .trust-strip span {
    width: 100%;
    text-align: center;
  }

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

  .hero-panel {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 0.75rem;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 0.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .flame-stage {
    width: min(280px, 82vw);
  }

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

  .visual-chip {
    position: static;
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
  }

  .quote-cta::after {
    display: none;
  }

  .faq-grid,
  .pillars-grid,
  .journey-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: min(180px, 55vw);
  }

  .btn {
    padding: 0.85rem 1rem;
  }

  .hero {
    border-radius: 22px;
  }

  .about,
  .pillars,
  .journey,
  .safety,
  .faq,
  .quote-cta,
  .footer,
  .testimonials {
    padding: 1.2rem;
    border-radius: 20px;
  }
}
