:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-mid: #1c1c1c;
  --yellow: #f5c518;
  --yellow-hot: #ffd84a;
  --white: #ffffff;
  --muted: #b7b7b7;
  --line: rgba(255, 255, 255, 0.12);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1280px, 94%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 20px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 58px;
}

.brand-footer img {
  height: 72px;
}

.hero-logo {
  width: min(280px, 68vw);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 12px 40px rgba(245, 197, 24, 0.12));
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: #d6d6d6;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

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

.nav .btn {
  margin-left: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--black);
}

.nav .btn-sm {
  padding: 12px 18px;
  min-height: 44px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 8px 11px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
}

.lang-btn.is-active {
  background: var(--yellow);
  color: var(--black);
}

.lang-btn:hover:not(.is-active) {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  padding: 12px 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.72) 48%, rgba(10, 10, 10, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.lead,
.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero-note {
  margin: 0;
  color: var(--yellow);
  font-weight: 600;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 0;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--yellow-hot);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 12px 18px;
  font-size: 0.98rem;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}

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

.btn-whatsapp {
  background: var(--yellow);
  color: var(--black);
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--black-soft);
}

.section-cta {
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(245, 197, 24, 0.12), transparent 55%),
    var(--black);
}

.process-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--yellow);
  font-size: 1.4rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.process-list-compact {
  margin-top: 20px;
}

.process-cards {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.process-card:hover {
  border-color: rgba(245, 197, 24, 0.55);
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.08), rgba(255, 255, 255, 0.02));
  transform: translateY(-3px);
}

.process-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 48px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.35);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.process-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.services {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(245, 197, 24, 0.45);
  transform: translateY(-3px);
}

.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card__body h3 {
  margin-bottom: 4px;
}

.service-card__body p {
  color: var(--muted);
  margin: 0;
}

.service-card__body ul {
  margin: 8px 0 0;
  padding-left: 1.1rem;
  color: var(--white);
}

.service-card__body li {
  margin: 5px 0;
}

.service {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.service:last-child {
  border-bottom: 1px solid var(--line);
}

.service-hook {
  color: var(--yellow);
  font-weight: 600;
  font-size: 1.02rem;
  max-width: 48ch;
}

.service-for {
  margin-bottom: 0;
}

.founder-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
  margin-top: 28px;
}

.founder-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder-label {
  color: var(--yellow) !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem !important;
  margin-bottom: 8px !important;
}

.founder-name {
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.founder-role {
  color: var(--muted);
  margin: 0 0 18px !important;
  font-size: 0.98rem !important;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.audience-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.audience-card:hover {
  border-color: rgba(245, 197, 24, 0.45);
  transform: translateY(-3px);
}

.audience-card h3 {
  margin-bottom: 8px;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
}

.pain-block {
  margin-top: 48px;
}

.pain-block > h3 {
  margin-bottom: 18px;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pain-list li {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--yellow);
}

.pain-list strong {
  color: var(--white);
  font-size: 1.02rem;
}

.pain-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-weight: 700;
  font-family: var(--font-display);
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 1.4rem;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  max-width: 70ch;
}

.about-visual {
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 9;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  max-width: 72ch;
}

.about-story p {
  color: var(--muted);
  font-size: 1.05rem;
}

.highlight-line {
  color: var(--yellow) !important;
  font-weight: 600;
}

.about-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.about-blocks article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.about-blocks p {
  color: var(--muted);
}

.work-process {
  margin-top: 56px;
}

.work-process > h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.work-cards {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: none;
}

.work-card {
  position: relative;
  background: var(--black-mid);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px 24px;
  overflow: hidden;
  min-height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent 80%);
  opacity: 0.85;
}

.work-card:hover {
  border-color: rgba(245, 197, 24, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.work-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.35);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.work-card h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.contact-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-meta li {
  display: grid;
  gap: 2px;
}

.contact-meta span:first-child {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-meta a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.contact-meta a:hover {
  color: var(--yellow);
}

.contact-form {
  background: var(--black-mid);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 12px;
}

.contact-form h3 {
  margin-bottom: 4px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  padding: 12px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}

.footer-wrap {
  display: grid;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page {
  padding-top: 48px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  margin-top: 22px;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--yellow);
}

.legal-meta {
  color: var(--yellow) !important;
  font-weight: 600;
  margin-bottom: 28px !important;
}

.legal-note {
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 28px;
}

.legal-nav {
  gap: 16px !important;
}

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 60;
}

@media (max-width: 900px) {
  .about-blocks,
  .cta-grid,
  .founder-block,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-cards,
  .work-cards,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-visual {
    aspect-ratio: 16 / 9;
  }

  .founder-photo {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 92px;
    right: 3%;
    left: 3%;
    flex-direction: column;
    align-items: stretch;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    gap: 4px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    white-space: normal;
    padding: 12px 10px;
    font-size: 1.08rem;
  }

  .nav .btn {
    margin: 8px 0 0;
    width: 100%;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 64px;
  }

  h1 {
    max-width: none;
  }

  .section {
    padding: 72px 0;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
  }

  .process-cards,
  .work-cards,
  .audience-grid {
    grid-template-columns: 1fr;
  }
}
