:root {
  --bg: #f4f7fb;
  --bg-elev: #eef3fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #0f172a;
  --ink-2: #475569;
  --ink-3: #64748b;
  --line: rgba(148, 163, 184, 0.24);
  --line-strong: rgba(71, 85, 105, 0.18);
  --brand: #2458ff;
  --brand-2: #16a3ff;
  --brand-3: #0b1326;
  --good: #15b67a;
  --warn: #ffb347;
  --halo: rgba(36, 88, 255, 0.14);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.14);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;
  --wrap: min(1180px, calc(100vw - 32px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:"Sora", sans-serif;
  font-size: 14px !important;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(22, 163, 255, 0.13), transparent 28%),
    radial-gradient(circle at top right, rgba(36, 88, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 48%, #edf2fa 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  background: rgba(36, 88, 255, 0.2);
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-shell {
  position: relative;
}

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

.bg-grid {
  background-image:
    linear-gradient(rgba(36, 88, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 88, 255, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, black 30%, transparent 80%);
}

.bg-dots {
  background-image: radial-gradient(rgba(36, 88, 255, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 78% 62% at 50% 24%, black 28%, transparent 80%);
  opacity: 0.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(244, 247, 251, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 247, 251, 0.92);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 30px rgba(36, 88, 255, 0.28);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.brand-mark::before {
  inset: 9px 5px;
}

.brand-mark::after {
  inset: 5px 9px;
}

.brand-copy span {
  display: block;
}

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

.brand-tag {
  font-size: 0.7rem;
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}
.nav-links li{display: block;}
.nav-links a {
  padding: 10px 15px;
  border-radius: var(--r-pill);
  font-size:14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-family: 'DM Sans';
}

.nav-links a:hover,
.nav-links a.active {
  background: white;
  color: var(--ink);
}

.nav-cta {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding:8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-weight: 500;
  font-size:14px !important;
  cursor: pointer;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.3s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

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

.btn-primary {
  background:rgb(16, 25, 35);
  color: white;
  box-shadow: 0 14px 36px rgba(36, 88, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(36, 88, 255, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: var(--line);
}

.btn-dark {
  background: var(--brand-3);
  color: white;
  box-shadow: var(--shadow-md);
}

.magnet {
  display: inline-flex;
}

.eyebrow,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  font-size: 0.72rem;
  color: var(--brand);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--halo);
}

.chip {
  padding: 7px 11px;
  border-radius: var(--r-pill);
  font-size: 0.66rem;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--good);
}

.hero {
  position: relative;
  padding: 58px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height:1.04;
  font-family:"Sora", sans-serif;
}

.hero-copy h1 {
  font-size:clamp(64px, 6.4vw, 81px);
  max-width: 8ch;
}

.gradient-text {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--ink-2);
  font-size: 1.14rem;
  line-height: 1.7;
}

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

.hero-highlights {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-card,
.card,
.service-panel,
.contact-option,
.info-panel,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.mini-card {
  padding: 18px;
  border-radius: var(--r-md);
}

.mini-card strong {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.94rem;
}

.terminal {
  position: relative;
  border-radius: 30px;
  padding: 22px;
  background: #0b1122;
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #e2e8f0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 34%);
  pointer-events: none;
}

.terminal-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.terminal-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.terminal-line {
  display: flex;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.9;
}

.prompt {
  color: #53b8ff;
}

.good {
  color: #34d399;
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 18px;
  background: #53b8ff;
  animation: blink 1.1s steps(2) infinite;
  vertical-align: -3px;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(237, 242, 250, 0.68));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-title {
  font-size:clamp(32px, 4.5vw, 52px);
  margin-top: 18px;
}

.section-sub {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.7;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

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

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

.marquee-item {
  padding: 11px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}

.services-grid,
.stats-grid,
.process-grid,
.testimonials-grid,
.team-grid,
.contact-grid,
.quick-grid {
  display: grid;
  gap: 16px;
}

.services-row-list {
  display: grid;
  gap: 12px;
}

.section-top-sm {
  padding-top: 22px;
}

.section-cta-pad {
  padding-top: 24px;
  padding-bottom: 120px;
}

.cta-content {
  position: relative;
  max-width: 720px;
}

.footer-grid-bg {
  opacity: 0.45;
}

.footer-wrap {
  position: relative;
}

.footer-copy-spaced {
  margin-top: 16px;
}

.service-row-link {
  padding: 32px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: center;
}

.service-row-icon {
  width: 60px;
  height: 60px;
}

.service-row-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}

.service-row-title h3 {
  font-size: 24px;
  margin: 0;
}

.service-row-text {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.service-row-action {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}

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

.card {
  position: relative;
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 88, 255, 0.24);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--brand);
  background: linear-gradient(180deg, rgba(36, 88, 255, 0.08), rgba(22, 163, 255, 0.1));
  border: 1px solid rgba(36, 88, 255, 0.14);
}

.card h3 {
  margin: 20px 0 10px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--bg-elev);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--ink-3);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
}

.feature-card {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  border: none;
}

.feature-card p,
.feature-card .pill {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card .pill {
  background: rgba(255, 255, 255, 0.14);
}

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

.stat-card {
  padding: 26px;
  border-radius: var(--r-md);
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  color: var(--brand);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--ink-2);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

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

.process-step {
  padding: 28px;
  border-radius: var(--r-lg);
}

.step-no {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--brand);
  margin-bottom: 14px;
}

.process-step h3,
.testimonial-card blockquote,
.faq-title,
.team-card h3,
.contact-option h3,
.service-panel h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.process-step p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
}

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

.testimonial-card {
  padding: 28px;
  border-radius: var(--r-lg);
  position: relative;
  border:1px solid rgb(227, 232, 239);
  background: #fff;
}
.caresole-sec{border-top:1px solid rgb(218, 223, 229); border-bottom: 1px solid rgb(218, 223, 229);padding: 30px 0;}
.no-widgets .site-footer{margin-top: 0 !important}

.testimonial-card blockquote {
  margin: 16px 0 20px;
  font-size: 1.1rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.logo-row span {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.2rem;
  color: var(--ink-3);
  font-weight: 600;
}

.cta-panel,
.page-hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-md);
}

.cta-panel {
  padding: 58px clamp(24px, 4vw, 56px);
}

.page-hero {
  position: relative;
  padding: 76px 0 26px;
}

.page-hero-panel {
  padding: clamp(28px, 5vw, 54px);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 12ch;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.list-clean li {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.list-clean strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.08rem;
}

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

.team-card {
  padding: 22px;
  border-radius: var(--r-lg);
}

.team-visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  margin-bottom: 18px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16) 12px, transparent 12px, transparent 24px),
    linear-gradient(135deg, rgba(36, 88, 255, 0.92), rgba(22, 163, 255, 0.82));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.team-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.team-card p {
  margin: 0;
  color: var(--ink-2);
}

.service-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
}

.service-panel {
  border-radius: var(--r-lg);
  padding: 28px;
}

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

.deliverable {
  padding: 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.deliverable span {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--brand);
  letter-spacing: 0.14em;
}

.service-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.service-row span:first-child {
  color: var(--ink-2);
}

.service-row span:last-child {
  font-weight: 700;
}

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

.contact-stack {
  display: grid;
  gap: 12px;
}

.contact-option {
  padding: 26px;
  border-radius: var(--r-lg);
}

.contact-option h3 {
  margin: 14px 0 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.contact-option p,
.info-panel p {
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}

.info-panel {
  padding: 30px;
  border-radius: var(--r-lg);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-2);
}

.forminator-input,
.forminator-textarea,
.forminator-select2 {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.forminator-input:focus,
.forminator-textarea:focus,
.forminator-select2:focus {
  outline: none;
  border-color: rgba(36, 88, 255, 0.5);
  box-shadow: 0 0 0 5px var(--halo);
}

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

.form-note {
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
}

.form-success {
  display: none;
  gap: 14px;
  padding-top: 10px;
}

.form-success.is-visible {
  display: grid;
}

.success-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--good), #43d6a0);
  color: white;
  font-size: 1.4rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.faq-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: left;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(36, 88, 255, 0.08);
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 22px 22px;
  color: var(--ink-2);
  line-height: 1.7;
}

.site-footer {
  position: relative;
  padding: 78px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(239, 244, 252, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.forminator-row{display:flex; gap:25px; margin-bottom:12px;}
.forminator-col{width: 100%;}

.footer-col h4 {
  margin: 0 0 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col li,
.footer-copy,
.footer-meta {
  color: var(--ink-2);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--ink-3);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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


.products-hero {
  position: relative;
  padding: 88px 0 24px;
}

.products-hero-wrap {
  position: relative;
}

.products-eyebrow {
  margin-bottom: 22px;
}

.products-title {
  margin: 0 0 24px;
  max-width: 1000px;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.products-sub {
  margin: 0 0 32px;
  max-width: 620px;
  color: var(--ink-2);
  font-size: 1.25rem;
  line-height: 1.55;
}

.products-showcase-section {
  padding: 40px 0 0;
}

.products-showcase {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.products-showcase-copy {
  padding: 56px 48px;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.product-brand-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.product-brand-version {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-heading {
  margin: 0 0 18px;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-text {
  margin: 0 0 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

.product-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.product-feature-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

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

.product-preview {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 36px;
  background: #1b2338;
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(49, 112, 255, 0.35), transparent 60%);
}

.staydesk-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 18px;
  border: 1px solid rgba(91, 104, 143, 0.65);
  border-radius: var(--r-md);
  background: #242c45;
  box-shadow: var(--shadow-lg);
  color: rgba(232, 238, 255, 0.94);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.staydesk-topbar,
.staydesk-arrivals-head,
.staydesk-yield {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.staydesk-topbar {
  margin-bottom: 16px;
}

.staydesk-dim {
  opacity: 0.6;
}

.staydesk-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.staydesk-dot,
.staydesk-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  flex-shrink: 0;
}

.staydesk-dot {
  background: var(--good);
}

.staydesk-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.staydesk-metric,
.staydesk-panel,
.staydesk-yield {
  border: 1px solid rgba(91, 104, 143, 0.65);
  border-radius: 8px;
  background: #1b2338;
}

.staydesk-metric {
  padding: 10px 12px;
}

.staydesk-metric-label {
  font-size: 10px;
  opacity: 0.6;
}

.staydesk-metric-value {
  margin-top: 4px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.staydesk-panel {
  margin-bottom: 10px;
  padding: 14px;
}

.staydesk-arrivals-head {
  margin-bottom: 12px;
  font-size: 11px;
  opacity: 0.7;
}

.staydesk-arrivals {
  display: grid;
  gap: 6px;
}

.staydesk-arrival {
  display: grid;
  grid-template-columns: 44px 1fr 60px 90px;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
}

.staydesk-room,
.staydesk-type {
  opacity: 0.6;
}

.staydesk-type {
  opacity: 0.5;
}

.staydesk-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.staydesk-status-good {
  color: var(--good);
}

.staydesk-status-brand {
  color: var(--brand-2);
}

.staydesk-status-warn {
  color: var(--warn);
}

.staydesk-status-good .staydesk-status-dot {
  background: var(--good);
}

.staydesk-status-brand .staydesk-status-dot {
  background: var(--brand-2);
}

.staydesk-status-warn .staydesk-status-dot {
  background: var(--warn);
}

.staydesk-yield {
  padding: 12px;
}

.staydesk-yield-copy {
  opacity: 0.7;
}

.staydesk-yield-value {
  color: var(--brand-2);
}

.products-coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.coming-card {
  padding: 28px;
}

.coming-chip {
  margin-bottom: 16px;
}

.coming-chip .chip-dot {
  background: var(--warn);
}

.coming-card-title {
  margin: 0 0 8px;
  font-size: 22px;
}

.coming-card-type {
  margin-bottom: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coming-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .products-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .products-hero {
    padding-top: 72px;
  }

  .products-showcase-copy,
  .product-preview {
    padding: 24px 20px;
  }

  .staydesk-metrics,
  .staydesk-arrival {
    grid-template-columns: 1fr 1fr;
  }
}





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

@keyframes blink {
  50% { opacity: 0; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .about-layout,
  .contact-grid,
  .service-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .process-grid,
  .stats-grid,
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .site-header .magnet.nav-cta{display: none;}
}


@media (max-width: 720px) {
  .hero,
  .section,
  .site-footer {
    padding-top: 72px;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }

  .services-grid,
  .stats-grid,
  .process-grid,
  .testimonials-grid,
  .team-grid,
  .hero-highlights,
  .deliverables,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .page-hero-panel,
  .card,
  .service-panel,
  .contact-option,
  .info-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    min-height: 76px;
  }

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



/* Mobile Menu */


/* Mobile Menu Button */
.mobile-menu-btn {
    background: #111827;
    color: #fff;
    border: none;
    padding:5px 14px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 8px;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 9;
}
.mobile-close-btn{background: }

/* Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #000;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
    transition: .35s ease;
    z-index: 999;
    padding: 30px 20px;
    overflow-y: auto;
}

/* Active States */
.mobile-menu.active {
    left: 0;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.mobile-close-btn {
    border: none;
    background-color: transparent !important;
    font-size: 32px;
    cursor: pointer;
    float: right;
    margin: -30px 0 0 0;
}

/* Navigation */
.mobile-nav-list {
    list-style: none;
    margin:30px 0 0;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 12px;
}

.mobile-nav-list a {
    display: block;
    padding: 14px 16px;
    color: #f1f1f1;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 10px;
    transition: all .3s ease;
    background:#141414;
}

.mobile-nav-list a:hover {
    background: linear-gradient(
        135deg,
        #6366f1,
        #8b5cf6
    );
    color: #fff;
    transform: translateX(5px);
    padding: 16px 18px;
}
.mobile-close-btn{padding:0; background: transparent;}
/* Desktop */
@media (min-width: 992px) {
    .mobile-menu,
    .mobile-menu-btn,
    .mobile-overlay {
        display: none;
    }
}