:root {
  --bg-dark: #0b0c10;
  --bg-darker: #050608;
  --surface: #1f2833;
  --cyan: #66fcf1;
  --cyan-dim: #45a29e;
  --text: #c5c6c7;
  --white: #ffffff;
  --border: #2d3e50;
  --font-head: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1240px;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.lead {
  font-size: 18px;
  color: #999;
  max-width: 600px;
}

.center {
  text-align: center;
}

/* Buttons */
.btn-cyan {
  display: inline-block;
  background: var(--cyan);
  color: var(--bg-dark);
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--cyan);
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--font-head);
  letter-spacing: 1px;
}

.btn-cyan:hover {
  background: transparent;
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
}

.btn-border {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--cyan);
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--font-head);
  letter-spacing: 1px;
}

.btn-border:hover {
  background: var(--cyan);
  color: var(--bg-dark);
}

.link-simple {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.link-simple:hover {
  color: var(--cyan);
}

.lg {
  padding: 16px 36px;
  font-size: 16px;
}
.sm {
  padding: 8px 16px;
  font-size: 12px;
}
.full {
  width: 100%;
  text-align: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

.h-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-txt {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
}

.desk-nav {
  display: flex;
  gap: 30px;
}

.desk-nav a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 1px;
}

.desk-nav a:hover {
  color: var(--cyan);
}

.h-act {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.b-bar {
  width: 30px;
  height: 2px;
  background: var(--cyan);
}

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.mob-menu.active {
  transform: translateY(0);
}

.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.mm-brand {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--cyan);
  font-weight: 700;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--cyan);
  cursor: pointer;
}

.mm-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mm-nav a {
  font-family: var(--font-head);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
}

.mm-foot {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.mm-cta {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--cyan);
  text-decoration: underline;
  margin-bottom: 10px;
}

.mm-foot p {
  font-size: 12px;
  color: #666;
}

/* Hero */
.hero {
  padding-top: 140px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(102, 252, 241, 0.1) 0%,
    rgba(11, 12, 16, 0) 60%
  );
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-family: monospace;
  color: var(--cyan);
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
}

.glitch {
  position: relative;
  color: var(--cyan);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: #ff00ff;
  z-index: -1;
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch::after {
  color: #00ffff;
  z-index: -2;
  animation: glitch-anim 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip-path: inset(10% 0 80% 0);
    transform: translate(-2px, 0);
  }
  20% {
    clip-path: inset(80% 0 10% 0);
    transform: translate(2px, 0);
  }
  40% {
    clip-path: inset(40% 0 50% 0);
    transform: translate(-2px, 0);
  }
  60% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(2px, 0);
  }
  80% {
    clip-path: inset(60% 0 20% 0);
    transform: translate(-2px, 0);
  }
  100% {
    clip-path: inset(30% 0 30% 0);
    transform: translate(2px, 0);
  }
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.hero-note {
  font-size: 12px;
  color: #666;
  font-style: italic;
}

.code-window {
  background: rgba(31, 40, 51, 0.5);
  border: 1px solid var(--border);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  overflow: hidden;
  position: relative;
}

.cw-head {
  background: #151b22;
  padding: 10px 15px;
  display: flex;
  gap: 8px;
}

.cw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.r {
  background: #ff5f56;
}
.y {
  background: #ffbd2e;
}
.g {
  background: #27c93f;
}

.cw-body {
  padding: 20px;
  font-family: monospace;
  font-size: 14px;
}

.p-time {
  color: #666;
}
.typing {
  color: var(--cyan);
  animation: blink 1s infinite;
  margin-top: 10px;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.cw-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 2px 6px;
}

/* Ticker */
.ticker-wrap {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-block;
  font-family: var(--font-head);
  color: #666;
  font-weight: 700;
  font-size: 14px;
  animation: tick 20s linear infinite;
}

.ticker span {
  margin: 0 20px;
  color: var(--cyan);
}

@keyframes tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Solutions */
.sec-head {
  margin-bottom: 60px;
}
.sec-head p {
  margin: 0 auto;
  color: #999;
  font-size: 18px;
  max-width: 600px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  transition: 0.3s;
}

.card:hover {
  border-color: var(--cyan);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #111;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 4px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.card p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #aaa;
}

.card-link {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

/* Process */
.bg-darker {
  background: var(--bg-darker);
}

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

.split-img {
  position: relative;
  border: 1px solid var(--border);
  padding: 10px;
}

.split-img img {
  filter: grayscale(100%);
  transition: 0.5s;
}
.split-img:hover img {
  filter: grayscale(0%);
}

.float-stat {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--bg-dark);
  border: 1px solid var(--cyan);
  padding: 15px 25px;
  text-align: center;
}

.float-stat span {
  display: block;
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
}
.float-stat strong {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--cyan);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.step-item {
  display: flex;
  gap: 20px;
}

.s-num {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--cyan);
  font-weight: 700;
  border-right: 1px solid var(--border);
  padding-right: 20px;
  height: fit-content;
}

.step-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.step-item p {
  font-size: 14px;
  color: #888;
}

/* Blog */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.btn-link {
  color: var(--cyan);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--cyan);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.b-card.main {
  background: var(--surface);
  border: 1px solid var(--border);
}

.bc-img {
  height: 350px;
  overflow: hidden;
}
.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.b-card:hover img {
  transform: scale(1.05);
}

.bc-text {
  padding: 30px;
}

.date {
  font-size: 12px;
  color: var(--cyan);
  font-family: monospace;
  margin-bottom: 10px;
  display: block;
}

.bc-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.bc-text p {
  color: #aaa;
  margin-bottom: 20px;
}

.read-more {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

.b-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
}

.b-mini h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.b-mini p {
  font-size: 14px;
  color: #888;
}

/* Banner */
.banner {
  background: linear-gradient(135deg, var(--surface), #111);
  border: 1px solid var(--cyan);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(102, 252, 241, 0.05) 10px,
    rgba(102, 252, 241, 0.05) 20px
  );
  z-index: 0;
}

.ban-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.ban-text h2 {
  color: var(--cyan);
  margin-bottom: 10px;
}
.ban-act {
  position: relative;
  z-index: 1;
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.mb-60 {
  margin-bottom: 60px;
}

.acc-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.acc-item {
  border: 1px solid var(--border);
  background: var(--surface);
}

.acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.acc-body p {
  padding: 0 20px 20px;
  color: #aaa;
}

/* Contact */
.split-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.sf-txt h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.sf-txt p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 40px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cl-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  font-weight: 600;
}

.cl-item i {
  color: var(--cyan);
}

.sf-form {
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--border);
}

.inp-box {
  margin-bottom: 20px;
  position: relative;
}

.inp-box label {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.inp-box input {
  width: 100%;
  background: #111;
  border: 1px solid var(--border);
  padding: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
}

.inp-box input:focus {
  outline: none;
  border-color: var(--cyan);
}

.err {
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 11px;
  color: #ff5f56;
  display: none;
}

.inp-box.error input {
  border-color: #ff5f56;
}
.inp-box.error .err {
  display: block;
}

.chk-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.chk-box input {
  margin-top: 5px;
  accent-color: var(--cyan);
}
.chk-box label {
  font-size: 12px;
  color: #888;
}
.chk-box a {
  color: var(--cyan);
  text-decoration: underline;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 20px;
  background: #000;
}

.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.f-logo {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 15px;
}

.f-brand p {
  color: #888;
  max-width: 300px;
}

.f-nav h5 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.f-nav a {
  display: block;
  margin-bottom: 10px;
  color: #aaa;
  font-size: 14px;
}

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

.f-btm {
  text-align: center;
  font-size: 12px;
  color: #444;
  border-top: 1px solid #111;
  padding-top: 20px;
}

/* Cookie */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--cyan);
  padding: 20px;
  z-index: 5000;
  transform: translateY(100%);
  transition: 0.5s;
}

.cookie-bar.active {
  transform: translateY(0);
}

.cb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-inner p {
  color: var(--white);
  font-weight: 600;
}

/* Media */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
    flex-direction: column;
  }
  .split-form {
    grid-template-columns: 1fr;
  }
  .code-window {
    margin-top: 40px;
  }
  .desk-nav,
  .h-act {
    display: none;
  }
  .burger {
    display: flex;
    margin-left: auto;
  }
  .grid-3,
  .split-row,
  .blog-grid,
  .f-grid,
  .contact-split {
    grid-template-columns: 1fr;
  }
  .banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 18px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    margin: 80px 0 30px;
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
