﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Orbitron:wght@600;700;800;900&display=swap');

:root {
  --green: #7ed321;
  --dark-green: #2e7d32;
  --black: #111111;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #111;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hide {
  visibility: hidden;
  opacity: 0;
}

.loader img {
  width: 150px;
  height: 150px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 0 50px rgba(126, 211, 33, 0.35);
  animation: logoPop 1.5s ease both;
}

.loader span {
  width: 250px;
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: lineIn 1.4s ease both;
}

.loader p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.cursor {
  position: fixed;
  z-index: 90;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(126, 211, 33, 0.75);
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
  box-shadow: 0 0 24px rgba(126, 211, 33, 0.28);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(22px);
}

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

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
}

.brand strong {
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.brand span,
h1 span,
.eyebrow,
.portfolio-item strong {
  color: var(--green);
}

.site-header nav {
  display: flex;
  gap: 22px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #fff;
}

.site-header nav a,
.header-cta {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-header nav a:hover {
  color: var(--green);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #061000;
  box-shadow: 0 0 32px rgba(126, 211, 33, 0.28);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 88px;
}

#network,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background: radial-gradient(circle at 50% 35%, rgba(126, 211, 33, 0.16), transparent 36%), linear-gradient(180deg, rgba(17, 17, 17, 0.38), #111 88%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 88px);
  padding: 68px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--green);
  color: #061000;
  box-shadow: 0 0 34px rgba(126, 211, 33, 0.34);
}

.ghost {
  border: 1px solid var(--line);
  color: #fff;
}

.ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
}

.hero-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(126, 211, 33, 0.35);
  border-radius: 34px;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(126, 211, 33, 0.06));
  box-shadow: 0 26px 90px rgba(126, 211, 33, 0.2);
  backdrop-filter: blur(20px);
}

.hero-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.06) saturate(1.08);
}

.mini-stats {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: -26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-stats div {
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.75);
  text-align: center;
  backdrop-filter: blur(16px);
}

.mini-stats strong {
  display: block;
  color: var(--green);
  font-size: 22px;
}

.mini-stats small {
  color: rgba(255, 255, 255, 0.55);
}

.section {
  padding: 108px 0;
}

.section-head {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2,
.contact h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-head p:not(.eyebrow),
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.service-grid article,
.process-grid article,
.testimonial-grid article,
.stats-grid article {
  border-radius: 28px;
  padding: 26px;
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(126, 211, 33, 0.12);
  color: var(--green);
  font-weight: 950;
}

.service-grid h3,
.process-grid h3 {
  font-size: 20px;
}

.service-grid p,
.process-grid p,
.pricing-card p,
.testimonial-grid p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.process {
  position: relative;
}

.process::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(126, 211, 33, 0.42), transparent);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-grid b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border: 1px solid rgba(126, 211, 33, 0.4);
  border-radius: 999px;
  color: var(--green);
  font-size: 22px;
}

.pricing-toggle,
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.pricing-toggle {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.pricing-toggle button,
.filters button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
  cursor: pointer;
}

.pricing-toggle button {
  padding: 13px 22px;
}

.filters button {
  padding: 12px 18px;
  border-color: var(--line);
}

.pricing-toggle button.active,
.filters button.active {
  background: var(--green);
  color: #061000;
  box-shadow: 0 0 28px rgba(126, 211, 33, 0.28);
}

.pricing-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 18px;
  scrollbar-color: rgba(126, 211, 33, 0.75) rgba(255, 255, 255, 0.08);
}

.pricing-card {
  position: relative;
  flex: 0 0 318px;
  min-height: 620px;
  padding: 24px;
  border-radius: 28px;
}

.pricing-card.popular {
  border-color: rgba(126, 211, 33, 0.75);
  box-shadow: 0 0 54px rgba(126, 211, 33, 0.24);
}

.pricing-card,
.story-product,
.related-grid a {
  border-color: color-mix(in srgb, var(--accent, var(--green)) 42%, rgba(255, 255, 255, 0.12));
}

.theme-blue { box-shadow: 0 24px 90px rgba(56, 189, 248, 0.14); }
.theme-purple { box-shadow: 0 24px 90px rgba(168, 85, 247, 0.14); }
.theme-green,
.theme-neon { box-shadow: 0 24px 90px rgba(126, 211, 33, 0.18); }
.theme-cyan { box-shadow: 0 24px 90px rgba(34, 211, 238, 0.15); }
.theme-royal { box-shadow: 0 24px 90px rgba(65, 105, 225, 0.16); }
.theme-corporate { box-shadow: 0 24px 90px rgba(46, 125, 50, 0.22); }
.theme-silver { box-shadow: 0 24px 90px rgba(156, 163, 175, 0.14); }
.theme-platinum { box-shadow: 0 24px 90px rgba(229, 231, 235, 0.16); }
.theme-gold {
  border-color: rgba(212, 175, 55, 0.64) !important;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 36%), linear-gradient(135deg, rgba(255, 242, 170, 0.13), rgba(20, 15, 4, 0.72));
  box-shadow: 0 0 70px rgba(212, 175, 55, 0.26), inset 0 0 40px rgba(212, 175, 55, 0.08);
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--green);
  color: #061000;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.price {
  margin: 24px 0 4px;
  color: #fff;
  font-size: 42px;
  font-weight: 950;
}

.period {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.highlights,
.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.highlights li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.highlights li::before {
  margin-right: 10px;
  content: "\2713";
  color: var(--green);
}

.feature-list {
  max-height: 218px;
  overflow-y: auto;
  padding-right: 6px;
}

.feature-list li {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.45;
}

.feature-list b {
  color: rgba(255, 255, 255, 0.84);
}

.pricing-card .btn {
  width: 100%;
  margin-top: 24px;
}

.masonry {
  columns: 3 280px;
  column-gap: 18px;
}

.image-context {
  padding-top: 40px;
}

.image-context-grid,
.fold-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.image-context h2,
.fold-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.image-context p,
.fold-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.asset-frame,
.fold-visual {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: radial-gradient(circle at 50% 30%, rgba(126, 211, 33, 0.22), transparent 40%), rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.34);
}

.asset-frame img,
.fold-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.88;
}

.section-visual {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: radial-gradient(circle at 10% 50%, rgba(126, 211, 33, 0.16), transparent 34%), rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.section-visual img {
  width: 100%;
  height: 160px;
  border-radius: 22px;
  object-fit: cover;
  filter: brightness(1.05) saturate(1.08);
}

.section-visual h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.channel-card {
  display: grid;
  min-height: 160px;
  align-content: center;
  justify-items: center;
  border-radius: 26px;
  padding: 22px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.channel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(126, 211, 33, 0.65);
  box-shadow: 0 0 40px rgba(126, 211, 33, 0.2);
}

.channel-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: rgba(126, 211, 33, 0.12);
  color: var(--green);
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.channel-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.package-tabs {
  position: sticky;
  top: 86px;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 34px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.76);
  backdrop-filter: blur(18px);
}

.package-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-weight: 950;
  padding: 13px 18px;
}

.package-tabs button.active {
  background: var(--green);
  color: #061000;
}

.package-story {
  position: sticky;
  top: 150px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  min-height: 76vh;
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: radial-gradient(circle at 70% 20%, rgba(126, 211, 33, 0.14), transparent 36%), rgba(255, 255, 255, 0.045);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.story-copy {
  align-self: center;
}

.story-copy h3 {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.story-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: center;
}

.story-product {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.story-product:hover {
  box-shadow: 0 0 46px color-mix(in srgb, var(--accent, var(--green)) 26%, transparent);
}

.story-product span {
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent, var(--green));
  color: #061000;
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.story-product h4 {
  margin: 0 0 24px;
  font-size: 28px;
}

.story-product b {
  display: block;
  color: var(--accent, var(--green));
  font-size: 32px;
}

.story-product small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 800;
}

.portfolio-item {
  min-height: 270px;
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: 30px;
  padding: 30px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-study-card {
  min-height: 100%;
  margin: 0;
}

.case-study-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.case-study-card p b {
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-item.tall {
  min-height: 390px;
}

.portfolio-item small {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-item h3 {
  margin-top: 64px;
  font-size: 32px;
}

.portfolio-item strong {
  display: block;
  margin-top: 26px;
  font-size: 44px;
  line-height: 1;
}

.case-study-card strong {
  color: var(--green);
  font-size: clamp(28px, 3.2vw, 42px);
}

.stats-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-grid article {
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--green);
  font-size: 52px;
  line-height: 1;
}

.stats-grid span,
.testimonial-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.testimonial-grid p {
  min-height: 126px;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

.cta-band p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.whatsapp-inline {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 22px !important;
  color: #061000 !important;
}

.live-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: min(300px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(126, 211, 33, 0.4);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.86);
  box-shadow: 0 0 48px rgba(126, 211, 33, 0.22);
  backdrop-filter: blur(20px);
  animation: chatIn 0.7s ease both;
}

.live-chat.closed {
  display: none;
}

.live-chat p {
  margin: 0 26px 14px 0;
  color: #fff;
  font-weight: 900;
}

.live-chat button:not(.chat-close) {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #061000;
  cursor: pointer;
  font-weight: 950;
}

.chat-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.package-detail-page {
  background: #090909;
}

.package-gold {
  background: radial-gradient(circle at 65% 8%, rgba(212, 175, 55, 0.2), transparent 32%), #070604;
}

.package-gold .package-hero h1 span,
.package-gold .eyebrow {
  color: #d4af37;
}

.package-gold .primary {
  background: linear-gradient(135deg, #fff4b0, #d4af37 45%, #8a6d12);
  color: #090700;
  box-shadow: 0 0 46px rgba(212, 175, 55, 0.36);
}

.package-detail-page .site-header {
  position: fixed;
}

.package-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 96px;
}

.package-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 96px);
}

.package-price {
  border-color: color-mix(in srgb, var(--accent, var(--green)) 56%, rgba(255, 255, 255, 0.12));
  border-radius: 34px;
  padding: 28px;
}

.package-price small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.package-price strong {
  display: block;
  margin: 8px 0 18px;
  color: var(--accent, var(--green));
  font-size: 50px;
  line-height: 1;
}

.package-price b {
  display: block;
  color: #fff;
  font-size: 30px;
}

.detail-panel {
  padding: 110px 0;
}

.apple-fold {
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.included-grid article {
  border-radius: 24px;
  padding: 22px;
}

.included-grid h3 {
  color: var(--accent, var(--green));
  font-size: 18px;
}

.included-grid p,
details p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.comparison-wrap {
  overflow-x: auto;
  border-radius: 34px;
  padding: 28px;
}

.comparison-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-wrap th,
.comparison-wrap td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.comparison-wrap th {
  color: var(--accent, var(--green));
}

.comparison-wrap tr.active td {
  background: color-mix(in srgb, var(--accent, var(--green)) 12%, transparent);
}

.package-outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.package-outcome-list span {
  padding: 10px 13px;
  border: 1px solid color-mix(in srgb, var(--accent, var(--green)) 42%, rgba(255, 255, 255, 0.12));
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
}

details {
  margin-bottom: 14px;
  border-radius: 22px;
  padding: 20px;
}

summary {
  cursor: pointer;
  color: #fff;
  font-weight: 950;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-grid a {
  border-radius: 28px;
  padding: 26px;
}

.related-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--accent, var(--green));
  font-size: 34px;
}

.contact a {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.contact a:hover {
  color: var(--green);
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 28px;
  border-radius: 32px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  padding: 16px;
}

textarea {
  grid-column: 1 / -1;
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 77, 184, 0.72);
}

form .btn {
  grid-column: 1 / -1;
}

footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 750;
}

.footer-legal a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-legal a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

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

.socials a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.socials a:hover {
  border-color: var(--green);
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
}

@keyframes logoPop {
  from { opacity: 0; transform: scale(0.7) rotate(-4deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes lineIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes chatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

  .site-header nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(17, 17, 17, 0.94);
    backdrop-filter: blur(24px);
  }

  .site-header nav.open {
    display: flex;
  }

  .site-header nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-grid,
  .contact-grid,
  .image-context-grid,
  .section-visual,
  .fold-grid,
  .package-story,
  .package-hero-grid,
  .faq-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

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

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

  .package-story {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .package-tabs {
    position: relative;
    top: auto;
  }

  .section-visual img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
  }

  .header-cta {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-grid {
    padding: 44px 0 72px;
  }

  .hero-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .process-grid,
  .stats-grid,
  .channel-grid,
  .story-products,
  .included-grid,
  .related-grid,
  .case-study-grid,
  form {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    position: static;
    margin-top: 10px;
  }

  .pricing-card {
    flex-basis: 292px;
  }

  .cursor {
    display: none;
  }

  .package-hero-grid {
    min-height: auto;
    padding: 70px 0;
  }

  .package-price strong {
    font-size: 42px;
  }

  .live-chat {
    right: 12px;
    bottom: 12px;
  }
}

/* NETMARKX clean rebuild overrides */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(rgba(126, 211, 33, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(126, 211, 33, 0.16), transparent 34%),
    #0b0f14;
  background-size: 56px 56px, 56px 56px, auto, auto;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, transparent 0, rgba(126, 211, 33, 0.04) 50%, transparent 100%);
  background-size: 100% 8px;
  opacity: 0.28;
}

.site-header,
main,
footer,
.live-chat,
.cursor,
.loader {
  position: relative;
}

.site-header,
.cursor,
.loader,
.live-chat {
  position: fixed;
}

.container {
  width: min(1200px, calc(100% - 32px));
}

h1,
h2,
h3,
.brand strong,
.eyebrow,
.price,
.package-price strong,
.package-price b {
  font-family: "Orbitron", "Rajdhani", "Inter", sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-head {
  margin-bottom: 52px;
}

.section-head h2,
.contact h2,
.image-context h2,
.fold-copy h2 {
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-grid {
  gap: clamp(28px, 5vw, 72px);
}

.hero-card,
.asset-frame,
.fold-visual,
.section-visual,
.glass {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 16, 0.78);
}

.pricing-toggle {
  display: none;
}

.pricing-row {
  display: block;
  overflow: visible;
  padding-bottom: 0;
}

.pricing-class {
  margin-bottom: 34px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(126, 211, 33, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.25);
}

.class-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.class-heading span,
.class-heading a {
  border-radius: 999px;
  background: var(--green);
  color: #061000;
  font-weight: 900;
  padding: 10px 14px;
}

.class-heading h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(20px, 3vw, 30px);
}

.class-heading p {
  grid-column: 2 / 3;
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex: initial;
  flex-direction: column;
  min-width: 0;
  min-height: auto;
  padding: 20px;
  border-radius: 20px;
  border-color: color-mix(in srgb, var(--accent, var(--green)) 55%, rgba(255, 255, 255, 0.12));
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pricing-card:hover {
  border-color: var(--accent, var(--green));
  box-shadow: 0 0 34px color-mix(in srgb, var(--accent, var(--green)) 28%, transparent);
}

.package-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 16px color-mix(in srgb, var(--accent, var(--green)) 45%, transparent));
}

.package-icon.small {
  width: 46px;
  height: 46px;
}

.package-icon.hero-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
}

.pricing-card h3 {
  margin: 0 0 8px;
  min-height: 64px;
  color: #fff;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.card-description,
.pricing-card p {
  min-height: 62px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.price {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
}

.price small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.54);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlights {
  margin: 0 0 18px;
}

.highlights li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.pricing-card .btn {
  margin-top: auto;
  min-height: 42px;
  padding: 0 14px;
  font-size: 12px;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  background: var(--accent, var(--green));
  font-size: 10px;
}

.theme-magenta {
  border-color: rgba(255, 77, 184, 0.58) !important;
  box-shadow: 0 24px 90px rgba(255, 77, 184, 0.12);
}

.theme-violet {
  border-color: rgba(157, 78, 221, 0.58) !important;
  box-shadow: 0 24px 90px rgba(157, 78, 221, 0.14);
}

.channel-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.channel-card {
  min-height: 148px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.channel-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 999px;
  object-fit: cover;
  filter: drop-shadow(0 0 15px rgba(126, 211, 33, 0.28));
}

.channel-card span {
  display: none;
}

.package-story {
  position: relative;
  top: auto;
  min-height: auto;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 28px;
}

.story-products {
  gap: 24px;
}

.story-product {
  min-height: 210px;
  overflow: hidden;
}

.included-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.included-grid article,
.related-grid a,
details {
  overflow: hidden;
}

.comparison-wrap {
  max-width: 1200px;
}

.live-chat {
  right: 18px;
  bottom: 18px;
  width: 230px;
  padding: 14px;
  border-radius: 18px;
}

.live-chat p {
  margin-right: 20px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.35;
}

.live-chat button:not(.chat-close) {
  min-height: 36px;
  font-size: 12px;
}

.chat-close {
  top: 9px;
  right: 9px;
  width: 22px;
  height: 22px;
  font-size: 12px;
}

.section-visual {
  max-width: 1200px;
}

@media (max-width: 1100px) {
  .pricing-grid,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .class-heading {
    grid-template-columns: 1fr;
  }

  .class-heading p {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .pricing-grid,
  .included-grid,
  .channel-grid,
  .story-products {
    grid-template-columns: 1fr;
  }

  .pricing-class {
    padding: 14px;
    border-radius: 22px;
  }

  .pricing-card h3,
  .card-description,
  .pricing-card p {
    min-height: auto;
  }

  .package-story {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .live-chat {
    width: 176px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }

  .live-chat p {
    font-size: 11px;
  }

  .live-chat button:not(.chat-close) {
    min-height: 30px;
    font-size: 10px;
  }
}

/* Professional footer upgrade */
footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 28px;
  background:
    linear-gradient(180deg, rgba(126, 211, 33, 0.04), transparent 30%),
    radial-gradient(circle at 14% 18%, rgba(126, 211, 33, 0.16), transparent 28%),
    #050807;
  border-top: 1px solid rgba(126, 211, 33, 0.24);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(126, 211, 33, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.footer-premium {
  position: relative;
  display: grid;
  gap: 42px;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.footer-brand-block .brand {
  justify-content: flex-start;
}

.footer-brand-block .brand img {
  width: 78px;
  height: 58px;
  object-fit: contain;
}

.footer-brand-block p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.footer-contact-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-contact-row a,
.footer-columns a,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-row a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(126, 211, 33, 0.26);
  background: rgba(126, 211, 33, 0.06);
  font-weight: 800;
}

.footer-contact-row a:hover {
  color: #0b0f14;
  background: var(--green);
  box-shadow: 0 0 28px rgba(126, 211, 33, 0.35);
}

.footer-columns {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1.35fr;
  align-items: start;
  gap: 24px;
}

.footer-columns > div {
  min-width: 0;
  height: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-columns h3 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  line-height: 1.4;
}

.footer-columns a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer-columns a[href="#"] {
  color: rgba(255, 255, 255, 0.66);
}

.footer-social-column {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
}

.footer-social-column h3 {
  flex: 0 0 100%;
}

.footer-social-column a,
.footer-social-column span {
  display: inline-flex;
  width: auto;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.footer-social-column a:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 211, 33, 0.55);
  box-shadow: 0 0 24px rgba(126, 211, 33, 0.15);
}

.footer-social-column span {
  color: rgba(255, 255, 255, 0.62);
  cursor: default;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-brand-block,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  footer {
    padding: 54px 0 24px;
  }

  .footer-brand-block,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Content picture and deeper agency sections */
.content-pictures {
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.035), transparent 42%),
    rgba(255, 255, 255, 0.01);
}

.content-picture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.content-picture-card {
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.content-picture-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  filter: brightness(1.06) saturate(1.1) contrast(1.02);
}

.content-picture-card div {
  padding: 22px;
}

.content-picture-card span {
  color: var(--green);
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-picture-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
}

.content-picture-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.device-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 46%, rgba(126, 211, 33, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.device-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.device-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
}

.device-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.device-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.device-points span {
  padding: 10px 13px;
  border: 1px solid rgba(126, 211, 33, 0.28);
  border-radius: 999px;
  background: rgba(126, 211, 33, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.device-visual {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 30px;
  border-color: rgba(126, 211, 33, 0.32);
}

.device-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  object-fit: cover;
  filter: brightness(1.06) saturate(1.08) contrast(1.02);
}

.device-platforms {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: calc(100% - 56px);
  margin: 0 auto;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.device-platforms img {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  object-fit: cover;
}

.agency-depth {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: start;
  margin-top: 56px;
  margin-bottom: 70px;
}

.agency-depth > div:first-child {
  position: sticky;
  top: 112px;
}

.agency-depth h2 {
  max-width: 640px;
  margin-bottom: 18px;
}

.agency-depth p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.agency-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.agency-points article {
  min-height: 190px;
}

.agency-points h3 {
  margin-bottom: 12px;
  color: var(--green);
}

.agency-points p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .content-picture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-showcase-grid {
    grid-template-columns: 1fr;
  }

  .agency-depth {
    grid-template-columns: 1fr;
  }

  .agency-depth > div:first-child {
    position: static;
  }
}

@media (max-width: 680px) {
  .content-picture-grid,
  .agency-points {
    grid-template-columns: 1fr;
  }

  .content-picture-card div {
    padding: 18px;
  }

  .device-platforms {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    border-radius: 20px;
  }

  .device-platforms img {
    width: 36px;
    height: 36px;
  }

  .device-points span {
    width: 100%;
    text-align: center;
  }
}

.legal-page {
  min-height: 70vh;
}

.legal-page .container {
  position: relative;
  z-index: 2;
  padding-top: 150px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-grid article {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
}

.legal-grid h2 {
  margin-top: 0;
  color: var(--green);
}

.legal-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-grid a {
  color: var(--green);
  font-weight: 850;
}

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

/* Premium NETMARKX loading screen */
.premium-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050510;
  color: #ffffff;
  font-family: Orbitron, Inter, ui-sans-serif, system-ui, sans-serif;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.premium-loader.hide {
  visibility: hidden;
  opacity: 0;
}

.premium-loader span,
.premium-loader i,
.premium-loader small,
.premium-loader strong {
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: none;
  animation: none;
  box-shadow: none;
}

.premium-loader-bg,
.premium-loader-grid,
.premium-loader-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.premium-loader-bg {
  background:
    radial-gradient(circle at 50% 42%, rgba(126, 211, 33, 0.15), transparent 20%),
    radial-gradient(circle at 34% 34%, rgba(20, 247, 255, 0.12), transparent 26%),
    radial-gradient(circle at 70% 66%, rgba(20, 247, 255, 0.07), transparent 30%),
    linear-gradient(180deg, #050510 0%, #071014 100%);
}

.premium-loader-grid {
  opacity: 0.36;
  background:
    linear-gradient(rgba(20, 247, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 211, 33, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  animation: premiumGridDrift 1.2s linear infinite;
}

.premium-loader-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(20, 247, 255, 0.78);
  box-shadow: 0 0 14px rgba(20, 247, 255, 0.72);
  animation: premiumParticleFloat 1.2s ease-in-out infinite;
}

.premium-loader-particles span:nth-child(1) { left: 18%; top: 28%; animation-delay: 0s; }
.premium-loader-particles span:nth-child(2) { left: 28%; top: 66%; animation-delay: 0.14s; background: rgba(126, 211, 33, 0.78); box-shadow: 0 0 14px rgba(126, 211, 33, 0.58); }
.premium-loader-particles span:nth-child(3) { left: 43%; top: 22%; animation-delay: 0.28s; }
.premium-loader-particles span:nth-child(4) { left: 62%; top: 72%; animation-delay: 0.42s; background: rgba(126, 211, 33, 0.78); box-shadow: 0 0 14px rgba(126, 211, 33, 0.58); }
.premium-loader-particles span:nth-child(5) { left: 76%; top: 30%; animation-delay: 0.56s; }
.premium-loader-particles span:nth-child(6) { left: 84%; top: 58%; animation-delay: 0.7s; background: rgba(126, 211, 33, 0.78); box-shadow: 0 0 14px rgba(126, 211, 33, 0.58); }

.premium-loader-core {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(520px, calc(100% - 48px));
  text-align: center;
  animation: premiumCoreIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-loader-core img {
  width: clamp(74px, 12vw, 112px);
  height: clamp(74px, 12vw, 112px);
  margin-bottom: 18px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow:
    0 0 26px rgba(126, 211, 33, 0.28),
    0 0 54px rgba(20, 247, 255, 0.18);
  animation: premiumLogoPulse 1.05s ease-in-out both;
}

.premium-loader-core strong {
  display: block;
  color: #f7ffff;
  font-size: clamp(34px, 7vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 18px rgba(20, 247, 255, 0.38),
    0 0 34px rgba(20, 247, 255, 0.16);
}

.premium-loader-core strong span {
  color: var(--green);
  text-shadow:
    0 0 18px rgba(126, 211, 33, 0.42),
    0 0 34px rgba(126, 211, 33, 0.18);
}

.premium-loader-core i {
  display: block;
  width: min(300px, 68vw);
  height: 2px;
  margin: 24px 0 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.premium-loader-core i::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #14f7ff, var(--green), transparent);
  box-shadow: 0 0 18px rgba(20, 247, 255, 0.62);
  transform: translateX(-100%);
  animation: premiumLineLoad 0.92s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-loader-core small {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(10px, 2vw, 13px);
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.premium-loader-complete .premium-loader-core {
  filter: brightness(1.28);
  transform: scale(1.018);
}

.premium-loader-complete .premium-loader-core img,
.premium-loader-complete .premium-loader-core strong {
  animation: premiumFinalGlow 0.18s ease both;
}

@keyframes premiumCoreIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes premiumGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 54px 54px, 54px 54px; }
}

@keyframes premiumParticleFloat {
  0%, 100% {
    opacity: 0.24;
    transform: translate3d(0, 0, 0) scale(0.85);
  }
  50% {
    opacity: 0.85;
    transform: translate3d(0, -12px, 0) scale(1);
  }
}

@keyframes premiumLogoPulse {
  0% { filter: brightness(0.9); transform: scale(0.985); }
  50% { filter: brightness(1.18); transform: scale(1.01); }
  100% { filter: brightness(1); transform: scale(1); }
}

@keyframes premiumLineLoad {
  to { transform: translateX(0); }
}

@keyframes premiumFinalGlow {
  to {
    filter: brightness(1.45);
    text-shadow:
      0 0 20px rgba(20, 247, 255, 0.55),
      0 0 44px rgba(126, 211, 33, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-loader-grid,
  .premium-loader-particles span,
  .premium-loader-core,
  .premium-loader-core img,
  .premium-loader-core i::before,
  .premium-loader-complete .premium-loader-core img,
  .premium-loader-complete .premium-loader-core strong {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
