:root {
  --ink: #111318;
  --muted: #60636c;
  --soft: #f5f7fb;
  --line: #e1e4ea;
  --orange: #ff6b00;
  --orange-dark: #db5600;
  --teal: #00a3a3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 82px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(225, 228, 234, 0.8);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(170px, 19vw, 255px);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a,
.header-cta,
.button,
.social-link,
.whatsapp-float {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  font-weight: 700;
  background: var(--ink);
  border-radius: 999px;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--orange);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: calc(100svh - 82px);
  padding: clamp(54px, 8vw, 100px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 78px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 107, 0, 0.1), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(0, 163, 163, 0.14), transparent 31%),
    #fff;
}

.hero::after {
  position: absolute;
  right: -10vw;
  bottom: -18vw;
  width: 46vw;
  max-width: 620px;
  aspect-ratio: 1;
  content: "";
  background: rgba(255, 107, 0, 0.08);
  border-radius: 50%;
}

.hero-content,
.hero-visual,
.intro-section,
.services-section,
.process-section,
.proof-section,
.contact-section {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 730px;
  margin-bottom: 30px;
  color: #3e424a;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(255, 107, 0, 0.28);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 18px 42px rgba(255, 107, 0, 0.32);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}

.hero-visual {
  align-self: stretch;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 430px;
}

.hero-visual img {
  width: min(100%, 600px);
  padding: clamp(22px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(225, 228, 234, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric-panel {
  width: min(90%, 390px);
  margin-top: -28px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--ink);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric-panel strong,
.metric-panel span {
  display: block;
}

.metric-panel span {
  margin-top: 4px;
  color: #c9ccd4;
  font-size: 0.94rem;
}

.intro-section,
.services-section,
.process-section,
.proof-section,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.intro-grid,
.section-heading,
.process-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro-grid p,
.section-heading > p,
.process-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.services-section,
.contact-section {
  background: var(--soft);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 58px);
}

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

.service-card {
  min-height: 282px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card p,
.timeline-item p,
.proof-item span {
  margin-bottom: 0;
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  color: var(--orange);
  font-weight: 800;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
}

.process-section {
  background: var(--ink);
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-copy p,
.timeline-item p {
  color: #c6cbd5;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-weight: 800;
  background: var(--orange);
  border-radius: 50%;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-item {
  min-height: 170px;
  padding: clamp(28px, 5vw, 50px);
  background: var(--white);
}

.proof-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(17, 19, 24, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #31343b;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

.contact-form button {
  width: fit-content;
}

.contact-socials {
  margin-top: 28px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.header-socials {
  flex-wrap: nowrap;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 50%;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 19, 24, 0.18);
}

.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 48%, #fcb045);
}

.facebook {
  background: #1877f2;
}

.social-link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 20;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: #25d366;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.38);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1ebe5d;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #c9ccd4;
  background: #090a0d;
}

.footer-copy {
  display: grid;
  gap: 4px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro-grid,
  .section-heading,
  .process-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
  }

  .service-grid,
  .proof-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
    gap: 14px;
    padding: 12px 16px;
  }

  .brand img {
    width: min(54vw, 210px);
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 42px 16px 34px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 4.7rem);
  }

  .button,
  .contact-form button {
    width: 100%;
  }

  .social-links {
    display: flex;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .hero-actions {
    display: grid;
  }

  .service-card,
  .timeline-item,
  .contact-form {
    padding: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .metric-panel {
    width: 96%;
    margin-top: -18px;
  }
}
