:root {
  --bg: #000000;
  --bg-soft: #0b0b0b;
  --panel: #111111;
  --panel-2: #171717;
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #c9c9c9;
  --muted-2: #909090;
  --cyan: #3cd7e6;
  --orange: #f08e48;
  --purple: #a56cff;
  --red: #ff5d4f;
  --green: #25d366;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.c1 {
  color: var(--cyan);
}

.c2 {
  color: var(--orange);
}

.c3 {
  color: var(--purple);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.menu a,
.legal-mini a {
  font-size: 0.94rem;
  font-weight: 600;
  color: #f3f3f3;
  transition: 0.2s ease;
}

.menu a:hover,
.legal-mini a:hover,
.footer-links-bottom a:hover {
  color: var(--orange);
}

.legal-mini {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.86) 45%, rgba(0, 0, 0, 0.7) 100%),
    #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.12;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(255, 93, 79, 0.12), transparent 25%),
    radial-gradient(circle at right center, rgba(165, 108, 255, 0.12), transparent 28%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 80px 0;
}

.small-tag {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 0.95;
}

.small-tag.second {
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-subline {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: white;
}

.hero-btn:hover,
.feature-btn:hover,
.pay-btn:hover,
.submit-btn:hover,
.social-btn:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

.hero-contact-lines {
  display: grid;
  gap: 8px;
  color: #f0f0f0;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-gallery img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}


.hero-logo {
  width: min(100%, 510px);
  opacity: 0.96;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
}

/* General Sections */

.section {
  padding: 90px 0;
}

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

.section-head.left {
  margin-bottom: 18px;
}

.section-line {
  display: inline-block;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--red), var(--orange));
  margin-bottom: 14px;
}

.section-kicker {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-head p,
.text-muted,
.service-card p,
.extra-info-box p,
.info-box li,
.legal-box p,
.payment-box p,
.feature-box li,
.video-box p,
small,
.legal-page-box p {
  color: var(--muted);
}

/* Cards and Boxes */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.info-box,
.contact-form,
.legal-box,
.payment-box,
.feature-box,
.video-box,
.extra-info-box,
.legal-page-box {
  background: linear-gradient(180deg, #121212, #0c0c0c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 26px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 142, 72, 0.5);
}

.service-card h3,
.info-box h3,
.feature-box h3,
.payment-box h3,
.legal-box h4 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 12px;
}

.extra-info-box {
  margin-top: 26px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--orange);
  font-weight: 700;
}

.dark-section {
  background: #060606;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: start;
}

.feature-box,
.payment-box,
.info-box,
.legal-box {
  padding: 26px;
}

.feature-box ul,
.info-box ul {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.feature-btn,
.pay-btn {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.payment-box small {
  display: block;
  margin-top: 12px;
}

/* Video */

.video-box {
  padding: 18px;
}

.video-placeholder {
  min-height: 300px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #090909;
}

.video-placeholder span {
  font-size: 3rem;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

/* Contact Form */

.contact-form {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid var(--line);
  color: white;
  padding: 14px 16px;
  border-radius: 12px;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f8f8f;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(240, 142, 72, 0.6);
}

.submit-btn {
  border: none;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

/* WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1000;
  background: var(--green);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transition: 0.25s ease;
}

/* Footer */

.footer {
  background: #030303;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
}

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

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

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

.social-btn {
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: white;
  transition: 0.25s ease;
}

.facebook {
  background: #1877f2;
}

.youtube {
  background: #ff0000;
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.footer-links-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links-bottom a {
  color: var(--muted);
  font-weight: 600;
  transition: 0.2s ease;
}

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

/* Legal Pages */

.legal-page {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: #050505;
}

.legal-page-box {
  max-width: 800px;
  padding: 36px;
}

.legal-page-box h1 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .legal-sections {
    grid-template-columns: 1fr;
  }

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

  .hero-right {
    order: -1;
  }

  .hero-logo {
    width: min(100%, 360px);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 76px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: #0a0a0a;
    border: 1px solid var(--line);
    padding: 16px;
    border-radius: 14px;
    min-width: 220px;
  }

  .menu.active {
    display: flex;
  }

  .legal-mini {
    display: none;
  }

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

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .brand-logo,
  .footer-logo {
    width: 46px;
    height: 46px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
  }

  .legal-page-box {
    padding: 24px;
  }
}
