:root {
  --black: #050816;
  --black-2: #070b18;
  --blue-dark: #0d1b2a;
  --blue: #2563eb;
  --blue-glow: rgba(37, 99, 235, 0.48);
  --gold: #d4af37;
  --gold-2: #f2d675;
  --gold-dark: #8f6814;
  --white: #ffffff;
  --soft: #dbe6ff;
  --muted: #99a8c2;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(10, 17, 32, 0.72);
  --radius: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 8%, rgba(37, 99, 235, 0.22), transparent 26rem),
    radial-gradient(circle at 82% 12%, rgba(212, 175, 55, 0.12), transparent 22rem),
    linear-gradient(180deg, #030612 0%, #050816 42%, #040713 100%);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), transparent 90%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 42%, rgba(212, 175, 55, 0.08), transparent 18rem),
    radial-gradient(circle at 84% 58%, rgba(37, 99, 235, 0.18), transparent 24rem);
  pointer-events: none;
  content: "";
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-symbol {
  width: 52px;
  height: 44px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.38));
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}

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

.brand-text small {
  color: #d4dceb;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-logo {
    width: 180px;
    height: auto;
    display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(.35);
  transition: .25s ease;
  content: "";
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.35), transparent 80%);
  transform: translateX(-130%);
  transition: transform .75s ease;
  content: "";
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  border: 1px solid rgba(255, 235, 165, .55);
  background: linear-gradient(135deg, #ffe68b, var(--gold) 48%, #9d7115);
  color: #08101e;
  box-shadow:
    0 16px 42px rgba(212, 175, 55, .22),
    inset 0 1px 0 rgba(255,255,255,.5);
}

.btn-gold:hover {
  box-shadow:
    0 18px 54px rgba(212, 175, 55, .36),
    0 0 34px rgba(212, 175, 55, .2);
}

.btn-dark {
  border: 1px solid rgba(212, 175, 55, .5);
  background: rgba(5, 8, 22, .72);
  color: var(--white);
  box-shadow: inset 0 0 20px rgba(37, 99, 235, .12);
}

.btn-dark:hover {
  border-color: rgba(37, 99, 235, .82);
  box-shadow: 0 0 34px rgba(37, 99, 235, .2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, .26), transparent 28rem),
    linear-gradient(135deg, rgba(5,8,22,.96), rgba(13,27,42,.78));
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(212, 175, 55, .08) 34% 35%, transparent 36% 100%),
    linear-gradient(28deg, transparent 0 58%, rgba(37, 99, 235, .08) 58% 59%, transparent 60% 100%);
  content: "";
}

.energy-field {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  min-width: 520px;
  opacity: .95;
  pointer-events: none;
}

.energy-field svg {
  width: 100%;
  height: 100%;
}

.line {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px currentColor);
  stroke-dasharray: 920;
  animation: streamMove 7s ease-in-out infinite alternate;
}

.thin {
  stroke-width: 1.2;
  opacity: .72;
}

.gold-line {
  color: #d4af37;
  stroke: #d4af37;
}

.blue-line {
  color: #2563eb;
  stroke: #2563eb;
  animation-delay: .8s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 72px;
  padding: 70px 0;
}

.tag {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(212, 175, 55, .46);
  border-radius: 7px;
  background: rgba(212, 175, 55, .08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(212, 175, 55, .12);
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #fff0a7, var(--gold), #c89121);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 540px;
  margin-bottom: 28px;
  color: #d7e0f4;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.whats-dot {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(5,8,22,.7);
  border-radius: 50%;
}

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

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

.stat-icon {
  position: relative;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border: 1px solid rgba(212,175,55,.52);
  border-radius: 50%;
  background: rgba(212,175,55,.08);
  box-shadow: 0 0 22px rgba(212,175,55,.16);
}

.stat-icon::before,
.stat-icon::after {
  position: absolute;
  content: "";
}

.stat-icon.briefcase::before {
  inset: 12px 9px 9px;
  border: 2px solid var(--gold);
  border-radius: 4px;
}

.stat-icon.briefcase::after {
  top: 8px;
  left: 15px;
  width: 10px;
  height: 6px;
  border: 2px solid var(--gold);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.stat-icon.users::before {
  top: 10px;
  left: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: -10px 8px 0 -3px var(--gold), 10px 8px 0 -3px var(--gold);
}

.stat-icon.headset::before {
  inset: 10px;
  border: 2px solid var(--gold);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.stat-icon.headset::after {
  right: 9px;
  bottom: 10px;
  width: 10px;
  height: 2px;
  background: var(--gold);
}

.stat-icon.shield::before {
  top: 8px;
  left: 12px;
  width: 18px;
  height: 22px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 18%, 86% 80%, 50% 100%, 14% 80%, 0 18%);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.hero-dashboard {
  position: relative;
  min-height: 510px;
  perspective: 1200px;
}

.dashboard-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(8, 15, 29, .86);
  box-shadow:
    0 40px 120px rgba(0,0,0,.62),
    0 0 60px rgba(37,99,235,.16),
    inset 0 1px 0 rgba(255,255,255,.1);
  transform: rotateX(3deg) rotateY(-5deg);
  animation: floatPanel 6s ease-in-out infinite;
}

.dashboard-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212,175,55,.6), rgba(37,99,235,.55), transparent 58%);
  opacity: .36;
  content: "";
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mini-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: .18em;
}

.mini-logo span:not(.mini-mark) {
  color: var(--gold);
}

.mini-mark {
  width: 18px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212,175,55,.7);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
}

.dashboard-body aside {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  gap: 13px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(2, 6, 16, .76);
}

.dashboard-body aside span {
  color: #9aa8bd;
  font-size: 11px;
  font-weight: 600;
}

.dashboard-body aside .active {
  padding: 10px;
  border-radius: 8px;
  background: rgba(212,175,55,.22);
  color: var(--gold);
}

.dashboard-main {
  min-width: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-grid article,
.dashboard-bottom article {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.metric-grid small,
.dashboard-bottom small {
  color: #9ca8bb;
  font-size: 11px;
}

.metric-grid strong,
.dashboard-bottom strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 17px;
}

.metric-grid em,
.dashboard-bottom em {
  position: absolute;
  right: 12px;
  bottom: 14px;
  color: #39d98a;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.performance-chart {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background:
    repeating-linear-gradient(to right, rgba(255,255,255,.045) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(to top, rgba(255,255,255,.035) 0 1px, transparent 1px 36px),
    rgba(3, 8, 19, .54);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.chart-header strong {
  font-size: 12px;
}

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

.performance-chart svg {
  width: 100%;
  height: 132px;
}

.animated-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 740;
  stroke-dashoffset: 740;
  filter: drop-shadow(0 0 10px rgba(212,175,55,.75));
  animation: drawLine 2.8s ease forwards infinite alternate;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bars {
  display: flex;
  height: 42px;
  align-items: end;
  gap: 7px;
  margin-top: 10px;
}

.bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(37,99,235,.25));
}

.bars i:nth-child(1) { height: 36%; }
.bars i:nth-child(2) { height: 48%; }
.bars i:nth-child(3) { height: 68%; }
.bars i:nth-child(4) { height: 82%; }
.bars i:nth-child(5) { height: 56%; }

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

.donut,
.phone-ring {
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 68%, rgba(37,99,235,.24) 68% 100%);
}

.donut {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
}

.donut::after,
.phone-ring::after {
  display: block;
  border-radius: 50%;
  background: #07101e;
  content: "";
}

.donut::after {
  width: 38px;
  height: 38px;
  margin: 16px;
}

.floating-phone {
  position: absolute;
  right: -24px;
  bottom: 24px;
  z-index: 4;
  width: 178px;
  padding: 18px;
  border: 1px solid rgba(212,175,55,.36);
  border-radius: 18px;
  background: rgba(8, 13, 24, .9);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 34px rgba(212,175,55,.13);
  text-align: center;
  backdrop-filter: blur(18px);
  animation: floatPhone 5s ease-in-out infinite;
}

.floating-phone span,
.floating-phone small,
.floating-phone p {
  color: var(--muted);
  font-size: 11px;
}

.phone-ring {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 16px auto 8px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
}

.phone-ring::after {
  position: absolute;
  inset: 18px;
  z-index: -1;
}

.floating-phone p {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
}

.solutions-strip,
.services,
.featured-projects,
.about,
.blog,
.final-cta {
  padding: 86px 0;
}

.solutions-strip {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(3, 8, 19, .64);
}

.section-kicker,
.section-header {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto 32px;
  text-align: center;
}

.section-kicker span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-kicker p,
.section-header p {
  color: var(--muted);
}

.section-header h2 {
  margin: 0 auto 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.12;
}

.project-row,
.services-grid,
.featured-grid,
.about,
.blog-grid,
.cta-box,
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.project-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-mini,
.service-card,
.featured-card,
.about-panel,
.blog-grid article,
.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.022)),
    rgba(10, 17, 32, .74);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.project-mini::before,
.service-card::before,
.featured-card::before,
.about-panel::before,
.blog-grid article::before,
.cta-box::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0, rgba(212,175,55,.2), transparent 32%),
    radial-gradient(circle at 90% 100%, rgba(37,99,235,.18), transparent 34%);
  opacity: 0;
  transition: opacity .3s ease;
  content: "";
}

.project-mini:hover,
.service-card:hover,
.featured-card:hover,
.about-panel:hover,
.blog-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,.48);
  box-shadow: 0 34px 90px rgba(0,0,0,.58), 0 0 38px rgba(37,99,235,.16);
}

.project-mini:hover::before,
.service-card:hover::before,
.featured-card:hover::before,
.about-panel:hover::before,
.blog-grid article:hover::before,
.cta-box:hover::before {
  opacity: 1;
}

.project-mini {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
}

.project-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 8px;
}

.project-icon.monitor::after {
  position: absolute;
  left: 11px;
  bottom: -8px;
  width: 18px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.project-icon.chart {
  border: 0;
}

.project-icon.chart::before {
  position: absolute;
  inset: 4px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  content: "";
}

.project-icon.chart::after {
  position: absolute;
  left: 13px;
  bottom: 8px;
  width: 5px;
  height: 18px;
  background: var(--gold);
  box-shadow: 10px -8px 0 var(--gold), 20px -2px 0 var(--gold);
  content: "";
}

.project-icon.cart {
  border: 0;
}

.project-icon.cart::before {
  position: absolute;
  inset: 8px 4px 12px;
  border: 3px solid var(--gold);
  border-top: 0;
  transform: skewX(-12deg);
  content: "";
}

.project-icon.cart::after {
  position: absolute;
  left: 11px;
  bottom: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 18px 0 0 var(--gold);
  content: "";
}

.service-card h3 {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.project-mini strong {
  position: relative;
  display: block;
  margin: 4px 0 10px;
  color: var(--soft);
  font-size: 13px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .service-card {
        min-height: auto;
    }

    .service-card h3 {
        font-size: 28px;
    }
}

.project-mini a,
.featured-card a,
.blog-grid a {
  position: relative;
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.services {
  background:
    radial-gradient(circle at 12% 0%, rgba(37,99,235,.16), transparent 28rem),
    rgba(5,8,22,.56);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    min-height: 260px;
    padding: 32px;
    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(20, 28, 45, 0.96),
            rgba(7, 10, 20, 0.98)
        );

    border: 1px solid rgba(255, 210, 90, 0.15);

    overflow: hidden;

    transition:
        transform .35s ease,
        border .35s ease,
        box-shadow .35s ease;

    backdrop-filter: blur(14px);
}

.service-card:hover {
    transform: translateY(-10px);

    border: 1px solid rgba(255, 210, 90, 0.4);

    box-shadow:
        0 0 40px rgba(255, 200, 60, 0.08),
        0 20px 60px rgba(0,0,0,.45);
}

.service-card.featured {
    border: 1px solid rgba(255, 210, 90, 0.45);

    background:
        radial-gradient(
            circle at top,
            rgba(255,210,90,.14),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(20,28,45,.98),
            rgba(7,10,20,.98)
        );

    box-shadow:
        0 0 60px rgba(255,210,90,.08);
}

.service-card span {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 210, 90, 0.06);

    border: 1px solid rgba(255, 210, 90, 0.25);

    color: #ffd25a;

    font-size: 15px;
    font-weight: 700;

    margin-bottom: 28px;
}

.featured-projects {
  background:
    radial-gradient(circle at 86% 12%, rgba(212,175,55,.12), transparent 24rem),
    rgba(7, 14, 28, .66);
}

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

.featured-card {
  padding: 24px;
}

.fake-screen {
  position: relative;
  height: 210px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(37,99,235,.22), rgba(212,175,55,.1)),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #07101e;
  background-size: auto, 28px 28px, 28px 28px;
}

.fake-screen::before {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 28px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 70px 0 rgba(255,255,255,.055), 0 140px 0 rgba(255,255,255,.04);
  content: "";
}

.fake-screen::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 68%, rgba(37,99,235,.3) 68% 100%);
  content: "";
}

.carousel-section {
  overflow: hidden;
  max-width: 100vw;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(3, 8, 19, .74);
  contain: layout paint;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: carousel 28s linear infinite;
}

.carousel-section:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-track article {
  width: 315px;
  min-height: 135px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(10, 17, 32, .74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.carousel-track div {
  color: var(--gold);
  letter-spacing: 3px;
}

.carousel-track p {
  margin: 10px 0;
  color: #d7e0f4;
  font-size: 12px;
}

.carousel-track strong {
  color: var(--white);
  font-size: 12px;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 44px;
}

.about-content h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.12;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.about-list span {
  padding: 13px 14px;
  border: 1px solid rgba(212,175,55,.24);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.about-panel {
  padding: 28px;
}

.panel-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.panel-metrics article {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(5,8,22,.42);
}

.panel-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
}

.panel-metrics span {
  color: var(--muted);
  font-size: 11px;
}

.blog {
  background: rgba(5, 8, 22, .58);
}

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

.blog-grid article {
  padding: 24px;
}

.blog-grid article > span {
  position: relative;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-grid h3 {
  margin-top: 12px;
}

.final-cta {
  padding-top: 50px;
}

.cta-box {
  padding: 48px;
  text-align: center;
}

.cta-box h2 {
  position: relative;
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.12;
}

.cta-box p {
  position: relative;
  max-width: 610px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.site-footer {
  padding: 26px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(3, 7, 18, .94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-grid p,
.footer-contact a {
  color: var(--muted);
  font-size: 13px;
}

.footer-contact {
  display: grid;
  gap: 7px;
}

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

.social {
  display: flex;
  gap: 10px;
}

.social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(212,175,55,.34);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: var(--gold);
  font-weight: 900;
  transition: .25s ease;
}

.social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(212,175,55,.16);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 34px rgba(0,0,0,.5);
  animation: whatsappPulse 2.2s infinite;
  transition: .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 44px rgba(0,0,0,.55), 0 0 32px rgba(37,211,102,.56);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes streamMove {
  from {
    stroke-dashoffset: 180;
    opacity: .42;
  }
  to {
    stroke-dashoffset: -80;
    opacity: 1;
  }
}

@keyframes floatPanel {
  0%, 100% {
    transform: rotateX(3deg) rotateY(-5deg) translateY(0);
  }
  50% {
    transform: rotateX(3deg) rotateY(-5deg) translateY(-10px);
  }
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes carousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 12px 34px rgba(0,0,0,.5), 0 0 0 0 rgba(37,211,102,.46);
  }
  70% {
    box-shadow: 0 12px 34px rgba(0,0,0,.5), 0 0 0 18px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 12px 34px rgba(0,0,0,.5), 0 0 0 0 rgba(37,211,102,0);
  }
}

@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-dashboard {
    min-height: auto;
  }

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

  .project-row,
  .featured-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 18px;
    left: 18px;
    display: grid;
    padding: 22px;
    border: 1px solid rgba(212,175,55,.22);
    border-radius: 14px;
    background: rgba(5,8,22,.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    width: min(100% - 32px, 1180px);
    padding: 54px 0;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats,
  .project-row,
  .featured-grid,
  .blog-grid,
  .footer-grid,
  .about-list {
    grid-template-columns: 1fr;
  }

  .energy-field {
    width: 100%;
    min-width: 0;
    opacity: .5;
  }

  .dashboard-card {
    padding: 12px;
    transform: none;
    animation: none;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-body aside {
    display: none;
  }

  .metric-grid,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .floating-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: 170px;
    margin: 18px auto 0;
  }

  .solutions-strip,
  .services,
  .featured-projects,
  .about,
  .blog,
  .final-cta {
    padding: 64px 0;
  }

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

  .cta-box {
    padding: 32px 22px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text small {
    max-width: 180px;
    font-size: 6px;
  }

  .brand-symbol {
    width: 44px;
    height: 38px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.workflow {
    width: min(1180px, calc(100% - 40px));

    margin: 140px auto 0;

    position: relative;
}

.workflow-line {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    margin-top: 80px;
}

.workflow-line::before {
    content: "";

    position: absolute;

    top: 40px;
    left: 5%;

    width: 90%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,210,90,.4),
            transparent
        );
}

.workflow-step {
    position: relative;

    text-align: center;
}

.workflow-number {
    width: 80px;
    height: 80px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,210,90,.18),
            rgba(255,210,90,.03)
        );

    border: 1px solid rgba(255,210,90,.25);

    color: #ffd25a;

    font-size: 26px;
    font-weight: 700;

    box-shadow:
        0 0 40px rgba(255,210,90,.08);
}

.workflow-step h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.workflow-step p {
    color: rgba(255,255,255,.68);
    line-height: 1.7;
}

.tech-stack {
    margin-top: 120px;

    padding: 42px;

    border-radius: 32px;

    background:
        linear-gradient(
            180deg,
            rgba(22,30,48,.96),
            rgba(10,14,25,.98)
        );

    border: 1px solid rgba(255,255,255,.08);
}

.stack-items {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 30px;
}

.stack-items span {
    padding: 14px 24px;

    border-radius: 999px;

    background: rgba(8,15,32,.8);

    border: 1px solid rgba(255,255,255,.08);

    color: #fff;

    font-weight: 600;
}

.workflow-cta {
    margin-top: 80px;

    padding: 60px;

    border-radius: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    background:
        radial-gradient(
            circle at left,
            rgba(255,210,90,.14),
            transparent 40%
        ),
        linear-gradient(
            90deg,
            rgba(25,34,52,.98),
            rgba(7,16,35,.98)
        );

    border: 1px solid rgba(255,255,255,.08);
}

.workflow-cta-content {
    max-width: 540px;
}

.workflow-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1;
    margin-bottom: 18px;
}

.workflow-cta-content p {
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.7;
}

.workflow-cta .btn-gold {
    flex-shrink: 0;
    white-space: nowrap;
}
@media (max-width: 1100px) {

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

    .workflow-line::before {
        display: none;
    }

    .workflow-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px;
    }

    .workflow-cta-content h2 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {

    .workflow-line {
        grid-template-columns: 1fr;
    }

    .workflow-cta {
        padding: 34px 24px;
        gap: 32px;
    }

    .workflow-cta-content h2 {
        font-size: 40px;
    }

    .workflow-cta-content p {
        font-size: 16px;
    }

    .workflow-cta .btn-gold {
        width: 100%;
    }
}
.workflow-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.workflow-cta-content {
    flex: 1;
}

.workflow-cta-content:first-child {
    max-width: 420px;
}

.workflow-cta-content:last-child {
    max-width: 420px;
}

.workflow-cta .btn {
    flex-shrink: 0;
}