:root {
  --ink: #06080d;
  --night: #0d111a;
  --panel: #121824;
  --panel-soft: #182131;
  --gold: #d7b85d;
  --gold-bright: #ffe8a3;
  --cyan: #19b8ff;
  --sky: #6dd7ff;
  --text: #f6f7fb;
  --muted: #aeb7c7;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(6, 8, 13, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(215, 184, 93, 0.45);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a,
.header-cta,
.button {
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

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

.header-cta {
  min-width: max-content;
  padding: 11px 16px;
  border: 1px solid rgba(37, 211, 102, 0.75);
  border-radius: 8px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.2);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta:hover {
  background: linear-gradient(135deg, #35e676, #159d55);
  border-color: rgba(37, 211, 102, 0.95);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(24px, 5vw, 82px);
  min-height: 92vh;
  padding: 126px clamp(20px, 6vw, 88px) 70px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(13, 17, 26, 0.45), rgba(6, 8, 13, 0.9) 52%, rgba(0, 0, 0, 0.76)),
    url("assets/logofinal.png") center / cover no-repeat;
  opacity: 0.34;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(25, 184, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 184, 93, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
  opacity: 0.34;
}

.hero-content {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  content: "";
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 0 32px rgba(25, 184, 255, 0.18);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy,
.split-text p,
.showcase-copy p,
.service-card p,
.timeline p,
.package-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

.hero-copy strong {
  color: var(--gold-bright);
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #11100b;
  box-shadow: 0 16px 38px rgba(215, 184, 93, 0.22);
}

.button.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.26);
}

.button.whatsapp:hover {
  background: linear-gradient(135deg, #35e676, #159d55);
}

.button.secondary {
  border: 1px solid rgba(109, 215, 255, 0.45);
  color: var(--sky);
}

.button.large {
  min-height: 58px;
  padding-inline: 26px;
}

.hero-logo {
  position: relative;
  margin: 0;
}

.hero-logo img {
  width: min(470px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(215, 184, 93, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 58px rgba(25, 184, 255, 0.22);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 26px clamp(20px, 5vw, 58px);
  background: #0a0d14;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 1.02rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 88px);
}

.intro-section {
  background: #f4f0e5;
  color: #141414;
}

.intro-section .section-kicker {
  color: #8d6f22;
}

.intro-section .split-text p {
  color: #515151;
}

.split-text {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-top: 22px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.82fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: 38px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 840px;
}

.services {
  background:
    radial-gradient(circle at 80% 10%, rgba(25, 184, 255, 0.14), transparent 34%),
    var(--night);
}

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

.service-card,
.package-grid article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.service-card {
  min-height: 300px;
  padding: 28px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  border: 1px solid rgba(215, 184, 93, 0.52);
  border-radius: 8px;
  color: var(--gold-bright);
  font-weight: 900;
}

.method {
  background: #101214;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 230px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: #131820;
}

.timeline span {
  display: block;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 2.4rem;
  font-weight: 900;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.85fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 88px);
  background: linear-gradient(135deg, #080b11, #151717 54%, #211c12);
}

.showcase-media img {
  width: min(560px, 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-copy {
  max-width: 650px;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #dce7f4;
}

.feature-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(25, 184, 255, 0.6);
  content: "";
}

.portfolio {
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 184, 93, 0.14), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(25, 184, 255, 0.12), transparent 34%),
    #0b0f17;
}

.portfolio-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(109, 215, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.portfolio-preview {
  overflow: hidden;
  border: 1px solid rgba(215, 184, 93, 0.28);
  border-radius: 8px;
  background: #090c12;
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #111720;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.browser-bar span:nth-child(2) {
  background: var(--cyan);
}

.browser-bar span:nth-child(3) {
  background: #25d366;
}

.portfolio-screen {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #050609;
}

.portfolio-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.portfolio-copy h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.portfolio-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.portfolio-link {
  width: fit-content;
  margin-top: 28px;
}

.packages {
  background: #f7f7fb;
  color: #111318;
}

.packages .section-kicker {
  color: #7a611d;
}

.package-grid article {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border-color: #dfe2ea;
  box-shadow: 0 18px 45px rgba(13, 17, 26, 0.06);
}

.package-grid p {
  color: #515c6d;
}

.package-grid span {
  display: inline-block;
  margin-top: 22px;
  color: #096a9d;
  font-weight: 800;
}

.package-grid .featured-package {
  background: #111823;
  color: var(--text);
  border-color: rgba(25, 184, 255, 0.42);
}

.featured-package p {
  color: #bac4d5;
}

.featured-package span {
  color: var(--gold-bright);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(6, 8, 13, 0.92), rgba(9, 21, 32, 0.84)),
    url("assets/logofinal.png") center / cover no-repeat;
}

.contact h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  background: #050609;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.site-footer p {
  margin-bottom: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-text,
  .section-heading,
  .showcase,
  .portfolio-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-logo img,
  .showcase-media img {
    width: min(420px, 100%);
  }

  .trust-strip,
  .service-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

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

  .contact .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
  }

  .brand span {
    max-width: 90px;
    line-height: 1.05;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .button {
    width: 100%;
  }

  .portfolio-link {
    width: 100%;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}
