:root {
  --bg: #070707;
  --bg-soft: #111111;
  --card: #171717;
  --text: #f7f7f7;
  --muted: #b7b7b7;
  --orange: #ff6a00;
  --orange-2: #ff9f1c;
  --line: rgba(255,255,255,0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255,106,0,0.16), transparent 36rem),
    radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 28rem),
    var(--bg);
  color: var(--text);
}

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

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

.site-header {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff, #d9d9d9 42%, var(--orange) 43%, #ff3d00);
  color: #050505;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(255,106,0,0.25);
}

.brand-text {
  text-transform: uppercase;
  font-size: 18px;
}

.brand-text span {
  color: var(--orange);
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 48px;
  align-items: center;
  min-height: 620px;
}

.eyebrow {
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 14px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.hero-copy,
.section-heading p,
.text-block p,
.offer p,
.contact p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 18px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), #ff3d00);
  color: white;
  box-shadow: 0 18px 36px rgba(255,106,0,0.22);
}

.button.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.25);
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.button.full {
  width: 100%;
}

.small-note,
.contact-note {
  color: #8e8e8e;
  font-size: 14px;
  line-height: 1.5;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(370px, 88vw);
  aspect-ratio: 9 / 16;
  border: 12px solid #202020;
  border-radius: 44px;
  padding: 18px;
  background:
    linear-gradient(to top, rgba(0,0,0,0.82), transparent 60%),
    radial-gradient(circle at 50% 35%, rgba(255,106,0,0.62), transparent 10rem),
    linear-gradient(135deg, #2a1304, #050505);
  box-shadow: 0 44px 90px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.phone-frame:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.12), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025), rgba(255,255,255,0.025) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
}

.reel-preview {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.reel-label {
  align-self: flex-start;
  background: rgba(255,106,0,0.92);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: auto;
}

.reel-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 10px;
}

.reel-caption {
  color: var(--muted);
  line-height: 1.4;
}

.logos-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #d7d7d7;
}

.logos-strip span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 110px auto 0;
}

.two-col,
.offer,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.text-block {
  border-left: 2px solid var(--orange);
  padding-left: 26px;
}

.work-section {
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,106,0,0.07));
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card,
.offer-box,
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.button.full {
  width: 100%;
}

.button.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.25);
}

.work-card p,
.offer-box li {
  color: var(--muted);
  line-height: 1.55;
}

.tag {
  display: inline-block;
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 16px;
}

.offer-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.offer-box li + li {
  margin-top: 12px;
}

.image-section {
  margin-top: 70px;
}

.brand-mockup {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--card);
}

.contact {
  padding-bottom: 70px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 16px;
  color: #8f8f8f;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
  }

  .nav {
    gap: 14px;
  }

  .hero,
  .two-col,
  .offer,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 34px;
    min-height: auto;
  }

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

  .work-section {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
  }

  .brand-text {
    font-size: 16px;
  }

  h1 {
    font-size: 52px;
  }

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

  .button {
    width: 100%;
  }

  .section {
    margin-top: 78px;
  }
}
