* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #070707;
  --panel: #0f0f0f;
  --muted: #c8c1b2;
  --gold: #d4b24c;
  --gold-2: #b58f2f;
  --glass: rgba(255, 255, 255, .04);
  --maxw: 1200px;
  --nav-h: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.muted {
  color: var(--muted);
}

.gold {
  background: linear-gradient(90deg, var(--gold), #f0dd8a, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 26px) 64px 72px;
}

section {
  margin-top: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

section:last-of-type {
  border-bottom: none;
}

h2 {
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  margin: 6px auto 15px;
  border-radius: 2px;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 64px;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
}

.text .company {
  font: 800 20px/1 "Montserrat", sans-serif;
  letter-spacing: .3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), #f0dd8a, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text .tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

h1,
h2,
h3,
h4,
h5,
.company,
.btn,
.nav-link,
.drop-toggle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
}

.menu .nav-link {
  color: var(--muted);
  padding: 6px 10px;
  position: relative;
  transition: .2s ease;
}

.menu .nav-link:hover {
  color: #fff;
}

.menu .nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s ease;
}

.menu .nav-link:hover::after {
  transform: scaleX(1);
}

.menu .cta {
  background: var(--gold);
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
  transition: .25s;
}

.menu .cta:hover {
  background: linear-gradient(90deg, #ffe48b, var(--gold), #c79f2e);
  box-shadow: 0 0 18px rgba(255, 224, 130, .6);
  transform: translateY(-2px) scale(1.02);
}

.dropdown {
  position: relative;
}

.drop-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

.drop-toggle::after {
  content: "▼";
  font-size: 12px;
  color: var(--muted);
  transition: .2s;
}

.dropdown.open .drop-toggle::after {
  color: var(--gold);
}

.drop-menu {
  position: absolute;
  right: 0;
  display: none;
  min-width: 260px;
  max-height: 320px;
  padding: 10px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  overflow-y: auto;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s ease-in-out;
}

.dropdown.open .drop-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-menu li a {
  display: block;
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 6px;
  transition: .2s;
}

.drop-menu li a:hover {
  background: rgba(212, 178, 76, .12);
  color: #fff;
}

.drop-menu::-webkit-scrollbar {
  width: 6px;
}

.drop-menu::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 6px;
}

.drop-menu::-webkit-scrollbar-track {
  background: transparent;
}

.hamburger {
  display: none;
  position: relative;
  width: 34px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: transform .25s, opacity .2s, background .2s, top .25s;
}

.hamburger span:nth-child(1) {
  top: 4px;
}

.hamburger span:nth-child(2) {
  top: 12px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger:hover span {
  background: var(--gold);
}

.hamburger.is-open span {
  background: var(--gold);
}

.hamburger.is-open span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

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

.hamburger.is-open span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: 34px;
  font-weight: 800;
}

.hero-left p {
  margin: 12px 0;
  color: var(--muted);
}

.actions {
  margin-top: 16px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s;
  font-weight: 600;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 0 10px rgba(212, 178, 76, .4);
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  background: rgba(212, 178, 76, .1);
  transform: translateY(-2px);
}

.hero-right img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

#about {
  margin-top: 50px;
}

.about-clean {
  margin-top: 24px;
}

.about-clean .about-heading {
  font-size: 18px;
  margin-top: 6px;
}

.about-clean .about-list {
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.about-clean .about-list+.about-heading {
  margin-top: 28px;
}

.about-text {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #f1f1f1;
  font-size: 15.5px;
}

.about-bullets,
.about-list {
  margin-top: 12px;
  padding-left: 18px;
  list-style: none;
}

.about-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: #f1f1f1;
  line-height: 1.7;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 20px;
  line-height: 18px;
}

.tagline {
  margin-top: 12px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #fff;
}

#services {
  margin-top: 60px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  background: rgba(255, 255, 255, .03);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: .25s ease;
  border: 1px solid transparent;
  min-height: 140px;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(212, 178, 76, .15) inset;
  border-color: var(--gold);
}

.feature h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

#documentation {
  margin-top: 60px;
}

.doc-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px;
  margin-top: 12px;
}

#docTrack {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding-bottom: 6px;
}

#docTrack::-webkit-scrollbar {
  height: 6px;
}

#docTrack::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 6px;
}

#docTrack img {
  flex: 0 0 auto;
  width: 260px;
  height: 170px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(212, 178, 76, .25);
  transition: .3s;
}

#docTrack img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .6);
}

.scroll-btn {
  background: rgba(0, 0, 0, .6);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  position: absolute;
  top: 40%;
  z-index: 5;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

.doc-text {
  text-align: center;
}

#nib {
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: -1px;
}

#nib .nib-box {
  display: inline-block;
  background: rgba(212, 178, 76, 0.08);
  border: 1px solid rgba(212, 178, 76, 0.4);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Montserrat", sans-serif;
  letter-spacing: .7px;
}

#contact {
  margin-top: 60px;
}

.contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info {
  line-height: 1.6;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info h3 {
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-info strong {
  display: inline-block;
  margin-bottom: 2px;
  color: #fff;
}

.contact-info a {
  text-decoration: none;
  color: #d1b464;
  font-weight: 600;
  transition: .25s ease-in-out;
}

.contact-info a:hover {
  color: #e6c97c;
  text-decoration: underline;
}

.contact-info p i {
  color: #fff;
  margin-right: 8px;
  font-size: 16px;
  opacity: .9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 15px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--gold);
}

.btn-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

#form-status {
  background-color: #d4b24c;
  color: #000;
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  border-left: 4px solid #b9962e;
}

#send-again {
  color: var(--gold);
  font-weight: 600;
  margin-left: 6px;
  cursor: pointer;
}

#send-again:hover {
  text-decoration: underline;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-overlay.show {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 85%;
  border: 2px solid var(--gold);
  border-radius: 10px;
}

#lightboxClose,
#lightboxPrev,
#lightboxNext {
  position: absolute;
  background: rgba(0, 0, 0, .75);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

#lightboxClose {
  top: 20px;
  right: 20px;
}

#lightboxPrev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

#lightboxNext {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

#lightboxClose:hover,
#lightboxPrev:hover,
#lightboxNext:hover {
  background: rgba(212, 178, 76, .25);
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: .35s ease-in-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

body::-webkit-scrollbar {
  display: none;
}

.footer-strong {
  text-align: center;
  padding: 40px 0;
  background: #0a0a0a;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-line {
  width: 120px;
  height: 2px;
  margin: 0 auto 12px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.footer-title {
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  font-size: 16px;
}

.footer-sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.footer-info {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.footer-email a {
  color: var(--gold);
  font-size: 13px;
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}

.wa-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform .3s ease;
}

.wa-float img {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  transform: scale(1.1);
}

.social-media {
  margin-top: 20px;
}

.follow-text {
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  text-decoration: none;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all .3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--gold);
  color: #000;
}

:root {
  scroll-padding-top: 120px;
}

@media (min-width: 981px) {
  .dropdown:hover .drop-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown .drop-menu {
    pointer-events: auto;
  }
}

@media (max-width: 1200px) {
  .nav .wrap {
    padding: 14px 48px;
  }

  .container {
    padding: calc(var(--nav-h) + 24px) 48px 64px;
  }

  .hero {
    grid-template-columns: 1fr 400px;
  }
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hamburger {
    display: inline-block;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    background: rgba(15, 15, 15, .97);
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    gap: 16px;
    transition: right .3s ease;
    z-index: 999;
  }

  .menu.active {
    right: 0;
  }

  .menu .nav-link,
  .menu .cta,
  .dropdown {
    display: block;
    margin-left: 20px;
  }

  #serviceDropdown {
    position: relative;
    z-index: 2000;
  }

  #serviceDropdown .drop-menu {
    position: relative;
    background: rgba(25, 25, 25, .95);
    margin-left: 10px;
    border-radius: 8px;
    max-height: 280px;
    overflow-y: auto;
    padding: 10px 6px 10px 10px;
    display: none;
    list-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
  }

  .dropdown.open .drop-menu {
    display: block;
  }

  #serviceDropdown .drop-menu::-webkit-scrollbar {
    width: 6px;
  }

  #serviceDropdown .drop-menu::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 6px;
  }

  #serviceDropdown .drop-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .menu .dropdown {
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
  }

  .menu .drop-toggle {
    width: 100%;
    margin: 0 auto !important;
    text-align: center;
    display: block;
  }

  .menu .drop-menu {
    width: 90%;
    margin: 8px auto 0;
    text-align: left;
  }

  .nav .wrap {
    padding: 14px 32px;
  }

  .container {
    padding: calc(var(--nav-h) + 22px) 32px 56px;
  }

  .scroll-btn {
    display: none;
  }

  .contact {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 520px;
    text-align: left;
  }

  .contact-info {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
  }

  :root {
    scroll-padding-top: 100px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: url("assets/foto1.png") center/cover no-repeat;
    padding: 74px 18px 94px;
    border-radius: 12px;
    position: relative;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
  }

  .hero-left {
    position: relative;
    z-index: 1;
  }

  .hero-right {
    display: none;
  }

  .hero-left h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .nav .wrap {
    padding: 14px 16px;
  }

  .container {
    padding: calc(var(--nav-h) + 18px) 16px 48px;
  }

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

  #docTrack img {
    width: 200px;
    height: 130px;
  }

  .about-text {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  body {
    word-wrap: break-word;
  }

  .feature {
    padding: 14px;
  }
}

/* Footer email fix */
.footer-email {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.footer-email a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
}

.footer-email a:hover {
  opacity: 0.8;
}

@media (max-width: 980px) {
  #serviceDropdown.open .drop-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #serviceDropdown .drop-menu {
    width: 90%;
    margin: 8px auto 0;
    text-align: left;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(212, 178, 76, 0.2);
  }
}