:root {
  --ink: #050505;
  --ink-soft: #11100c;
  --panel: #15130e;
  --muted: #b7ad91;
  --text: #f7f0dd;
  --line: rgba(221, 174, 63, 0.24);
  --violet: #d8a928;
  --violet-dark: #8f6412;
  --violet-light: #f7d674;
  --cyan: #ffe7a3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

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

.page-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  background: #090805;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.hero {
  position: relative;
  min-height: 610px;
  padding: 32px 38px 58px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 82%, rgba(216, 169, 40, 0.72), transparent 18%),
    radial-gradient(circle at 20% 8%, rgba(174, 119, 22, 0.38), transparent 28%),
    linear-gradient(138deg, #020202 0%, #090806 44%, #151107 70%, #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -80px;
  height: 180px;
  background: #090805;
  border-radius: 50% 50% 0 0;
  z-index: 0;
}

.site-header,
.hero-grid {
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 148px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  position: relative;
  padding: 11px 0;
  opacity: 0.92;
}

.nav-links .active {
  color: var(--violet-light);
}

.nav-links .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--violet);
  border-radius: 999px;
}

.admin-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  white-space: nowrap;
  border: 1px solid rgba(247, 214, 116, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe08a, #c08a18);
  color: #050505;
  font-size: 11px;
  font-weight: 900;
  padding: 0 16px;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(192, 138, 24, 0.2);
}

.admin-login-button:hover,
.admin-login-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(192, 138, 24, 0.3);
  outline: none;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--violet-light);
  color: #090805;
  font-size: 13px;
  font-weight: 900;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 24px;
  padding-top: 42px;
}

.home-carousel {
  position: relative;
  z-index: 1;
  margin-top: 52px;
  padding-top: 82px;
  border: 1px solid rgba(247, 214, 116, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 42%, rgba(216, 169, 40, 0.44), transparent 20%),
    linear-gradient(135deg, rgba(21, 19, 14, 0.95), rgba(5, 5, 5, 0.82));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.carousel-brand {
  position: absolute;
  left: 50%;
  top: 30px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 14px;
  width: fit-content;
  max-width: calc(100% - 164px);
  padding: 10px 16px;
  border: 1px solid rgba(247, 214, 116, 0.34);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
  transform: translateX(-50%);
}

.carousel-brand span {
  color: var(--violet-light);
  font-size: 27px;
  font-weight: 900;
  white-space: nowrap;
}

.carousel-brand .brand-word-stack {
  color: #fff;
}

.carousel-track {
  position: relative;
  min-height: 360px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 28px;
  padding: 28px 94px 44px 82px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.carousel-slide > div {
  justify-self: center;
  width: min(100%, 650px);
  text-align: center;
}

.carousel-slide .eyebrow {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.carousel-slide h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
}

.carousel-slide p:not(.eyebrow) {
  max-width: 590px;
  margin: 14px auto 0;
  color: #efe4c7;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

.carousel-slide > span {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe08a, #9b6d14);
  color: #050505;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(216, 169, 40, 0.26);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 214, 116, 0.54);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.72);
  color: var(--violet-light);
  cursor: pointer;
  font: inherit;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-control.prev {
  left: 18px;
}

.carousel-control.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 82px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 9px;
}

.carousel-dots button {
  width: 24px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 214, 116, 0.32);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 42px;
  background: var(--violet-light);
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--violet-light);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.1vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--violet-light);
  display: inline-block;
  border-bottom: 5px solid var(--violet);
  padding-bottom: 10px;
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 22px;
  font-size: 15px;
  font-weight: 800;
}

.service-line span + span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 18px;
  border-radius: 50%;
  background: var(--violet);
  vertical-align: middle;
}

.hero-text {
  max-width: 520px;
  color: #efe4c7;
  font-size: 15px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 27px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn span {
  margin-left: 14px;
  font-size: 20px;
}

.btn.primary {
  background: linear-gradient(135deg, #ffe08a, #c08a18);
  color: #050505;
  box-shadow: 0 18px 35px rgba(216, 169, 40, 0.28);
}

.btn.secondary {
  border: 2px solid var(--violet-light);
  color: var(--violet-light);
}

.btn.small {
  min-height: 38px;
  padding: 0 22px;
  font-size: 11px;
}

.device-stage {
  position: relative;
  min-height: 440px;
}

.laptop {
  position: absolute;
  left: 2%;
  bottom: 12px;
  width: 72%;
  transform: perspective(900px) rotateX(3deg) rotateZ(-3deg);
}

.laptop-screen {
  position: relative;
  height: 315px;
  padding: 34px;
  border: 5px solid #c9c9d4;
  border-radius: 18px 18px 8px 8px;
  background:
    radial-gradient(circle at 77% 39%, rgba(216, 169, 40, 0.5), transparent 22%),
    linear-gradient(145deg, #070705, #17140c 54%, #050505);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.mini-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
}

.mini-nav span {
  margin-right: auto;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.screen-content {
  position: relative;
  z-index: 2;
  max-width: 270px;
  margin-top: 78px;
}

.screen-content p,
.screen-content h2 {
  margin: 0;
  text-transform: uppercase;
}

.screen-content p {
  font-size: 23px;
  font-weight: 900;
  font-style: italic;
}

.screen-content h2 {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
}

.screen-content h2 span {
  color: var(--violet-light);
}

.screen-content small {
  display: block;
  margin: 18px 0;
  color: #efe4c7;
}

.screen-content button,
.phone button {
  border: 0;
  border-radius: 5px;
  background: var(--violet);
  color: #050505;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.screen-content button {
  padding: 12px 18px;
}

.screen-card {
  position: absolute;
  background: linear-gradient(145deg, #17140c, #9f7318);
  border: 1px solid rgba(255, 224, 138, 0.2);
  box-shadow: 0 18px 45px rgba(97, 70, 14, 0.5);
}

.main-card {
  right: 76px;
  top: 86px;
  width: 205px;
  height: 155px;
  transform: rotate(8deg);
}

.main-card::before {
  content: "";
  position: absolute;
  inset: 34px;
  background: linear-gradient(135deg, #2b2414, #f4c65a);
}

.side-card {
  right: 32px;
  bottom: 32px;
  width: 160px;
  height: 52px;
}

.laptop-base {
  width: 112%;
  height: 38px;
  margin-left: -6%;
  background: linear-gradient(#f4f0e2, #b8a979);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  border-radius: 0 0 28px 28px;
}

.phone {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 225px;
  min-height: 438px;
  padding: 20px 16px 16px;
  border: 5px solid #19150c;
  border-radius: 36px;
  background: linear-gradient(180deg, #17140c, #080705);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}

.phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 64px;
  height: 5px;
  border-radius: 999px;
  background: #111;
  transform: translateX(-50%);
}

.phone-top {
  height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-profile {
  display: grid;
  grid-template-columns: 52px repeat(3, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  text-align: center;
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7d674, #8f6412);
  color: #050505;
  font-weight: 900;
}

.phone-profile strong,
.phone-profile small {
  display: block;
}

.phone-profile strong {
  font-size: 12px;
}

.phone-profile small,
.phone-copy {
  color: #d9cda8;
  font-size: 8px;
}

.phone-brand {
  margin: 16px 0 4px;
  font-weight: 800;
}

.phone-copy {
  margin: 0 0 10px;
  line-height: 1.55;
}

.phone button {
  width: 100%;
  padding: 10px;
}

.phone-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.phone-icons span {
  display: grid;
  place-items: center;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

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

.phone-grid span {
  display: block;
  aspect-ratio: 1;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(circle at 50% 30%, #f7d674, #17140c 65%);
}

.section {
  position: relative;
  z-index: 2;
  padding: 22px 38px;
  background: #090805;
}

.section-kicker {
  text-align: center;
  font-size: 13px;
}

.section h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 31px;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.card,
.project-card,
.testimonials article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15130e;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 27px 26px;
  overflow: hidden;
}

.service-cards .service-card:nth-child(1),
.service-cards .service-card:nth-child(2),
.service-cards .service-card:nth-child(3) {
  order: 2;
}

.service-cards .service-card:nth-child(4),
.service-cards .service-card:nth-child(5),
.service-cards .service-card:nth-child(6) {
  order: 1;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe08a, #9b6d14);
  color: #050505;
  font-size: 24px;
  font-weight: 900;
}

.service-card h3 {
  width: 220px;
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-card p {
  width: 220px;
  margin: 0 0 24px;
  color: #cfc4a4;
  font-size: 12px;
  line-height: 1.55;
}

.service-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #f2ead7;
  font-size: 12px;
  font-weight: 500;
}

.service-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 12px;
  height: 12px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--violet);
  color: #050505;
  font-size: 8px;
}

.service-art {
  position: absolute;
  right: 16px;
  bottom: 18px;
}

.monitor-art {
  width: 155px;
  height: 94px;
  border: 7px solid #262013;
  border-radius: 5px;
  background: linear-gradient(135deg, #11100c, #d8a928);
  transform: rotate(2deg);
}

.monitor-art::after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -28px;
  width: 48px;
  height: 24px;
  border-radius: 0 0 8px 8px;
  background: #3c321b;
}

.social-art {
  width: 92px;
  height: 150px;
  padding: 14px;
  border: 6px solid #262013;
  border-radius: 20px;
  background: #f6efd8;
  color: #11100c;
  text-align: center;
}

.social-art span {
  font-weight: 900;
}

.social-art i,
.project-three i {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 16px;
  background: linear-gradient(150deg, transparent 45%, var(--violet) 46% 53%, transparent 54%),
    linear-gradient(70deg, transparent 45%, var(--violet-light) 46% 53%, transparent 54%);
}

.brand-art {
  display: grid;
  place-items: center;
  width: 145px;
  height: 110px;
  color: #f7d674;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(145deg, #0b0a07, #342811);
  box-shadow: 22px 12px 0 #221b0e;
  transform: rotate(-7deg);
}

.automation-art {
  display: grid;
  place-items: center;
  width: 132px;
  height: 88px;
  border: 1px solid rgba(247, 214, 116, 0.34);
  border-radius: 8px;
  color: var(--violet-light);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, transparent 47%, rgba(247, 214, 116, 0.7) 48% 52%, transparent 53%),
    radial-gradient(circle at 20% 50%, #f7d674 0 8%, transparent 9%),
    radial-gradient(circle at 50% 50%, #f7d674 0 8%, transparent 9%),
    radial-gradient(circle at 80% 50%, #f7d674 0 8%, transparent 9%),
    #0b0a07;
}

.app-art {
  display: grid;
  place-items: center;
  width: 86px;
  height: 140px;
  border: 7px solid #262013;
  border-radius: 24px;
  color: #050505;
  font-size: 17px;
  font-weight: 900;
  background:
    radial-gradient(circle at 50% 78%, rgba(5, 5, 5, 0.24), transparent 13%),
    linear-gradient(145deg, #ffe08a, #9b6d14);
}

.analytics-art {
  width: 150px;
  height: 100px;
  border: 1px solid rgba(247, 214, 116, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(to top, #d8a928 0 28%, transparent 29%),
    linear-gradient(to top, transparent 0 42%, #f7d674 43% 58%, transparent 59%),
    linear-gradient(to top, transparent 0 62%, #9b6d14 63% 82%, transparent 83%),
    #0b0a07;
  background-size: 24px 100%, 24px 100%, 24px 100%, 100% 100%;
  background-position: 26px 0, 64px 0, 102px 0, 0 0;
  background-repeat: no-repeat;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 26px;
  padding: 28px 30px;
  border-radius: 8px;
  color: #fff;
  background: #050505;
}

.feature-strip div {
  display: grid;
  grid-template-columns: 66px 1fr;
  column-gap: 14px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-strip div:first-child {
  border-left: 0;
}

.feature-strip span {
  grid-row: 1 / span 2;
  color: var(--violet-light);
  font-size: 48px;
  line-height: 1;
}

.feature-strip strong {
  font-size: 14px;
  text-transform: uppercase;
}

.feature-strip p {
  margin: 6px 0 0;
  color: #d8cfb2;
  font-size: 11px;
  line-height: 1.45;
}

.projects {
  padding-top: 14px;
}

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

.project-card {
  overflow: hidden;
}

.project-image {
  height: 148px;
  padding: 22px;
  color: #fff;
}

.project-image span,
.project-image strong {
  display: block;
}

.project-one {
  background:
    linear-gradient(90deg, rgba(5, 8, 17, 0.9), rgba(5, 8, 17, 0.25)),
    radial-gradient(circle at 80% 45%, #d8a928, transparent 27%),
    linear-gradient(135deg, #080705, #2d230f);
}

.project-two {
  color: #14110a;
  background:
    radial-gradient(circle at 74% 38%, #d8a928, transparent 24%),
    linear-gradient(#f7f0dd, #d9c99a);
}

.project-three {
  background: #0d0b07;
}

.project-three strong {
  margin-top: 8px;
  font-size: 33px;
}

.project-four {
  display: grid;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(145deg, #16130d, #403219);
}

.project-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 18px;
}

.project-info > span {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--violet);
  font-size: 25px;
}

.project-info strong,
.project-info small {
  display: block;
}

.project-info strong {
  font-size: 13px;
}

.project-info small {
  color: var(--muted);
  font-size: 11px;
}

.testimonials {
  padding-top: 10px;
  padding-bottom: 34px;
}

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

.testimonials article {
  position: relative;
  min-height: 150px;
  padding: 28px 28px 24px 86px;
}

.quote {
  position: absolute;
  left: 31px;
  top: 18px;
  color: var(--violet);
  font-size: 62px;
  font-weight: 900;
}

.testimonials p {
  margin: 0 0 15px;
  font-size: 12px;
  line-height: 1.55;
}

.testimonials p::after {
  content: "★★★★★";
  display: block;
  margin-top: 10px;
  color: #ffc331;
  letter-spacing: 2px;
}

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

.person span {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, #f3c7ad 0 25%, transparent 26%),
    radial-gradient(circle at 50% 70%, #202536 0 35%, transparent 36%),
    #ebe7e2;
}

.person strong,
.person small {
  display: block;
}

.person strong {
  font-size: 12px;
}

.person small {
  color: var(--muted);
  font-size: 10px;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.05fr;
  align-items: center;
  gap: 28px;
  padding: 34px 70px;
  color: #fff;
  background: #050505;
}

.footer-cta > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 28px;
}

.footer-cta h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-cta h2 span {
  color: var(--violet-light);
}

.footer-cta p {
  margin: 0 0 14px;
  color: #efe4c7;
  font-size: 12px;
  line-height: 1.5;
}

.footer-cta address {
  display: grid;
  gap: 10px;
  color: #efe4c7;
  font-size: 13px;
  font-style: normal;
}

.whatsapp {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
}

.whatsapp span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid var(--violet-light);
  border-radius: 10px;
  font-size: 34px;
}

.whatsapp strong {
  font-size: 15px;
  line-height: 1.25;
}

.inner-hero {
  padding: 32px 38px 78px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 169, 40, 0.42), transparent 22%),
    linear-gradient(138deg, #020202 0%, #090806 54%, #151107 100%);
}

.page-intro {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 80px;
  text-align: center;
}

.page-intro h1 {
  margin: 0;
  width: 100%;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.page-intro h1 span {
  color: var(--violet-light);
}

.page-intro p {
  width: 100%;
  max-width: 660px;
  margin: 22px auto 0;
  color: #efe4c7;
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
}

.content-band {
  padding: 58px 38px;
  background: #090805;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.copy-block h2,
.contact-card h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.1;
  text-transform: uppercase;
}

.copy-block p,
.contact-card p,
.blog-card p {
  color: #d8cfb2;
  line-height: 1.75;
}

.gold-panel {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 28%, rgba(247, 214, 116, 0.5), transparent 22%),
    linear-gradient(145deg, #15130e, #080705);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.stat-grid,
.process-grid,
.blog-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.stat-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.stat-card,
.process-card,
.blog-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15130e;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.stat-card {
  padding: 26px;
}

.stat-card strong {
  display: block;
  color: var(--violet-light);
  font-size: 34px;
}

.stat-card span,
.process-card span,
.blog-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.process-card {
  padding: 28px;
}

.process-card h3,
.blog-card h3,
.contact-card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  text-transform: uppercase;
}

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

.blog-card {
  overflow: hidden;
  color: inherit;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(247, 214, 116, 0.64);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 38px rgba(216, 169, 40, 0.1);
  transform: translateY(-4px);
  outline: none;
}

.blog-thumb {
  min-height: 170px;
  background:
    radial-gradient(circle at 70% 34%, rgba(216, 169, 40, 0.65), transparent 25%),
    linear-gradient(145deg, #090805, #2c210d);
}

.blog-card div:last-child {
  padding: 24px;
}

.article-page {
  max-width: 860px;
  margin: 0 auto;
}

.article-section-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(247, 214, 116, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 214, 116, 0.08), transparent 34%),
    #0d0c08;
}

.article-image-card {
  position: relative;
  margin: 16px 0 18px;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(247, 214, 116, 0.34);
  border-radius: 8px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.article-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.36)),
    radial-gradient(circle at 80% 16%, rgba(247, 214, 116, 0.18), transparent 26%);
  pointer-events: none;
}

.article-image-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.article-section-card:hover .article-image-card img {
  transform: scale(1.025);
}

.article-image-card.crop-left img {
  object-position: 28% 50%;
}

.article-image-card.crop-center img {
  object-position: 50% 50%;
}

.article-image-card.crop-right img {
  object-position: 72% 50%;
}

.article-image-card.crop-bottom img {
  object-position: 50% 78%;
}

.article-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(247, 214, 116, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 68% 30%, rgba(247, 214, 116, 0.45), transparent 26%),
    linear-gradient(145deg, #090805, #2b220f);
}

.article-visual::before,
.article-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  border: 1px solid rgba(247, 214, 116, 0.32);
}

.article-visual::before {
  width: 72%;
  height: 42%;
  left: 14%;
  bottom: 18%;
  border-radius: 8px;
}

.article-visual::after {
  width: 46px;
  height: 46px;
  right: 18%;
  top: 18%;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe98f, #b58b22);
  box-shadow: 0 0 38px rgba(247, 214, 116, 0.36);
}

.article-visual span {
  position: relative;
  z-index: 1;
  color: #050505;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-flow {
  background:
    linear-gradient(90deg, transparent 0 23%, rgba(247, 214, 116, 0.6) 23% 26%, transparent 26% 49%, rgba(247, 214, 116, 0.6) 49% 52%, transparent 52%),
    radial-gradient(circle at 36% 62%, rgba(247, 214, 116, 0.62), transparent 10%),
    radial-gradient(circle at 64% 62%, rgba(247, 214, 116, 0.62), transparent 10%),
    #090805;
}

.visual-proof,
.visual-polish {
  background:
    linear-gradient(160deg, rgba(247, 214, 116, 0.18), transparent 42%),
    repeating-linear-gradient(0deg, rgba(247, 214, 116, 0.14) 0 2px, transparent 2px 22px),
    #090805;
}

.visual-speed,
.visual-path {
  background:
    linear-gradient(130deg, transparent 0 34%, rgba(247, 214, 116, 0.56) 34% 39%, transparent 39%),
    radial-gradient(circle at 78% 28%, rgba(247, 214, 116, 0.48), transparent 25%),
    #090805;
}

.visual-calendar,
.visual-guide {
  background:
    linear-gradient(90deg, rgba(247, 214, 116, 0.2) 0 12%, transparent 12%),
    linear-gradient(0deg, rgba(247, 214, 116, 0.16) 0 22%, transparent 22%),
    #090805;
}

.visual-voice,
.visual-repeat,
.visual-match {
  background:
    radial-gradient(circle at 30% 50%, rgba(247, 214, 116, 0.62), transparent 15%),
    radial-gradient(circle at 52% 50%, rgba(247, 214, 116, 0.42), transparent 12%),
    radial-gradient(circle at 74% 50%, rgba(247, 214, 116, 0.62), transparent 15%),
    #090805;
}

.article-page h2 {
  margin: 8px 0 12px;
  color: var(--violet-light);
  font-size: 30px;
  line-height: 1.15;
  text-transform: uppercase;
}

.article-page p {
  color: #d8cfb2;
  font-size: 17px;
  line-height: 1.8;
}

.article-page .btn {
  margin-top: 28px;
}

.post-actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(247, 214, 116, 0.24);
  border-radius: 8px;
  background: #090805;
}

.like-button,
.share-actions a,
.share-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(247, 214, 116, 0.42);
  border-radius: 999px;
  background: transparent;
  color: #f7f0dd;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 15px;
  text-transform: uppercase;
}

.like-button.is-liked,
.share-actions a:hover,
.share-actions button:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #ffe08a, #c08a18);
  color: #050505;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.blog-admin-entry {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.blog-admin-entry a {
  color: rgba(247, 214, 116, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--violet-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-shell {
  min-height: 100vh;
  padding: 48px 22px;
  background:
    radial-gradient(circle at 82% 10%, rgba(216, 169, 40, 0.32), transparent 34%),
    #050505;
  color: #f8f4e8;
}

.admin-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.admin-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(247, 214, 116, 0.3);
  border-radius: 8px;
  background: rgba(13, 12, 8, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.admin-panel .admin-card {
  width: 100%;
}

.admin-card h1 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 0.98;
  text-transform: uppercase;
}

.admin-note,
.admin-status {
  color: #d8cfb2;
  line-height: 1.7;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-form label,
.export-label {
  display: grid;
  gap: 8px;
  color: var(--violet-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-form input,
.admin-form textarea,
.export-label textarea {
  width: 100%;
  border: 1px solid rgba(247, 214, 116, 0.28);
  border-radius: 8px;
  background: #090805;
  color: #f7f0dd;
  font: inherit;
  line-height: 1.6;
  padding: 14px 16px;
  text-transform: none;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.admin-list {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.website-update-form {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 214, 116, 0.24);
}

.admin-subheading {
  margin-top: 30px;
}

.admin-draft {
  padding: 18px;
  border: 1px solid rgba(247, 214, 116, 0.24);
  border-radius: 8px;
  background: #090805;
}

.admin-draft span,
.admin-draft small {
  color: var(--violet-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-draft h3 {
  margin: 8px 0;
  color: #fff;
  text-transform: uppercase;
}

.admin-draft p {
  margin: 0 0 8px;
  color: #d8cfb2;
  line-height: 1.6;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-card {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  color: #efe4c7;
}

.form-card {
  display: grid;
  gap: 16px;
}

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--violet-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090805;
  color: #f7f0dd;
  font: inherit;
  padding: 14px 16px;
}

.form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--violet-light);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.form-status.is-error {
  color: #ffb6a6;
}

.form-card button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.booking-band {
  padding-top: 10px;
}

.booking-band h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.booking-card {
  position: relative;
  height: 450px;
  border: 1px solid rgba(247, 214, 116, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(#15130e, #15130e) padding-box,
    linear-gradient(135deg, rgba(255, 224, 138, 0.7), rgba(143, 100, 18, 0.45)) border-box;
  overflow: hidden;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24),
    0 0 50px rgba(216, 169, 40, 0.12);
}

.booking-grid > .contact-card {
  min-height: 450px;
}

.booking-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  min-height: 450px;
  padding: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 169, 40, 0.38), transparent 24%),
    linear-gradient(145deg, #15130e, #080705);
}

.booking-placeholder strong {
  color: var(--violet-light);
  font-size: 26px;
  line-height: 1.15;
  text-transform: uppercase;
}

.booking-placeholder p {
  max-width: 430px;
  margin: 0;
  color: #d8cfb2;
  line-height: 1.7;
}

.booking-placeholder code {
  color: var(--violet-light);
}

.chatbot-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  font-family: "Inter", Arial, sans-serif;
}

.chatbot-toggle {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(247, 214, 116, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe08a, #c08a18);
  color: #050505;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 88px;
  display: none;
  width: min(380px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15130e;
  color: #f7f0dd;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
  overflow: hidden;
}

.chatbot-panel.is-visible {
  display: block;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 78% 20%, rgba(216, 169, 40, 0.38), transparent 28%),
    #080705;
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
}

.chatbot-header strong {
  color: var(--violet-light);
  font-size: 15px;
  text-transform: uppercase;
}

.chatbot-header span {
  margin-top: 4px;
  color: #d8cfb2;
  font-size: 12px;
}

.chatbot-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(247, 214, 116, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--violet-light);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  max-height: 310px;
  padding: 18px;
  overflow-y: auto;
}

.chatbot-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.chatbot-message p {
  margin: 0;
}

.chatbot-message a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--violet-light);
  font-weight: 800;
  text-transform: uppercase;
}

.chatbot-message.bot {
  justify-self: start;
  background: #090805;
  border: 1px solid rgba(247, 214, 116, 0.22);
}

.chatbot-message.user {
  justify-self: end;
  background: linear-gradient(135deg, #ffe08a, #c08a18);
  color: #050505;
}

.chatbot-questions {
  display: flex;
  gap: 8px;
  padding: 0 18px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chatbot-questions::-webkit-scrollbar {
  display: none;
}

.chatbot-questions button {
  flex: 0 0 auto;
  border: 1px solid rgba(247, 214, 116, 0.36);
  border-radius: 999px;
  background: #090805;
  color: #f7f0dd;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  padding: 9px 12px;
  text-transform: uppercase;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}

.chatbot-form input {
  min-width: 0;
  border: 1px solid rgba(247, 214, 116, 0.28);
  border-radius: 8px;
  background: #090805;
  color: #f7f0dd;
  font: inherit;
  padding: 12px;
}

.chatbot-form button {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe08a, #c08a18);
  color: #050505;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 0 16px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero {
    padding-inline: 24px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .service-cards,
  .project-grid,
  .testimonial-grid,
  .footer-cta,
  .split-section,
  .stat-grid,
  .process-grid,
  .blog-grid,
  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .article-section-card,
  .admin-panel {
    grid-template-columns: 1fr;
  }

  .post-actions,
  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .share-actions {
    justify-content: flex-start;
  }

  .device-stage {
    min-height: 520px;
  }

  .phone {
    right: 3%;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .feature-strip div:nth-child(3) {
    border-left: 0;
  }

  .footer-cta > * + * {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-top: 22px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 24px 18px 70px;
  }

  .home-carousel {
    margin-top: 34px;
    padding-top: 96px;
  }

  .carousel-brand {
    left: 50%;
    right: auto;
    top: 28px;
    display: grid;
    justify-items: center;
    gap: 3px;
    width: calc(100% - 58px);
    max-width: calc(100% - 58px);
    padding: 9px 13px;
    transform: translateX(-50%);
  }

  .carousel-brand span {
    font-size: 23px;
    white-space: normal;
    text-align: center;
  }


  .carousel-track {
    min-height: 430px;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 34px 58px 62px;
  }

  .carousel-slide > span {
    width: 90px;
    height: 90px;
    font-size: 26px;
  }

  .carousel-control {
    width: 34px;
    height: 34px;
    font-size: 27px;
  }

  .carousel-control.prev {
    left: 10px;
  }

  .carousel-control.next {
    right: 10px;
  }

  .carousel-dots {
    left: 58px;
    bottom: 20px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .service-line span + span::before {
    content: none;
  }

  .hero-actions,
  .service-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .device-stage {
    min-height: 460px;
    margin-top: 24px;
  }

  .laptop {
    width: 100%;
    left: -7%;
  }

  .laptop-screen {
    height: 260px;
    padding: 22px;
  }

  .screen-content {
    margin-top: 46px;
  }

  .main-card {
    right: 28px;
    width: 128px;
  }

  .side-card {
    display: none;
  }

  .phone {
    width: 174px;
    min-height: 348px;
    right: 0;
    padding-inline: 11px;
  }

  .phone-profile {
    grid-template-columns: 42px repeat(3, 1fr);
    gap: 4px;
  }

  .avatar {
    width: 38px;
    height: 38px;
  }

  .section {
    padding-inline: 18px;
  }

  .service-card {
    min-height: 345px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .feature-strip div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 22px 0 0;
  }

  .feature-strip div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .footer-cta {
    padding: 28px 22px;
  }

  .chatbot-widget {
    right: 16px;
    bottom: 16px;
  }

  .chatbot-toggle {
    width: 62px;
    height: 62px;
  }

  .inner-hero,
  .content-band {
    padding-inline: 18px;
  }

  .social-links {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .admin-login-button {
    min-height: 34px;
    padding-inline: 12px;
  }

  .article-image-card,
  .article-image-card img {
    min-height: 220px;
    height: 220px;
  }
}
