:root {
  --bg: #11161d;
  --panel: #1a222b;
  --panel-2: #24323a;
  --coral: #ff7a59;
  --teal: #36c6b5;
  --gold: #f4c95d;
  --white: #f8f7f3;
  --text: #d7dce2;
  --muted: #a5afb8;
  --border: #2e3945;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-wrap: anywhere;
  line-height: 1.65;
}
h1,
h2,
h3 {
  font-family: "Sora", "Arial", sans-serif;
  color: var(--white);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  margin: 0.5rem 0 1rem;
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1160px, calc(100% - 3rem));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17, 22, 29, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 220, 226, 0.1);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: Sora, Arial;
  font-size: 1.2rem;
  font-weight: 700;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.nav-links a:hover,
.nav-links a.active {
  color: #ff9470;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.7rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(120deg, var(--coral), #ff9470);
  color: #171b20;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 12px 30px rgba(255, 122, 89, 0.2);
}
.btn:hover {
  color: #171b20;
  transform: translateY(-4px);
  background: linear-gradient(120deg, var(--teal), #55ded0);
  box-shadow: 0 15px 35px rgba(54, 198, 181, 0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  box-shadow: none;
}
.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 22, 29, 0.94) 5%, rgba(17, 22, 29, 0.45)),
    url("/images/1.jpg") center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(130px);
  opacity: 0.12;
  right: -12rem;
  top: -8rem;
}
.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}
.hero p {
  font-size: 1.15rem;
  max-width: 650px;
  color: var(--text);
}
.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.section {
  padding: 7rem 0;
}
.section-alt {
  background: var(--panel);
}
.section-head {
  max-width: 650px;
  margin-bottom: 3rem;
}
.section-head p {
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 1.2rem;
}
.services-grid {
  grid-template-columns: repeat(5, 1fr);
}
.card {
  background: rgba(36, 50, 58, 0.62);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 15px 35px rgba(54, 198, 181, 0.1);
}
.card p {
  font-size: 0.92rem;
  color: var(--muted);
}
.icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.arrow {
  color: var(--coral);
  font-size: 1.5rem;
  display: inline-block;
  transition: 0.3s;
}
.card:hover .arrow {
  transform: translateX(6px);
}
.three {
  grid-template-columns: repeat(3, 1fr);
}
.four {
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  padding: 1.3rem 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.feature:before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  background: var(--coral);
  margin-bottom: 1rem;
  border-radius: 4px;
}
.feature:nth-child(2):before {
  background: var(--teal);
}
.feature:nth-child(3):before {
  background: var(--gold);
}
.feature p {
  color: var(--muted);
}
.collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.collage img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}
.collage img:first-child {
  grid-row: span 2;
}
.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 4rem;
  align-items: center;
}
.split > .image-card {
  width: 100%;
  max-width: 460px;
  height: 420px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: var(--radius);
}
.quote {
  font-family: Sora;
  font-size: clamp(1.7rem, 3vw, 3rem);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  max-width: 850px;
  margin: auto;
}
.page-hero {
  padding: 7rem 0 5rem;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(54, 198, 181, 0.15),
      transparent 35%
    ),
    var(--panel);
}
.page-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}
.service-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.service-row img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}
.service-row p {
  color: var(--muted);
  max-width: 700px;
}
.faq {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  padding: 1.4rem 0;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.faq summary:after {
  content: "+";
  color: var(--teal);
  font-size: 1.4rem;
}
.faq[open] summary:after {
  content: "−";
}
.faq p {
  color: var(--muted);
  padding: 0 2rem 1rem 0;
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.form-card {
  background: var(--panel);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
label {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0.9rem 0 0.35rem;
}
input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #11161d;
  color: var(--white);
  font: inherit;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
input:focus,
textarea:focus {
  outline: 2px solid var(--teal);
  border-color: transparent;
}
.form-message {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(54, 198, 181, 0.15);
  color: var(--teal);
  margin-top: 1rem;
}
.form-message.show {
  display: block;
}
.contact-list {
  display: grid;
  gap: 1.5rem;
}
.contact-item strong {
  display: block;
  color: var(--white);
}
.contact-item span,
.contact-item a {
  color: var(--muted);
}
.map {
  min-height: 250px;
  background: linear-gradient(135deg, var(--panel-2), #172029);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--teal);
  margin-top: 2rem;
}
.legal {
  padding: 5rem 0;
}
.legal article {
  max-width: 800px;
}
.legal h2 {
  font-size: 1.45rem;
  margin-top: 2.3rem;
}
.legal p {
  color: var(--muted);
}
.cta {
  padding: 4rem;
  border-radius: 32px;
  background: linear-gradient(125deg, #3a3535, #263a3b);
  text-align: center;
}
.site-footer {
  background: #0b0f14;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.site-footer h3 {
  font-size: 1rem;
}
.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer a:hover {
  color: var(--teal);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  color: var(--muted);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .four {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    gap: 0.7rem;
  }
}
@media (max-width: 767px) {
  .form-card {
    padding: 1rem;
  }
  .container {
    width: calc(100% - 2rem);
  }
  .section,
  .page-hero,
  .legal {
    padding-inline: 1rem;
  }
  .nav {
    height: 72px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--panel);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .hero-content {
    padding: 5rem 0;
  }
  .services-grid,
  .three,
  .four,
  .split,
  .form-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .collage img:first-child {
    grid-row: auto;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-row img {
    width: 100%;
    height: 220px;
    border-radius: 20px;
  }
  .cta {
    padding: 2.5rem 1.2rem;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
