:root {
  --dracula: #2d3436;
  --clouds: #ecf0f1;
  --yellow: #f9a01b;
  --orange: #ff914d;
  --white: #ffffff;
  --muted: #667174;
  --line: rgba(45, 52, 54, 0.13);
  --dark-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 50px rgba(45, 52, 54, 0.12);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--clouds);
  color: var(--dracula);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--dracula);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  top: 15px;
}

.topbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 12px 20px 0;
  pointer-events: none;
}

.topbar {
  width: min(1160px, 100%);
  pointer-events: auto;
}

.nav {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.66), rgba(236, 240, 241, 0.5));
  box-shadow: 0 10px 28px rgba(45, 52, 54, 0.06);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.topbar.scrolled .nav {
  border-color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(236, 240, 241, 0.72));
  box-shadow: 0 14px 34px rgba(45, 52, 54, 0.13);
  transform: translateY(2px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 180px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 180px;
  height: 50px;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
  color: #5d686b;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.nav-links a {
  display: inline-block;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #c9760d;
}

.nav-cta {
  justify-self: end;
  width: 180px;
  padding-right: 14px;
  padding-left: 14px;
  white-space: nowrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  overflow: hidden;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: var(--dracula);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn::before {
  position: absolute;
  top: 0;
  left: -110%;
  width: 65%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn:hover::before,
.btn:focus::before {
  left: 150%;
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 14px 27px rgba(45, 52, 54, 0.2);
}

.btn-primary {
  background: linear-gradient(130deg, var(--yellow), var(--orange));
  color: var(--dracula);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 9px 18px rgba(249, 160, 27, 0.2);
}

.btn-outline {
  border-color: rgba(45, 52, 54, 0.13);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.22));
  color: var(--dracula);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 7px 18px rgba(45, 52, 54, 0.04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(255, 255, 255, 0.88);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #159b88, #18aa95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 10px 20px rgba(21, 155, 136, 0.22);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--dracula);
  font-size: 1.65rem;
  cursor: pointer;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 120px 0 48px;
}

.hero::before {
  position: absolute;
  top: -220px;
  right: -150px;
  width: 610px;
  height: 610px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 160, 27, 0.22), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 590px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9760d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  content: "";
}

h1,
h2,
h3 {
  margin: 16px 0;
  color: var(--dracula);
  font-family: "Questrial", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  max-width: 570px;
  margin-top: 14px;
  font-size: clamp(2.55rem, 4.35vw, 4.25rem);
  line-height: 0.98;
}

h1 span {
  background: linear-gradient(100deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 535px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.trust-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.25));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 22px rgba(45, 52, 54, 0.035);
  color: #687376;
  font-size: 0.9rem;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.trust-item b {
  display: block;
  color: var(--dracula);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  max-height: 480px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 22px 35px rgba(45, 52, 54, 0.13));
}

.floating-card {
  position: absolute;
  bottom: 24px;
  left: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.floating-card strong {
  display: block;
  color: #c9760d;
  font-size: 1.45rem;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 735px;
  margin-bottom: 38px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dracula), #404a4d);
}

.dark-section::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 160, 27, 0.28), transparent 68%);
  content: "";
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-head p {
  color: #c8d0d2;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 258px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.service-card::before {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 160, 27, 0.19), transparent 68%);
  content: "";
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.075));
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 15px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 16px rgba(249, 160, 27, 0.18);
  color: var(--dracula);
  font-size: 1.25rem;
  font-weight: 900;
}

.dark-section .service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

.dark-section .service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: #d5dcde;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

.dark-section .service-card a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 345px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  background: linear-gradient(145deg, var(--yellow), var(--orange));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), var(--shadow);
}

.about-card h3 {
  max-width: 370px;
  font-size: 2rem;
}

.about-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dracula);
  font-weight: 900;
  content: "✓";
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 30px rgba(45, 52, 54, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.process-number {
  color: var(--yellow);
  font-family: "Questrial", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 0;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.32));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 8px 20px rgba(45, 52, 54, 0.025);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-section {
  padding-top: 20px;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 46px 50px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 32px;
  background: linear-gradient(120deg, var(--yellow), var(--orange));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), var(--shadow);
}

.contact-box h2 {
  max-width: 685px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.65rem);
}

.contact-box p {
  margin: 12px 0 0;
  color: #4d4541;
}

.footer {
  margin-top: 70px;
  padding: 42px 0;
  background: var(--dracula);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.footer p,
.footer address,
.footer small {
  color: #b9c1c3;
}

.footer address {
  font-style: normal;
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--yellow);
}

.footer-logo {
  filter: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(21, 155, 136, 0.95), rgba(24, 170, 149, 0.88));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.27), 0 12px 28px rgba(21, 155, 136, 0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-4px);
  background: #108775;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 165px minmax(0, 1fr) 165px;
    padding: 0 14px;
  }

  .brand {
    width: 155px;
  }

  .brand-logo {
    width: 155px;
    max-width: 155px;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.76rem;
  }

  .nav-cta {
    width: 165px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.76rem;
  }
}

@media (max-width: 900px) {
  .topbar-wrap {
    padding: 10px 14px 0;
  }

  .nav {
    position: relative;
    display: flex;
    min-height: 62px;
    padding: 0 12px 0 16px;
    border-radius: 18px;
  }

  .brand {
    width: 165px;
  }

  .brand-logo {
    width: 165px;
    height: 46px;
    max-width: 165px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    width: min(280px, calc(100vw - 28px));
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
    white-space: normal;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    white-space: normal;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 72px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(2.65rem, 8vw, 4.35rem);
  }

  .hero-visual {
    min-height: 340px;
    max-width: 680px;
  }

  .hero-image {
    max-height: 380px;
  }

  .floating-card {
    bottom: 12px;
    left: 14px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 252px;
  }

  .dark-section .service-card h3 {
    font-size: 1.12rem;
  }

  .dark-section .service-card p,
  .dark-section .service-card a {
    font-size: 0.96rem;
  }

  .contact-box {
    display: block;
    padding: 36px;
  }

  .contact-box .btn {
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar-wrap {
    padding: 8px 10px 0;
  }

  .nav {
    border-radius: 16px;
  }

  .brand {
    width: 150px;
  }

  .brand-logo {
    width: 150px;
    height: 44px;
    max-width: 150px;
  }

  .hero {
    padding: 108px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
    line-height: 1;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 270px;
  }

  .hero-image {
    max-height: 300px;
  }

  .floating-card {
    bottom: 0;
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .floating-card strong {
    font-size: 1.25rem;
  }

  .trust-strip,
  .service-grid,
  .process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 65px 0;
  }

  .service-card {
    min-height: auto;
    padding: 25px;
  }

  .dark-section .service-card h3 {
    font-size: 1.14rem;
  }

  .dark-section .service-card p,
  .dark-section .service-card a {
    font-size: 0.98rem;
  }

  .contact-box {
    padding: 30px;
  }

  .footer-logo {
    width: 180px;
    max-width: 180px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 14px 17px;
  }

  .whatsapp-float span:first-child {
    display: none;
  }
}