:root {
  --bg: #080b14;
  --surface: #0f1422;
  --surface-2: #151c2d;
  --text: #f5f7ff;
  --muted: #a9b1c7;
  --blue: #4b7bff;
  --blue-bright: #6e96ff;
  --violet: #8b5cf6;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 120px 0;
  position: relative;
}
.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}
.page-glow-one {
  width: 520px;
  height: 520px;
  top: -170px;
  right: -150px;
  background: var(--blue);
}
.page-glow-two {
  width: 420px;
  height: 420px;
  top: 65%;
  left: -250px;
  background: var(--violet);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
.site-header.scrolled {
  background: rgba(8, 11, 20, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font: 800 1.12rem "Manrope";
  letter-spacing: 0.18em;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  font-size: 0.92rem;
  letter-spacing: 0;
  box-shadow: 0 8px 26px rgba(75, 123, 255, 0.3);
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
}
.main-nav > a:not(.nav-cta) {
  color: #c8cee0;
  transition: color 0.2s;
}
.main-nav > a:hover {
  color: white;
}
.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(110, 150, 255, 0.45);
  border-radius: 12px;
  background: rgba(75, 123, 255, 0.1);
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: white;
  transition: 0.25s;
}

.hero {
  min-height: 850px;
  padding-top: 176px;
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 65px;
}
.eyebrow {
  margin: 0 0 20px;
  color: #9db2ef;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--blue-bright);
}
h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.1;
}
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 6vw, 5.65rem);
  letter-spacing: -0.06em;
}
h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(105deg, #8aa8ff, #a37bff);
  background-clip: text;
}
.hero-text {
  max-width: 630px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: linear-gradient(135deg, var(--blue), #6959e9);
  color: white;
  box-shadow: 0 15px 38px rgba(75, 123, 255, 0.25);
}
.button-primary:hover {
  box-shadow: 0 18px 46px rgba(75, 123, 255, 0.4);
}
.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}
.hero-proof {
  display: flex;
  gap: 36px;
  margin-top: 48px;
}
.hero-proof div {
  display: grid;
  padding-left: 14px;
  border-left: 2px solid var(--blue);
}
.hero-proof strong {
  font-size: 0.9rem;
}
.hero-proof span {
  color: #7f899f;
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.dashboard-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 490px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(17, 23, 39, 0.88);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 0 8px rgba(255, 255, 255, 0.015);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  backdrop-filter: blur(16px);
}
.dash-top {
  height: 58px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #8590aa;
  font-size: 0.7rem;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b4355;
}
.window-dots i:first-child {
  background: var(--blue);
}
.avatar {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 700;
}
.dash-body {
  min-height: 340px;
  display: grid;
  grid-template-columns: 62px 1fr;
}
.dash-body aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-top: 25px;
  border-right: 1px solid var(--line);
}
.dash-body aside i,
.dash-body aside b {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #262e42;
}
.dash-body aside b {
  background: var(--blue);
  box-shadow: 0 0 18px rgba(75, 123, 255, 0.5);
}
.dash-content {
  padding: 27px;
}
.dash-content > p {
  margin: 0 0 18px;
  font: 700 0.92rem "Manrope";
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-row div {
  display: grid;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}
.stat-row small {
  color: #7e89a0;
  font-size: 0.65rem;
}
.stat-row strong {
  margin-top: 5px;
  font: 700 1.35rem "Manrope";
}
.chart {
  height: 120px;
  margin: 18px 0;
  padding: 12px 14px 0;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(75, 123, 255, 0.08), transparent);
}
.chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #7498ff, #394ac0);
}
.chart-line {
  position: absolute;
  width: 70%;
  height: 2px;
  top: 42px;
  left: 18%;
  background: var(--violet);
  transform: rotate(-10deg);
  box-shadow: 0 0 12px var(--violet);
}
.dash-list {
  display: grid;
  grid-template-columns: 25px 1fr 35px;
  gap: 10px;
  align-items: center;
  margin-top: 9px;
}
.dash-list i {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: #27314a;
}
.dash-list span,
.dash-list b {
  height: 6px;
  border-radius: 9px;
  background: #2c3446;
}
.dash-list b {
  background: #415379;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(110, 150, 255, 0.15);
  border-radius: 50%;
}
.orbit-one {
  width: 500px;
  height: 500px;
}
.orbit-two {
  width: 370px;
  height: 370px;
  border-color: rgba(139, 92, 246, 0.17);
}
.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(17, 23, 39, 0.88);
  box-shadow: var(--shadow);
  color: #cfd5e5;
  font-size: 0.72rem;
  backdrop-filter: blur(12px);
}
.chip-one {
  top: 55px;
  right: -10px;
}
.chip-two {
  bottom: 65px;
  left: -18px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}
.trust-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #7f899f;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-inner p {
  color: #d4d8e5;
  letter-spacing: 0;
  text-transform: none;
}
.trust-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  letter-spacing: -0.045em;
}
.section-heading > p {
  max-width: 490px;
  margin: 0 0 5px;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 335px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.018)
  );
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 150, 255, 0.35);
  background: rgba(75, 123, 255, 0.06);
}
.service-card.featured {
  background: linear-gradient(
    145deg,
    rgba(75, 123, 255, 0.15),
    rgba(139, 92, 246, 0.06)
  );
  border-color: rgba(110, 150, 255, 0.3);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 55px;
  border-radius: 13px;
  background: #1d2841;
  color: #86a4ff;
  font-size: 1.4rem;
}
.service-card .number {
  position: absolute;
  top: 36px;
  right: 36px;
  color: #626c83;
  font-size: 0.75rem;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.service-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.service-card li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #99a4bb;
  font-size: 0.7rem;
}

.work-section {
  background: rgba(255, 255, 255, 0.015);
  border-block: 1px solid var(--line);
}
.project {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 480px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}
.project-reverse {
  grid-template-columns: 0.88fr 1.12fr;
}
.project-reverse .project-visual {
  order: 2;
}
.project-visual {
  display: grid;
  place-items: center;
  padding: 55px;
  overflow: hidden;
}
.roots-visual {
  background: linear-gradient(145deg, #5d7752, #283c31);
}
.browser-mockup {
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #eee8dc;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}
.browser-bar {
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e6e2da;
  color: #8c887f;
  font-size: 0.52rem;
}
.browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aaa49b;
}
.browser-bar span {
  margin-left: 20px;
}
.shop-preview {
  min-height: 275px;
  padding: 45px 40px;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(129, 155, 108, 0.55),
      transparent 30%
    ),
    #eee6d8;
  color: #243525;
}
.shop-preview small {
  font-weight: 800;
  letter-spacing: 0.16em;
}
.shop-preview h4 {
  margin: 45px 0 18px;
  font:
    700 2.1rem/1.05 Georgia,
    serif;
}
.shop-preview button {
  padding: 10px 14px;
  border: 0;
  border-radius: 5px;
  background: #2d4a35;
  color: white;
  font-size: 0.65rem;
}
.project-copy {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 55px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag-row span {
  padding: 5px 9px;
  border: 1px solid rgba(110, 150, 255, 0.25);
  border-radius: 7px;
  color: #8fa9f4;
  background: rgba(75, 123, 255, 0.06);
  font-size: 0.67rem;
}
.project-copy h3 {
  margin: 25px 0 15px;
  font-size: 2.25rem;
}
.project-copy p {
  margin: 0 0 28px;
  color: var(--muted);
}
.project-copy a {
  font-weight: 700;
}
.project-copy a span {
  color: var(--blue-bright);
  margin-left: 8px;
}
.bids-visual {
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(75, 123, 255, 0.32),
      transparent 47%
    ),
    #0b1020;
}
.bid-card {
  width: 100%;
  max-width: 440px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(17, 23, 39, 0.9);
  box-shadow: var(--shadow);
}
.bid-card small {
  color: #8d98b1;
}
.bid-card strong {
  display: block;
  margin: 10px 0 24px;
  font: 700 clamp(1.8rem, 3vw, 2.8rem) "Manrope";
}
.bid-card div {
  height: 13px;
  overflow: hidden;
  border-radius: 20px;
  background: #26304a;
}
.bid-card div span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}
.bid-card p {
  margin: 16px 0 0;
  color: #7f899f;
  font-size: 0.73rem;
}

.about-section {
  background: linear-gradient(145deg, #10172a, #0b0f1a);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-copy h2 {
  margin-bottom: 25px;
}
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 20px;
  font-weight: 700;
}
.text-link span {
  color: var(--blue-bright);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.value-grid div {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
}
.value-grid strong {
  color: var(--blue-bright);
  font-size: 0.72rem;
}
.value-grid h3 {
  margin: 35px 0 10px;
  font-size: 1.1rem;
}
.value-grid p {
  margin: 0;
  color: #8e98ad;
  font-size: 0.84rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-step {
  position: relative;
  padding: 35px 28px 0 0;
}
.process-step:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: 28px;
}
.process-step > span {
  color: var(--blue-bright);
  font-size: 0.72rem;
}
.process-step h3 {
  margin: 48px 0 10px;
  font-size: 1.2rem;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.contact-section {
  padding-top: 50px;
}
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 70px;
  border: 1px solid rgba(110, 150, 255, 0.26);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(75, 123, 255, 0.23),
      transparent 40%
    ),
    linear-gradient(145deg, #11182b, #0d1120);
  box-shadow: var(--shadow);
}
.eyebrow.light {
  color: #b9c8f3;
}
.contact-copy h2 {
  margin-bottom: 22px;
}
.contact-copy > p:not(.eyebrow) {
  color: #aab3c8;
}
.contact-copy > a {
  display: inline-block;
  margin-top: 22px;
  color: #9fb5f5;
  font-weight: 700;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #aeb6ca;
  font-size: 0.78rem;
  font-weight: 600;
}
.contact-form label:nth-child(3),
.contact-form label:nth-child(4),
.contact-form button,
.form-message {
  grid-column: 1/-1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  color: white;
  padding: 13px 14px;
  resize: vertical;
}
.contact-form select option {
  background: #111827;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75, 123, 255, 0.12);
}
.contact-form button {
  margin-top: 4px;
}
.form-message {
  min-height: 20px;
  margin: 0;
  color: #9fc4a7;
  font-size: 0.82rem;
}
.site-footer {
  padding: 65px 0 25px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}
.footer-top > p {
  margin: 0;
  color: #8993a9;
}
.footer-top > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: #aab2c4;
  font-size: 0.85rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #667086;
  font-size: 0.72rem;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .section {
    padding: 90px 0;
  }
  .hero {
    padding-top: 145px;
  }
  .hero-grid,
  .section-heading,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero-visual {
    min-height: 470px;
  }
  .section-heading {
    gap: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .project,
  .project-reverse {
    grid-template-columns: 1fr;
  }
  .project-reverse .project-visual {
    order: 0;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    border-top: 0;
  }
  .process-step,
  .process-step:not(:last-child) {
    padding-top: 25px;
    border-top: 1px solid var(--line);
    border-right: 0;
    margin-right: 0;
  }
  .contact-card {
    gap: 45px;
    padding: 45px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > p {
    display: none;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .site-header {
    background: rgba(8, 11, 20, 0.9);
    backdrop-filter: blur(16px);
  }
  .nav-wrap {
    height: 70px;
  }
  .menu-button {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #111624;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 11px;
  }
  .nav-cta {
    text-align: center;
    margin-top: 5px;
  }
  .menu-button.open span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-button.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-button.open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero {
    min-height: auto;
    padding-top: 128px;
  }
  .hero-grid {
    display: block;
  }
  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }
  .hero-proof {
    gap: 18px;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 390px;
    margin-top: 35px;
  }
  .dashboard-card {
    transform: none;
  }
  .floating-chip {
    display: none;
  }
  .orbit-one {
    width: 350px;
    height: 350px;
  }
  .orbit-two {
    width: 260px;
    height: 260px;
  }
  .trust-inner {
    padding: 22px 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  .trust-inner p {
    width: 100%;
    text-align: center;
  }
  .trust-inner i {
    display: none;
  }
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }
  .service-card {
    padding: 26px;
  }
  .project-visual {
    padding: 25px;
    min-height: 330px;
  }
  .project-copy {
    padding: 32px 25px;
  }
  .shop-preview {
    padding: 32px 22px;
  }
  .shop-preview h4 {
    font-size: 1.55rem;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 32px 22px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label {
    grid-column: 1/-1;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-top > div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
  .section {
    padding: 75px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dashboard-card {
    transform: none;
  }
}
/* Ways to Work Together */
.offers-section {
  padding-top: 70px;
}

.offers-intro {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.offers-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  letter-spacing: -0.045em;
}

.offers-intro > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
}

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

.offer-card {
  position: relative;
  min-height: 430px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.offer-card-accent {
  border-color: rgba(110, 150, 255, 0.3);
  background: linear-gradient(
    150deg,
    rgba(75, 123, 255, 0.13),
    rgba(139, 92, 246, 0.045)
  );
}

.offer-number {
  position: absolute;
  top: 36px;
  right: 32px;
  color: #626c83;
  font-size: 0.72rem;
}

.offer-label {
  margin: 0 0 48px;
  color: #91aaf0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.offer-card > p:not(.offer-label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.offer-card ul {
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.offer-card li {
  position: relative;
  margin-top: 11px;
  padding-left: 18px;
  color: #c0c7d8;
  font-size: 0.82rem;
}

.offer-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
}

.offers-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
}

.offers-note p {
  max-width: 700px;
  margin: 0;
  color: #aab3c8;
  font-size: 0.9rem;
}

.offers-note a {
  flex: none;
  color: #dce5ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.offers-note a span {
  margin-left: 8px;
  color: var(--blue-bright);
}

/* Offers section on tablets and phones */
@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .offers-intro {
    text-align: left;
  }

  .offers-intro > p:last-child {
    margin-left: 0;
  }

  .offer-card {
    padding: 30px 26px;
  }

  .offers-note {
    align-items: flex-start;
    flex-direction: column;
  }
}
.offer-price {
  margin: -6px 0 18px !important;
  color: #91aaf0 !important;
  font-size: 0.88rem !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}