:root {
  --bg: #0f0f10;
  --surface: #18181b;
  --surface-soft: #202024;
  --text: #f4f4f5;
  --muted: #b6b6bd;
  --accent: #f08000;
  --accent-strong: #e05010;
  --border: #2a2a31;
  --accent-glow: rgba(240, 128, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  background-image: radial-gradient(circle at 10% 5%, rgba(224, 80, 16, 0.12), transparent 40%);
}

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

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

.container {
  width: 92%;
  max-width: 1100px;
  margin-inline: auto;
}

/* ───── Navigation ───── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 15, 16, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.hero {
  position: relative;
  padding: 4rem 0 2.8rem;
  background: radial-gradient(circle at 80% 15%, rgba(224, 80, 16, 0.25), transparent 40%),
    radial-gradient(circle at 20% 75%, rgba(240, 128, 0, 0.14), transparent 45%);
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-copy {
  animation: fadeUp 0.8s ease both;
}

.kicker {
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.hero-copy p {
  max-width: 60ch;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 128, 0, 0.25);
  color: #dddde4;
  border-radius: 999px;
  padding: 0.34rem 0.8rem;
  font-size: 0.9rem;
}

.hero-actions,
.contact-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 20px rgba(224, 80, 16, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.94;
  box-shadow: 0 14px 28px rgba(224, 80, 16, 0.46);
}

.btn-small {
  padding: 0.58rem 1rem;
  font-size: 0.95rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.3rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 128, 0, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(240, 128, 0, 0.14);
  animation: fadeIn 1s ease both;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  background: rgba(15, 15, 16, 0.78);
  border: 1px solid rgba(240, 128, 0, 0.45);
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
  animation: floaty 3.2s ease-in-out infinite;
}

.badge-top {
  top: 1rem;
  right: 1rem;
}

.badge-bottom {
  bottom: 1rem;
  left: 1rem;
  animation-delay: 0.6s;
}

.impact-strip {
  padding: 0.2rem 0 1.4rem;
}

.strip-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strip-item {
  border: 1px solid rgba(240, 128, 0, 0.24);
  background: linear-gradient(140deg, rgba(240, 128, 0, 0.12), rgba(32, 32, 36, 0.78));
  border-radius: 18px;
  padding: 1rem;
  text-align: center;
}

.strip-item strong {
  display: block;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.2;
}

.strip-item span {
  font-size: 0.95rem;
  color: #dfdfe6;
}

.section {
  padding: 2.6rem 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 65ch;
  margin-bottom: 1.5rem;
}

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

.about-text p + p {
  margin-top: 0.9rem;
}

.about-image {
  padding: 0;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

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

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

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

.quote-card p {
  color: #d8d8e0;
  font-size: 1rem;
}

.quote-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0;
  color: var(--accent);
  font-size: 1rem;
}

.contact-card {
  border-radius: 24px;
  border: 1px solid rgba(240, 128, 0, 0.38);
  background: linear-gradient(130deg, rgba(240, 128, 0, 0.13), rgba(32, 32, 36, 0.95));
  padding: 2rem;
  box-shadow: 0 0 0 1px rgba(240, 128, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ───── For Who Section ───── */
.cards-4 {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.icon-card {
  text-align: center;
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.service-card {
  text-align: center;
}

.service-card .card-icon {
  font-size: 2.8rem;
}

/* ───── Process Section ───── */
.process {
  background: radial-gradient(circle at 50% 30%, rgba(240, 128, 0, 0.08), transparent 50%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.step-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  position: relative;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 128, 0, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(224, 80, 16, 0.35);
}

/* ───── Results Section ───── */
.results-placeholder {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 1rem;
}

.results-placeholder p {
  color: var(--muted);
  font-size: 1rem;
}

/* ───── Stars Rating ───── */
.stars {
  color: #ffb800;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
}

.more-reviews-note {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.7;
}

/* ───── FAQ Section ───── */
.faq-list {
  max-width: 800px;
  margin: 1.2rem auto 0;
}

.faq-item {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(240, 128, 0, 0.35);
}

.faq-item[open] {
  border-color: rgba(240, 128, 0, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.3rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.faq-item > p {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ───── Content Pillar ───── */
.pillar-content {
  max-width: 800px;
  margin: 0 auto;
}

.pillar-content h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.pillar-content p {
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ───── Footer ───── */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-keywords {
  margin-bottom: 0.8rem;
}

.footer-keywords p {
  font-size: 0.8rem;
  color: #555;
}

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

.built-by {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.built-by a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.built-by a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 30;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 800;
  color: #111;
  background: linear-gradient(135deg, var(--accent), #ff9a2e);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(224, 80, 16, 0.42);
  animation: pulseGlow 2.2s infinite;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float-icon {
  display: none;
}

/* ───── Hamburger Menu ───── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 25;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ───── E-E-A-T Credentials Bar ───── */
.credentials-bar {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.credentials-bar h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.credentials-list li {
  color: #d8d8e0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.credentials-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0.8rem;
  background: rgba(240, 128, 0, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(240, 128, 0, 0.15);
}

/* ───── Why Different / Barriers Section ───── */
.why-different {
  background: radial-gradient(circle at 30% 50%, rgba(240, 128, 0, 0.06), transparent 50%);
}

.barriers-cards .barrier-card {
  text-align: right;
}

.barriers-cards .barrier-card .card-icon {
  text-align: center;
}

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

/* ───── Online Emphasis Section ───── */
.online-emphasis {
  background: radial-gradient(circle at 70% 30%, rgba(240, 128, 0, 0.06), transparent 50%);
}

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

.online-card {
  text-align: center;
}

.online-card .card-icon {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

/* ───── Case Studies Section ───── */
.case-studies {
  background: radial-gradient(circle at 50% 60%, rgba(240, 128, 0, 0.06), transparent 50%);
}

.case-card {
  position: relative;
  text-align: right;
}

.case-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.case-card h3 {
  color: var(--text);
  font-size: 1.15rem;
}

.case-card p {
  color: #c8c8d0;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.case-card p:last-child {
  margin-bottom: 0;
}

/* ───── Pricing Section ───── */
.pricing {
  background: radial-gradient(circle at 50% 40%, rgba(240, 128, 0, 0.08), transparent 50%);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.pricing-popular {
  border-color: rgba(240, 128, 0, 0.6);
  box-shadow: 0 0 0 1px rgba(240, 128, 0, 0.3), 0 16px 36px rgba(0, 0, 0, 0.28);
  transform: scale(1.03);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: right;
}

.pricing-features li {
  padding: 0.4rem 0;
  color: #d0d0d8;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

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

.pricing-reframe {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #d8d8e0;
  padding: 1rem;
  background: rgba(240, 128, 0, 0.08);
  border: 1px solid rgba(240, 128, 0, 0.2);
  border-radius: 16px;
}

/* ───── Lead Magnet Section ───── */
.lead-magnet-card {
  border-radius: 24px;
  border: 1px solid rgba(240, 128, 0, 0.38);
  background: linear-gradient(130deg, rgba(240, 128, 0, 0.15), rgba(32, 32, 36, 0.95));
  padding: 2.2rem;
  box-shadow: 0 0 0 1px rgba(240, 128, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.lead-magnet-content h2 {
  font-size: 1.8rem;
}

.lead-magnet-content p {
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.8;
}

.lead-magnet-actions {
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}

.lead-magnet-note {
  font-size: 0.88rem;
  color: var(--muted);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(224, 80, 16, 0.42);
  }
  50% {
    box-shadow: 0 18px 38px rgba(240, 128, 0, 0.65);
  }
}

@media (max-width: 960px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-grid,
  .about-grid,
  .services .cards,
  .testimonials .cards,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-4,
  .process-steps,
  .online-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-popular {
    transform: none;
  }

  /* Hamburger visible on mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    background: rgba(15, 15, 16, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.6rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 20;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.6rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .hero-card img,
  .about-image img {
    min-height: 320px;
  }

  .floating-badge {
    font-size: 0.78rem;
  }

  .whatsapp-float {
    left: auto;
    right: 1rem;
    bottom: 1rem;
    text-align: center;
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    animation: none;
    border: none;
  }

  .whatsapp-float-text {
    display: none;
  }

  .whatsapp-float-icon {
    display: block;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .nav-wrap {
    height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-points li {
    font-size: 0.83rem;
  }

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

  .gallery-grid img {
    height: 220px;
  }

  .cards-3,
  .cards-4,
  .process-steps,
  .online-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions .btn {
    width: 100%;
  }

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

  .footer-links {
    gap: 0.8rem;
  }

  .lead-magnet-card {
    padding: 1.5rem;
  }
}