:root {
  --bg: #0B0F14;
  --surface: #101826;
  --text: #EAF0F7;
  --muted: #A9B4C0;
  --brand: #FFB703;
  --brand2: #2EC4B6;
  --line: rgba(255, 255, 255, 0.10);
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top right, #15253d 0%, var(--bg) 42%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5.4rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-head.left {
  margin-bottom: 1.3rem;
}

.eyebrow {
  color: var(--brand2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
}

.lead,
.small-note {
  color: var(--muted);
}

.btn {
  border: 1px solid transparent;
  background: var(--brand);
  color: #1f1500;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  border-radius: 0.75rem;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: #ffd267;
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  min-width: 0;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(46, 196, 182, 0.2);
  color: var(--brand2);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.logo-text strong {
  color: var(--brand);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  white-space: nowrap;
}

.desktop-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
}

.desktop-nav a.active,
.mobile-nav a.active {
  color: var(--brand);
}

.btn-header {
  justify-self: end;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
}

.hero-copy .lead {
  font-size: 1.1rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-chips li {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.4rem 0.8rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

.services-grid,
.essentials-grid,
.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%), var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.service-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  background: rgba(255, 183, 3, 0.12);
  margin-bottom: 0.75rem;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 190px;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  color: var(--brand2);
  font-weight: 700;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 220px;
  object-fit: cover;
}

.product-card h3,
.product-card p {
  padding-inline: 1rem;
}

.product-card h3 {
  padding-top: 0.9rem;
}

.product-card p {
  color: var(--muted);
  padding-bottom: 1rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--surface);
  min-height: 156px;
}

.steps span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand2);
  color: #002520;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.steps h3 {
  font-size: 1rem;
}

.masonry-gallery {
  columns: 3 220px;
  column-gap: 0.9rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  margin: 0 0 0.9rem;
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  transition: transform 0.25s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
}

.review-card p {
  margin-top: 0;
  color: var(--muted);
}

.stars {
  color: var(--brand);
  letter-spacing: 0.08em;
  font-size: 1.02rem;
}

.review-card h3 {
  font-size: 1rem;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pricing-card.featured {
  border-color: rgba(46, 196, 182, 0.6);
}

.price {
  margin: 0;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  color: var(--brand);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.pricing-card ul li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.pricing-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand2);
}

.pricing-disclaimer {
  color: var(--muted);
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  background: var(--surface);
}

.faq-trigger {
  width: 100%;
  border: 0;
  text-align: left;
  background: transparent;
  color: var(--text);
  padding: 1rem 1.1rem;
  font: inherit;
  font-family: "Outfit", sans-serif;
  font-size: 1.03rem;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-content p {
  margin: 0;
  color: var(--muted);
  padding: 0 1.1rem 1rem;
}

.faq-item.active .faq-content {
  max-height: 180px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 1.1rem;
  align-items: start;
}

.contact-grid > * {
  min-width: 0;
}

.contact-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-side .side-box {
  width: 100%;
}

form {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

input,
select,
textarea {
  border: 1px solid var(--line);
  background: #0e1522;
  color: var(--text);
  border-radius: 0.7rem;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand2);
  outline-offset: 2px;
}

#form-message {
  margin-top: 0.8rem;
  font-weight: 600;
}

.side-box h3 {
  margin-bottom: 0.5rem;
}

.side-box p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 1.2rem;
}

.footer-grid {
  padding: 3rem 0 1.6rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.75rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.socials {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.socials a {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
}

.socials svg {
  width: 1rem;
  height: 1rem;
}

.copyright {
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  padding: 1rem 0;
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 12, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: min(90vw, 860px);
  max-height: 80vh;
  object-fit: cover;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(16, 24, 38, 0.8);
  color: var(--text);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-nav.prev {
  left: 1.2rem;
}

.lightbox-nav.next {
  right: 1.2rem;
}

.floating-cta {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 1100;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: var(--brand);
  color: #1f1500;
  font-weight: 800;
  display: none;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: minmax(170px, 1fr) auto;
  }

  .desktop-nav,
  .btn-header {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 0.28rem;
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.52rem;
  }

  .menu-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: var(--white);
  }

  .mobile-menu {
    display: block;
    border-top: 1px solid var(--line);
    background: rgba(11, 15, 20, 0.97);
  }

  .mobile-nav {
    width: min(1140px, 92vw);
    margin: 0 auto;
    padding: 1rem 0;
    display: grid;
    gap: 0.75rem;
  }

  .mobile-nav a {
    color: var(--muted);
    font-weight: 600;
  }

  .mobile-nav .btn {
    margin-top: 0.3rem;
    color: #1f1500;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .services-grid,
  .essentials-grid,
  .reviews-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-cta {
    display: inline-flex;
  }
}

@media (max-width: 1220px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .field-grid {
    grid-template-columns: 1fr;
  }

  form {
    padding: 0.85rem;
  }

  input,
  select,
  textarea {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4.4rem 0;
  }

  .services-grid,
  .essentials-grid,
  .reviews-grid,
  .pricing-grid,
  .footer-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .gallery-item img,
  .product-card img {
    height: 220px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .contact-side .btn {
    width: 100%;
  }
}
