:root {
  --navy: #0b1120;
  --navy-2: #111827;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.2);
  --panel: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 32rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 40%, #f8fbff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(6, 182, 212, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  padding: 0.7rem 1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.08);
}

.nav {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
  object-fit: contain;
  padding: 0.22rem;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  color: #334155;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  color: var(--navy);
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.btn-secondary:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.btn-small {
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 17, 32, 0.94), rgba(14, 25, 49, 0.88)),
    var(--navy);
}

.hero-bg,
.hero-bg::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.grid-glow {
  position: absolute;
  width: 48rem;
  height: 48rem;
  left: 50%;
  top: 10%;
  transform: translateX(-12%);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.38), transparent 62%);
  filter: blur(4px);
}

.shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  animation: float 9s ease-in-out infinite;
}

.shape-one {
  width: 7rem;
  height: 7rem;
  right: 9%;
  top: 16%;
  border-radius: 8px;
}

.shape-two {
  width: 4rem;
  height: 4rem;
  left: 7%;
  bottom: 18%;
  border-radius: 50%;
  animation-delay: -2.5s;
}

.shape-three {
  width: 5rem;
  height: 5rem;
  right: 38%;
  bottom: 13%;
  transform: rotate(18deg);
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -1.2rem;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 8vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 42rem;
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 42rem;
}

.hero-highlights span {
  position: relative;
  min-height: 2.85rem;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0.85rem 0.7rem 2.1rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-highlights span::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.9);
}

.hero-visual {
  min-width: 0;
}

.dashboard-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.26), transparent 38%);
}

.dashboard-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
}

.dashboard-top span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.dashboard-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.metric-panel,
.chart-panel,
.task-panel,
.status-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(11, 17, 32, 0.66);
  min-height: 10rem;
  padding: 1rem;
}

.metric-panel strong {
  display: block;
  font-size: 4rem;
  line-height: 1;
}

.metric-panel p,
.status-panel p,
.metric-panel span {
  color: rgba(226, 232, 240, 0.72);
}

.chart-panel {
  display: flex;
  align-items: end;
  gap: 0.55rem;
}

.chart-panel span {
  flex: 1;
  min-height: 2rem;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  animation: pulseBar 2.6s ease-in-out infinite;
}

.chart-panel span:nth-child(even) {
  animation-delay: -1.1s;
}

@keyframes pulseBar {
  50% {
    opacity: 0.62;
    transform: scaleY(0.88);
    transform-origin: bottom;
  }
}

.task-panel {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.task-panel span {
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18));
}

.task-panel span:nth-child(2) {
  width: 72%;
}

.task-panel span:nth-child(3) {
  width: 54%;
}

.status-panel {
  display: grid;
  align-content: center;
}

.status-panel strong {
  color: #67e8f9;
  font-size: 2rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.service-card {
  min-height: 17rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.86)),
    var(--white);
  padding: 1.4rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.pricing-card:hover,
.support-card:hover,
.testimonial-card:hover,
.why-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 2.8rem;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
}

.service-card p,
.pricing-card p,
.support-card p,
.testimonial-card p,
.about-copy p,
.contact-panel p {
  color: var(--muted);
}

.pricing-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.12), transparent 25rem),
    #f8fafc;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 1.5rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card-featured {
  border-color: rgba(37, 99, 235, 0.36);
  background:
    radial-gradient(circle at 85% 0%, rgba(6, 182, 212, 0.18), transparent 16rem),
    var(--white);
}

.pricing-label {
  margin-bottom: 0.7rem;
  color: var(--blue) !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.pricing-card h3 span {
  color: var(--muted);
  font-size: 1rem;
}

.pricing-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 1.65rem;
  color: #334155;
  font-weight: 700;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  border-left: 3px solid var(--cyan);
  padding-left: 0.9rem;
  font-size: 0.9rem;
}

.pricing-disclaimer {
  margin: 1.4rem 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.split-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.12), transparent 26rem),
    #f8fafc;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 4rem;
}

.portrait-frame {
  position: relative;
  min-height: 34rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.82), rgba(6, 182, 212, 0.58)),
    var(--blue);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.window-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  opacity: 0.42;
}

.workspace-screen,
.workspace-card {
  position: absolute;
  border-radius: var(--radius);
  background: rgba(11, 17, 32, 0.82);
  box-shadow: 0 28px 60px rgba(11, 17, 32, 0.26);
}

.workspace-screen {
  left: 13%;
  right: 13%;
  top: 24%;
  height: 11rem;
}

.workspace-screen::before,
.workspace-screen::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.workspace-screen::before {
  top: 2rem;
}

.workspace-screen::after {
  top: 4rem;
  right: 36%;
  background: rgba(6, 182, 212, 0.75);
}

.workspace-card {
  right: 9%;
  bottom: 12%;
  width: 12rem;
  height: 8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.stats-grid div {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
}

.stats-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.55rem;
  line-height: 1.1;
}

.stats-grid span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.process-section {
  background: var(--white);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.timeline-step {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 1.25rem;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.timeline-step span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 3rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px rgba(37, 99, 235, 0.22);
  font-weight: 800;
}

.timeline-step p {
  color: var(--muted);
}

.why-section {
  background:
    linear-gradient(180deg, rgba(11, 17, 32, 0.96), rgba(11, 17, 32, 0.9)),
    var(--navy);
}

.why-section h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.why-item {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.1rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.support-section {
  background:
    radial-gradient(circle at 6% 20%, rgba(6, 182, 212, 0.11), transparent 24rem),
    #f8fafc;
}

.support-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.support-card,
.testimonial-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 1.35rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.support-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 3rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  flex: 1;
}

.testimonial-card h3 {
  margin-bottom: 0.15rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.profile-placeholder {
  width: 3rem;
  height: 3rem;
  display: block;
  flex: 0 0 auto;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(148, 163, 184, 0.7) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 100%, rgba(148, 163, 184, 0.52) 0 34%, transparent 35%),
    linear-gradient(180deg, #eef2f7, #d9e1ec);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.rating {
  margin-bottom: 1rem;
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(11, 17, 32, 0.96), rgba(11, 17, 32, 0.9)),
    var(--navy);
}

.faq-section h2 {
  color: var(--white);
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-weight: 800;
}

.faq-question span:last-child {
  width: 2rem;
  height: 2rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan);
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(226, 232, 240, 0.82);
  padding: 0 1.25rem;
}

.faq-item.open .faq-answer p {
  padding-bottom: 1.2rem;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.faq-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 15%, rgba(6, 182, 212, 0.18), transparent 20rem),
    var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 12ch;
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
  justify-self: end;
  margin-right: clamp(0.5rem, 2vw, 1.35rem);
  min-width: min(100%, 18rem);
}

.contact-details {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-call-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: none;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(11, 17, 32, 0.8);
  color: var(--white);
  padding: 0.86rem 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(11, 17, 32, 0.28);
  backdrop-filter: blur(16px);
  animation: callPulse 2.4s ease-in-out infinite;
}

.mobile-call-button svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--cyan);
}

@keyframes callPulse {
  0%,
  100% {
    box-shadow: 0 18px 45px rgba(11, 17, 32, 0.28), 0 0 0 0 rgba(6, 182, 212, 0.32);
  }

  50% {
    box-shadow: 0 18px 45px rgba(11, 17, 32, 0.28), 0 0 0 10px rgba(6, 182, 212, 0);
  }
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  padding: 3.4rem 0 1.5rem;
}

.footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
}

.footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer a:not(.brand) {
  display: block;
  margin: 0.42rem 0;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 32, 0.72);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(90vh, 880px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-full {
  grid-column: 1 / -1;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.enquiry-form .invalid input,
.enquiry-form .invalid select,
.enquiry-form .invalid textarea {
  border-color: #ef4444;
}

.error-message {
  min-height: 1rem;
  color: #dc2626;
  font-size: 0.78rem;
  font-weight: 600;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-status {
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 700;
  max-width: min(100% - 2rem, 24rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(11, 17, 32, 0.9);
  color: var(--white);
  padding: 0.95rem 1rem;
  box-shadow: 0 22px 55px rgba(11, 17, 32, 0.28);
  backdrop-filter: blur(16px);
  font-weight: 800;
  transform: translateY(0.75rem);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.toast.error {
  background: rgba(127, 29, 29, 0.94);
}

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

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

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: grid;
    gap: 0;
    justify-self: stretch;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    padding: 0.5rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

  .nav-menu a {
    border-radius: var(--radius);
    padding: 0.9rem;
  }

  .nav-menu a:hover {
    background: #f1f5f9;
  }

  .hero-grid,
  .split-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-self: stretch;
    margin-right: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 620px;
  }

  .services-grid,
  .pricing-grid,
  .support-grid,
  .testimonial-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline::before {
    display: none;
  }

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

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

@media (max-width: 700px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .brand span:last-child {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .form-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-highlights,
  .services-grid,
  .pricing-grid,
  .support-grid,
  .testimonial-grid,
  .timeline,
  .why-grid,
  .stats-grid,
  .footer-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

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

  .metric-panel,
  .chart-panel,
  .task-panel,
  .status-panel {
    min-height: 8.5rem;
  }

  .portrait-frame {
    min-height: 25rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .modal {
    align-items: end;
    padding: 0.7rem;
  }

  .modal-panel {
    max-height: 92vh;
  }

  .faq-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-question {
    min-height: 4.75rem;
    padding: 1rem;
  }
}

@media (max-width: 767px) {
  .mobile-call-button {
    display: inline-flex;
  }

  .toast {
    bottom: 5.6rem;
  }

  .contact-section {
    padding-bottom: 6.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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