:root {
  --primary: #3457ff;
  --primary-dark: #1731c9;
  --accent: #00a88f;
  --navy: #070d35;
  --text: #11183f;
  --muted: #64708d;
  --line: #e7ebf6;
  --soft: #f6f8ff;
  --surface: #ffffff;
  --bg: #ffffff;
  --radius: 8px;
  --radius-sm: 6px;
  --button-radius: 8px;
  --body-font-size: 15px;
  --nav-font-size: 14px;
  --hero-title-size: 50px;
  --hero-subtitle-size: 16px;
  --section-title-size: 42px;
  --section-text-size: 16px;
  --card-title-size: 18px;
  --card-text-size: 14px;
  --button-font-size: 14px;
  --shadow: 0 18px 48px rgba(15, 23, 42, .10);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, .07);
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: var(--body-font-size);
  line-height: 1.65;
  overflow-x: hidden
}

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

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

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 235, 246, .86)
}

.nav-shell {
  height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 1200px;
  overflow: hidden;
}

.brand-mark {
  width: 66px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 25px rgba(52, 87, 255, .2);
  flex: 0 0 auto
}

.brand-logo {
  width: clamp(240px, 22vw, 300px);
  height: 76px;
  object-fit: contain;
  flex: 0 0 auto;
  max-width: 300px
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
  max-width: 240px
}

.site-header .brand-copy {
  margin-left: 0;
}

.site-footer .brand-copy {
  margin-left: -50px
}

.brand-copy strong {
  font-size: 16px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.brand-copy small {
  font-size: 12px;
  color: #384067;
  font-weight: 600;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 0;
  white-space: nowrap
}

.nav-links a {
  font-size: var(--nav-font-size);
  font-weight: 700;
  color: #161d44;
  transition: .2s
}

.nav-links a:hover {
  color: var(--primary)
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--button-radius);
  padding: 13px 23px;
  font-family: inherit;
  font-size: var(--button-font-size);
  font-weight: 800;
  cursor: pointer;
  transition: .22s;
  white-space: nowrap
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 12px 25px rgba(52, 87, 255, .22)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(52, 87, 255, .28)
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(52, 87, 255, .32)
}

.btn-outline:hover {
  background: #f4f6ff;
  border-color: var(--primary)
}

.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08)
}

.btn-large {
  padding: 15px 28px;
  border-radius: var(--button-radius)
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  display: block;
  border-radius: 10px;
  transition: .2s
}

.nav-shell.open .menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-shell.open .menu-btn span:nth-child(2) {
  opacity: 0
}

.nav-shell.open .menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.hero {
  position: relative;
  padding: 70px 0 34px;
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  overflow: hidden
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr .9fr;
  gap: 42px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #eef1ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 2.5vw, var(--hero-title-size));
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
  max-width: 600px
}

h1 .gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-copy p {
  margin: 24px 0 0;
  max-width: 540px;
  color: #58637f;
  font-size: var(--hero-subtitle-size);
  line-height: 1.75
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px
}

.trusted-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: #6a7590;
  font-size: 13px
}

.trusted-row p {
  margin: 0;
  font-size: 13px
}

.avatar-stack {
  display: flex
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -9px;
  background: linear-gradient(135deg, #ffd0a8, #10214e)
}

.avatar-stack span:first-child {
  margin-left: 0
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, #93c5fd, #1e3a8a)
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, #fde68a, #92400e)
}

.avatar-stack span:nth-child(4) {
  background: linear-gradient(135deg, #c4b5fd, #5b21b6)
}

.hero-visual {
  position: relative;
  max-width: 480px;
  margin-left: auto
}

.laptop-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 460px;
  overflow: hidden;
  padding: 14px 14px 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #070814, #161a2a);
  box-shadow: 0 30px 90px rgba(12, 19, 47, .22);
  transform: none
}

.laptop-frame:after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 10px;
  height: 22px;
  border-radius: 0 0 50px 50px;
  background: linear-gradient(90deg, #cfd3dc, #fff, #aeb5c3)
}

.dashboard-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 340px;
  max-height: 410px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce3f6
}

.dash-sidebar {
  background: #f8f9ff;
  border-right: 1px solid #eef2fb;
  padding: 22px 17px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center
}

.mini-logo {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: 12px
}

.dash-sidebar i {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: #eef2ff
}

.dash-main {
  padding: 16px
}

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

.dash-top strong {
  font-size: 18px;
  color: #10183d
}

.dash-top small {
  display: block;
  color: #8a94aa;
  font-size: 11px
}

.dash-icons {
  display: flex;
  gap: 8px
}

.dash-icons span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eef2ff
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px
}

.dash-metric {
  border: 1px solid #e8edf8;
  border-radius: var(--radius);
  padding: 10px;
  background: #fff
}

.dash-metric span {
  display: block;
  color: #7d879d;
  font-size: 10px
}

.dash-metric strong {
  display: block;
  color: #11183f;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 4px
}

.dash-metric em {
  font-style: normal;
  color: #16a34a;
  font-size: 10px;
  font-weight: 800
}

.dash-content-grid {
  display: grid;
  grid-template-columns: 1.8fr .9fr;
  gap: 16px
}

.chart-box,
.channel-box,
.activity-box {
  margin-top: 12px;
  padding: 12px
}

.chart-title {
  font-weight: 800;
  font-size: 13px
}

.chart-line {
  height: 105px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding-top: 18px
}

.chart-line i {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #6a80ff, #dce3ff)
}

.chart-line i:nth-child(1) {
  height: 35%
}

.chart-line i:nth-child(2) {
  height: 58%
}

.chart-line i:nth-child(3) {
  height: 42%
}

.chart-line i:nth-child(4) {
  height: 72%
}

.chart-line i:nth-child(5) {
  height: 50%
}

.chart-line i:nth-child(6) {
  height: 68%
}

.chart-line i:nth-child(7) {
  height: 83%
}

.donut {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 5px auto 14px;
  background: conic-gradient(var(--primary) 0 45%, #a78bfa 45% 72%, #dbe2ff 72% 100%);
  position: relative
}

.donut:after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: #fff
}

.channel-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6b7280;
  font-size: 10px
}

.channel-box li {
  display: flex;
  justify-content: space-between;
  gap: 8px
}

.activity-box {
  margin-top: 16px
}

.activity-box b {
  font-size: 13px
}

.activity-box p {
  margin: 8px 0 0;
  color: #7a8498;
  font-size: 11px
}

.stats-band {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid #e8edf8;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft)
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f0f3ff;
  color: var(--primary);
  font-size: 22px;
  font-weight: 800
}

.stat-card strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: 0
}

.stat-card span {
  display: block;
  margin-top: 5px;
  color: #5f6a82;
  font-size: 12px;
  font-weight: 700
}

.section {
  padding: 78px 0
}

.section-head.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, var(--section-title-size));
  line-height: 1.12;
  letter-spacing: 0
}

.section-text {
  max-width: 680px;
  margin: 14px auto 0;
  color: #63708b;
  font-size: var(--section-text-size)
}

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

.service-card,
.work-card,
.testimonial-card {
  border: 1px solid #e7ecf7;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(26, 39, 89, .04);
  transition: .22s;
  overflow: hidden
}

.service-card:hover,
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.service-card {
  padding: 36px
}

.service-icon {
  width: 232px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f0f3ff;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 22px
}

.service-card h3,
.work-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: var(--card-title-size)
}

.service-card p,
.work-card p {
  margin: 0;
  color: #68748e;
  font-size: var(--card-text-size);
  line-height: 1.7
}

.learn-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px
}

.why-section {
  background: #fbfcff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 60px;
  align-items: center
}

.why-grid .section-title {
  text-align: left
}

.why-grid .section-text {
  margin-left: 0
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 34px
}

.why-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px
}

.why-point i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900
}

.why-point h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--navy)
}

.why-point p {
  margin: 0;
  color: #69748e;
  font-size: 13px
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 38px
}

.process-line:before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 26px;
  border-top: 2px dashed #b9c4ff
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 1
}

.step-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6ebff;
  color: var(--primary);
  font-weight: 900;
  border: 8px solid #fff;
  box-shadow: 0 6px 16px rgba(52, 87, 255, .12)
}

.process-step:first-child .step-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--navy)
}

.process-step p {
  margin: 0 auto;
  color: #68748e;
  font-size: 12px;
  line-height: 1.55;
  max-width: 170px
}

.section-row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px
}

.section-row-head .section-text {
  margin-left: 0
}

.text-link {
  color: var(--primary);
  font-weight: 900;
  font-size: 14px
}

.work-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: linear-gradient(135deg, #111827, #2563eb);
  position: relative;
  overflow: hidden
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.work-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 13, 53, .72), rgba(52, 87, 255, .22));
  z-index: 1
}

.work-image span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-weight: 800;
  max-width: 80%;
  font-size: 18px
}

.work-body {
  padding: 22px
}

.result-line {
  margin-top: 16px;
  color: #16a34a;
  font-weight: 800;
  font-size: 13px
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px
}

.tag {
  background: #f0f3ff;
  color: #4058d8;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800
}

.testimonial-section {
  background: linear-gradient(180deg, #f3f6ff, #fff)
}

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

.testimonial-card {
  padding: 26px
}

.quote-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff7df;
  color: #c18400;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px
}

.testimonial-card p {
  margin: 0;
  color: #3e4863;
  font-size: 14px
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px
}

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7d2fe, #1e3a8a);
  overflow: hidden
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.client strong {
  display: block;
  color: var(--navy);
  font-size: 14px
}

.client span {
  display: block;
  color: #7a849c;
  font-size: 12px
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
  align-items: start
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  margin-top: 24px
}

.faq-item {
  border: 1px solid #e7ecf7;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: inherit;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: #66718b;
  font-size: 13px
}

.faq-item.open .faq-a {
  display: block
}

.faq-cta {
  border-radius: var(--radius);
  padding: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 22px 45px rgba(52, 87, 255, .22)
}

.faq-cta h3 {
  margin: 0 0 8px;
  font-size: 20px
}

.faq-cta p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .84)
}

.contact-section {
  background: #fbfcff;
  border-top: 1px solid var(--line)
}

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

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px
}

.contact-item {
  padding: 18px 20px;
  border: 1px solid #e7ecf7;
  border-radius: 14px;
  background: #fff
}

.contact-item span {
  display: block;
  color: #7b8499;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase
}

.contact-item strong {
  display: block;
  color: var(--navy);
  margin-top: 3px
}

.contact-form {
  background: #fff;
  border: 1px solid #e7ecf7;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px
}

.form-head b {
  display: block;
  color: var(--navy);
  font-size: 22px
}

.form-head span,
.form-note {
  display: block;
  color: #768198;
  font-size: 13px
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #27304f;
  font-weight: 800;
  font-size: 13px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe5f2;
  border-radius: 12px;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 14px;
  outline: 0;
  background: #fff;
  color: var(--text)
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(52, 87, 255, .1)
}

.footer-cta {
  padding: 34px 0;
  background: linear-gradient(135deg, #1550d8, #8538ff);
  color: #fff
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.footer-cta h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0
}

.footer-cta p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .86)
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 34px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr 1fr 1fr;
  gap: 38px;
  align-items: flex-start
}

.footer-brand {
  align-items: flex-start
}

.footer-brand .brand-logo {
  width: clamp(130px, 12vw, 170px);
  height: 76px
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px
}

.footer-grid a,
.footer-grid span,
.footer-brand-block p {
  display: block;
  margin: 7px 0;
  color: #67728c;
  font-size: 13px
}

.footer-brand-block p {
  max-width: 320px;
  line-height: 1.75
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0f3ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid #e0e6ff
}

.socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff
}

.socials img {
  width: 18px;
  height: 18px;
  object-fit: contain
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 18px;
  color: #7d879a;
  font-size: 12px;
  text-align: center
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  z-index: 3000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  max-width: min(92vw, 520px);
  font-weight: 700
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .6s
}

.reveal.show {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:1100px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 16px
  }

  .brand {
    max-width: 430px
  }

  .brand-logo {
    width: 220px;
    height: 64px
  }

  .brand-copy {
    max-width: 180px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-copy {
    text-align: center
  }

  .hero-copy p,
  h1 {
    margin-left: auto;
    margin-right: auto
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto
  }

  .hero-actions,
  .trusted-row {
    justify-content: center
  }

  .laptop-frame {
    max-width: 620px;
    margin: auto;
    transform: none
  }

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

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .faq-layout {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr
  }

  .footer-grid>div:last-child {
    grid-column: 1/-1
  }

  .nav-links {
    gap: 22px
  }
}

@media (max-width:900px) {
  .nav-shell {
    height: 74px;
    display: flex
  }

  .menu-btn {
    display: flex
  }

  .nav-cta {
    display: none
  }

  .nav-links {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 82px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 12px
  }

  .nav-links a:hover {
    background: #f3f5ff
  }

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

  .dashboard-card {
    grid-template-columns: 58px 1fr
  }

  .dash-sidebar {
    padding: 16px 10px
  }

  .dash-main {
    padding: 18px
  }

  .card-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .process-line:before {
    display: none
  }

  .process-step {
    display: grid;
    grid-template-columns: 62px 1fr;
    text-align: left;
    align-items: start
  }

  .step-number {
    margin: 0
  }

  .process-step p {
    margin: 0;
    max-width: none
  }

  .faq-list {
    grid-template-columns: 1fr
  }

  .footer-cta-inner {
    align-items: flex-start;
    flex-direction: column
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .brand-copy strong {
    font-size: 14px
  }

  .brand-copy small {
    font-size: 10px
  }

  .brand-mark {
    width: 56px;
    height: 40px
  }

  .brand-logo {
    width: 190px;
    height: 58px
  }
}

@media (max-width:640px) {
  .container {
    width: min(100% - 30px, var(--container))
  }

  .hero {
    padding: 42px 0 24px
  }

  h1 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0
  }

  .hero-copy p {
    font-size: 15px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .trusted-row {
    align-items: flex-start;
    text-align: left
  }

  .laptop-frame {
    padding: 10px 10px 30px;
    border-radius: 22px;
    max-height: 380px
  }

  .dashboard-card {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: 350px
  }

  .dash-sidebar {
    display: none
  }

  .dash-main {
    padding: 12px
  }

  .dash-metrics {
    grid-template-columns: repeat(2, 1fr)
  }

  .dash-content-grid {
    grid-template-columns: 1fr
  }

  .chart-line {
    height: 90px
  }

  .activity-box {
    display: none
  }

  .stats-grid {
    grid-template-columns: 1fr
  }

  .stat-card {
    padding: 18px
  }

  .section {
    padding: 56px 0
  }

  .card-grid,
  .testimonial-grid,
  .why-points {
    grid-template-columns: 1fr
  }

  .service-card {
    padding: 26px
  }

  .section-row-head {
    display: block
  }

  .text-link {
    display: inline-block;
    margin-top: 12px
  }

  .faq-cta {
    padding: 24px
  }

  .contact-form {
    padding: 22px
  }

  .footer-cta h2 {
    font-size: 24px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .brand-copy {
    max-width: 210px
  }

  .brand-copy strong,
  .brand-copy small {
    white-space: normal
  }

  .footer-brand .brand-logo {
    width: 126px;
    height: 58px
  }

  .toast {
    left: 15px;
    right: 15px;
    transform: none
  }

  .work-image {
    height: 150px
  }
}

@media (max-width:420px) {
  h1 {
    font-size: 29px;
    line-height: 1.14
  }

  .dash-metrics {
    grid-template-columns: 1fr
  }

  .brand-logo {
    width: 160px;
    height: 50px
  }

  .nav-shell {
    gap: 10px
  }

  .menu-btn {
    width: 40px;
    height: 40px
  }

  .eyebrow {
    font-size: 10px;
    padding: 7px 12px
  }

  .section-title {
    font-size: 28px
  }

  .btn {
    width: auto;
    padding: 12px 17px
  }
}

/* ===== TABLET + MOBILE HERO DASHBOARD CENTER FIX ===== */

@media (max-width: 1100px) {
  .hero-visual {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .laptop-frame,
  .dashboard-preview,
  .hero-dashboard,
  .hero-dashboard-img,
  .hero-visual img {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .laptop-frame {
    margin: 0 auto !important;
  }
}

/* ===== ADMIN LOGIN PAGE ===== */

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(52, 87, 255, .08), rgba(0, 168, 143, .06)),
    #f7fafc;
}

.login-card {
  width: min(100%, 440px);
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid #e1e7f3;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

.login-brand {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8edf7;
}

.login-copy {
  display: grid;
  gap: 10px;
}

.login-eyebrow {
  margin: 0;
  width: max-content;
}

.login-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.muted {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

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

.field label {
  color: #27304f;
  font-size: 13px;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dfe5f2;
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: 0;
}

.field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(52, 87, 255, .10);
}

.login-form .btn {
  width: 100%;
  min-height: 48px;
}

.login-back {
  justify-self: center;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.login-back:hover {
  color: var(--primary-dark);
}

.login-card .form-note {
  min-height: 20px;
  margin: 0;
  text-align: center;
}

@media (max-width: 520px) {
  .login-page {
    padding: 18px;
  }

  .login-card {
    padding: 24px;
  }

  .login-title {
    font-size: 28px;
  }
}

/* ===== ADMIN LOGIN REDESIGN ===== */

.login-page {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .06), rgba(52, 87, 255, .08)),
    #eef3f8;
}

.login-shell {
  width: min(100%, 980px);
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  border: 1px solid #dfe6f1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .16);
}

.login-panel {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 42px;
  background: #fff;
}

.login-aside {
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 13, 53, .96), rgba(37, 99, 235, .88)),
    #07102a;
}

.login-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.login-aside h2 {
  max-width: 460px;
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0;
}

.login-aside p {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.75;
}

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

.login-feature-grid span {
  min-height: 58px;
  display: grid;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.login-panel .brand-mark {
  width: 54px;
  height: 42px;
}

.login-panel .login-title {
  font-size: 34px;
}

.login-panel .field input {
  background: #f8fafc;
}

@media (max-width: 820px) {
  .login-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .login-aside {
    display: none;
  }
}

@media (max-width: 520px) {
  .login-panel {
    padding: 26px;
  }
}


/* ===== FINAL LOGO & COMPANY NAME ALIGNMENT FIX ===== */
.nav-shell {
  grid-template-columns: auto 1fr auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  align-items: center;
  gap: 85px !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
}

.brand-logo {
  width: 80px !important;
  height: auto !important;
}

.brand-copy {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.15 !important;
  min-width: 0 !important;
  max-width: 300px !important;
}

.brand-copy strong {
  font-size: 16px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.brand-copy small {
  font-size: 12px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}



/* ===== HEADER & NAV ALIGNMENT ===== */
.nav-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.nav-links {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.nav-actions {
  justify-self: end;
}

/* ===== FOOTER ALIGNMENT FIX ===== */
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand-block p,
.footer-grid a,
.footer-grid span {
  word-wrap: break-word;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1100px) {
  .nav-shell, .footer-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 640px) {
  .nav-shell, .footer-grid {
    padding-left: 12px;
    padding-right: 12px;
  }
}



/* ===== FINAL FOOTER & LOGO FIX ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}

.footer-brand .brand-logo {
  width: 75px; /* logo size adjust */
  height: auto;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.footer-brand .brand-copy {
  max-width: 280px;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

/* FOOTER GRID ADJUSTMENTS */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr 1fr 1fr;
  gap: 38px;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  align-items: flex-start;
}

/* RESPONSIVE FIXES */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-brand .brand-copy {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-brand .brand-copy {
    max-width: 100%;
  }
}

/* ===== STRONG LOGO & COMPANY NAME ALIGNMENT ===== */
.site-header .nav-shell .brand {
  display: flex !important;
  flex-direction: row !important;       /* Horizontal: logo left, text right */
  align-items: center !important;       /* Vertical center alignment */
  gap: 12px !important;                 /* Space between logo and text */
}

.site-header .nav-shell .brand-logo {
  width: 80px !important;               /* Adjust logo size */
  height: auto !important;
  flex-shrink: 0 !important;
}

.site-header .nav-shell .brand-copy {
  display: flex !important;
  flex-direction: column !important;   /* Company name above, tagline below */
  min-width: 0 !important;
}

.site-header .nav-shell .brand-copy strong {
  font-size: 16px !important;
  color: #11183f !important;
  white-space: nowrap !important;
}

.site-header .nav-shell .brand-copy small {
  font-size: 12px !important;
  color: #64708d !important;
  margin-top: 2px !important;
  white-space: normal !important;
}

/* ===== MEDIA QUERIES FOR MOBILE ===== */
@media (max-width: 900px) {
  .site-header .nav-shell .brand {
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  .site-header .nav-shell .brand {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .site-header .nav-shell .brand-copy strong,
  .site-header .nav-shell .brand-copy small {
    white-space: normal !important;
  }
}


/* ===== FINAL STRONG HEADER & FOOTER ALIGNMENTS ===== */
.site-header .nav-shell .brand {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
}

.site-header .nav-shell .brand-logo {
  width: 80px !important;
  height: auto !important;
  flex-shrink: 0 !important;
}

.site-header .nav-shell .brand-copy {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

.site-header .nav-shell .brand-copy strong {
  font-size: 16px !important;
  color: #11183f !important;
  white-space: nowrap !important;
}

.site-header .nav-shell .brand-copy small {
  font-size: 12px !important;
  color: #64708d !important;
  margin-top: 2px !important;
  white-space: normal !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.6fr .8fr 1fr 1fr !important;
  gap: 38px !important;
  max-width: var(--container) !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  align-items: flex-start !important;
}

.footer-brand {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.footer-brand .brand-logo {
  width: 75px !important;
  height: auto !important;
  margin-bottom: 8px !important;
  flex-shrink: 0 !important;
}

.footer-brand .brand-copy {
  max-width: 280px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

  

    
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-brand .brand-copy {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .site-header .nav-shell .brand {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-brand .brand-copy {
    max-width: 100% !important;
  }
}

.footer-brand-block .footer-brand{    display: grid !important;
    grid-template-columns: 40% 60% !important;
    grid-gap: 12px !important;}

    .footer-brand .brand-logo{ width: 70px !important;}

   .footer-brand-block  .brand-copy strong{    position: relative !important;
    top: 10px !important;}
   .footer-brand-block .brand-copy small {position: relative !important;top: -5px !important;color: #8e97ac !important;
}

