:root {
  --color-bg: #222020;
  --color-primary: #929292;
  --color-highlight: #ff7527;
  --color-text: #f5f5f5;
  --color-muted: #b3b3b3;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100dvh;
}

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: radial-gradient(circle at top left, #2d2623, var(--color-bg));
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
}

.btn:hover {
  background: var(--color-highlight);
  color: #222020;
  transform: translateY(-2px);
  border-color: var(--color-highlight);
}

/* Layout */
.landing-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

/* Card */
.landing-card {
  width: 100%;
  max-width: 560px;
  padding: 0 2.2rem 2.2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 117, 39, 0.06),
    rgba(0, 0, 0, 0.24)
  );
  background-attachment: fixed;
  background-size: cover;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.small-logo {
  height: 140px;
  width: auto;
}

.landing-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1.5rem;
}

.landing-hero .landing-lead {
  margin-top: 0.5rem;
  color: var(--color-primary);
}

.landing-lead {
  margin: 0;
  font-weight: bold;
}

/* Content section */
.landing-section {
  margin-top: 1.5rem;
  text-align: left;
}

.landing-section h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: var(--color-text);
}

.landing-section h3 {
  margin: 1rem 0 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.landing-section p {
  margin: 0 0 1rem 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
  margin: 0.5rem 0 1rem 0;
}

.service-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.service-list li {
  margin: 0 0 0.35rem 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.service-list li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--color-highlight);
}

/* Contact buttons */
.landing-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.landing-links .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  object-fit: contain;
}

.landing-links .btn {
  display: inline-flex;
  align-items: center;
}

/* Footer */
.card-footer {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: var(--color-muted);
}

.card-footer .footer-contact {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.card-footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.card-footer .footer-contact a {
  color: var(--color-muted);
  text-decoration: none;
}

.card-footer .footer-contact a:hover {
  color: var(--color-highlight);
}

.card-footer .footer-copyright {
  margin-top: 0.6rem;
  width: 100%;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.7rem;
}

@media (max-width: 520px) {
  .landing-page {
    display: block;
    min-height: 100dvh;
  }

  .landing-wrap {
    padding: 0;
    min-height: 100dvh;
    display: flex;
  }

  .landing-card {
    flex: 1;
    min-height: 100dvh;
    max-width: 100%;

    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .small-logo {
    height: 96px;
  }

  .btn {
    padding: 0.45rem 0.8rem;
  }

  .card-footer .footer-contact {
    flex-direction: column;
    gap: 0.8rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }
}
