:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --accent: #6d28d9;
  --accent-2: #06b6d4;
  --border: #e2e8f0;
  --glow: rgba(109, 40, 217, 0.15);
  --green: #16a34a;
  --coral: #f97316;
  --gold: #ca8a04;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(109, 40, 217, 0.06), transparent 26%),
    linear-gradient(260deg, rgba(6, 182, 212, 0.08), transparent 28%),
    var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

.section {
  padding: 112px 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
}

.mouse-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.12), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: all 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  box-shadow: 0 12px 26px rgba(109, 40, 217, 0.25);
}

.mark-l,
.mark-p {
  position: absolute;
  background: #fff;
}

.mark-l {
  width: 7px;
  height: 22px;
  left: 11px;
  bottom: 9px;
  border-radius: 3px;
}

.mark-l::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 7px;
  left: 0;
  bottom: 0;
  border-radius: 3px;
  background: #fff;
}

.mark-p {
  width: 15px;
  height: 15px;
  right: 9px;
  top: 9px;
  border: 5px solid #fff;
  border-left-width: 6px;
  border-radius: 4px 7px 7px 4px;
  background: transparent;
}

.brand-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.brand-text span {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  position: relative;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 19px;
  font-weight: 800;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  box-shadow: 0 16px 34px rgba(109, 40, 217, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--border);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.ripple-dot {
  position: absolute;
  border-radius: 999px;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.58);
  animation: ripple 620ms linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.hero {
  min-height: 100vh;
  padding-top: 148px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
}

.hero::before {
  width: 54vw;
  height: 38vw;
  right: -16vw;
  top: 8vh;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), rgba(6, 182, 212, 0.05));
  transform: rotate(-12deg);
  border-radius: 38% 18% 44% 22%;
}

.hero::after {
  width: 42vw;
  height: 22vw;
  left: -18vw;
  bottom: 4vh;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.07), rgba(249, 115, 22, 0.04));
  transform: rotate(10deg);
  border-radius: 22% 44% 18% 38%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.84fr);
  gap: 62px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  background: rgba(109, 40, 217, 0.07);
  border: 1px solid rgba(109, 40, 217, 0.13);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(6, 182, 212, 0);
  }
}

h1,
h2,
h3 {
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0;
  color: var(--text);
}

h1 {
  margin: 24px 0 20px;
  font-size: clamp(2.6rem, 7vw, 5.95rem);
  line-height: 0.98;
  max-width: 940px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 670px;
}

.hero-stats article,
.mission-stats div {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.hero-stats strong,
.mission-stats strong {
  display: block;
  font-size: 1.52rem;
  font-weight: 900;
}

.hero-stats small,
.mission-stats small {
  color: var(--muted);
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.dashboard-card {
  width: min(100%, 510px);
  margin-left: auto;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.84)),
    #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.floating-card {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(-14px);
  }
}

.dashboard-top,
.metric-strip,
.campaign-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.label,
.case-card span {
  color: var(--accent);
  font-weight: 850;
  font-size: 0.79rem;
  text-transform: uppercase;
}

.dashboard-top h2 {
  margin: 7px 0 0;
  font-size: 1.65rem;
}

.status-pill {
  color: var(--green);
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 850;
  font-size: 0.8rem;
}

.metric-strip {
  margin: 24px 0;
  align-items: stretch;
}

.metric-strip div {
  flex: 1;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.metric-strip small {
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.metric-strip strong {
  font-size: 1.28rem;
}

.chart {
  height: 190px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(226, 232, 240, 0.55) 1px, transparent 1px) 0 0 / 100% 25%,
    #fff;
}

.chart span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #06b6d4, #6d28d9);
  animation: barRise 1.6s ease both;
}

@keyframes barRise {
  from {
    height: 0;
  }
}

.campaign-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.campaign-list div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.campaign-list strong {
  color: var(--text);
}

.campaign-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 8px;
}

.campaign-dot.purple {
  background: var(--accent);
}

.campaign-dot.cyan {
  background: var(--accent-2);
}

.campaign-dot.green {
  background: var(--green);
}

.float-note {
  position: absolute;
  width: 218px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--text);
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.note-one {
  left: 0;
  top: 70px;
}

.note-two {
  right: 0;
  bottom: 20px;
}

.logo-marquee {
  padding: 28px 0 38px;
  border-block: 1px solid var(--border);
  background: rgba(248, 250, 252, 0.72);
  overflow: hidden;
}

.logo-marquee p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 750;
  text-align: center;
}

.marquee-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

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

.marquee-content span {
  min-width: 160px;
  padding: 18px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: #64748b;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-align: center;
}

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

.section-heading {
  max-width: 780px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.faq-grid h2,
.cta-panel h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
}

.section-heading p,
.about-copy p,
.faq-grid p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.services,
.cases,
.faq {
  background: var(--bg-soft);
}

.service-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.case-card,
.timeline-step,
.testimonial-card,
.about-panel {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.service-card {
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card:hover,
.case-card:hover,
.timeline-step:hover {
  transform: translateY(-7px);
  border-color: rgba(109, 40, 217, 0.32);
  box-shadow: 0 22px 60px rgba(109, 40, 217, 0.13);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(109, 40, 217, 0.2);
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 1.14rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 850;
  padding-top: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.76fr;
  gap: 48px;
  align-items: center;
}

.about-copy p + p {
  margin-top: 16px;
}

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

.value-list span {
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 800;
}

.about-panel {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(109, 40, 217, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(6, 182, 212, 0.11), transparent 42%),
    #fff;
}

.about-panel h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.about-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.mission-stats {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.case-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  padding: 16px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.case-media {
  height: 178px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

.case-media::before,
.case-media::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.case-media::before {
  width: 76%;
  height: 28px;
  left: 18px;
  top: 24px;
}

.case-media::after {
  width: 54%;
  height: 78px;
  right: 18px;
  bottom: 22px;
}

.purple-shift {
  background: linear-gradient(135deg, #ede9fe, #cffafe);
}

.cyan-shift {
  background: linear-gradient(135deg, #cffafe, #dcfce7);
}

.green-shift {
  background: linear-gradient(135deg, #dcfce7, #fef3c7);
}

.coral-shift {
  background: linear-gradient(135deg, #ffedd5, #ede9fe);
}

.case-card h3 {
  margin: 10px 0 10px;
  font-size: 1.24rem;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.timeline {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.timeline-step {
  padding: 24px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.timeline-step span {
  color: var(--accent-2);
  font-weight: 900;
  font-family: "Poppins", sans-serif;
}

.timeline-step h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 54px;
}

.testimonial-slider {
  position: relative;
  min-height: 330px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 34px;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.client-avatar {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  font-weight: 900;
}

.stars {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
}

.testimonial-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.testimonial-card h3 {
  margin: 8px 0 4px;
}

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

.slider-btn {
  width: 62px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

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

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

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button span {
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 240ms ease, padding 240ms ease;
}

.faq-item.open p {
  max-height: 240px;
  padding: 0 20px 20px;
}

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

.final-cta {
  background:
    linear-gradient(135deg, rgba(109, 40, 217, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(6, 182, 212, 0.11), transparent 36%),
    #fff;
}

.cta-panel {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: clamp(34px, 7vw, 78px);
}

.cta-panel p {
  max-width: 720px;
  margin-inline: auto;
}

.cta-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 68px 0 28px;
}

.site-footer .brand-text,
.site-footer h3 {
  color: #fff;
}

.site-footer .brand-text span {
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.72fr 1fr;
  gap: 36px;
}

.footer-grid p {
  max-width: 390px;
  line-height: 1.75;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 10px 0;
  color: #cbd5e1;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.newsletter label {
  display: block;
  color: #fff;
  font-weight: 750;
  margin-bottom: 10px;
}

.newsletter div {
  display: flex;
  gap: 8px;
}

.newsletter input {
  min-width: 0;
  width: 100%;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 12px;
}

.newsletter button {
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  font-weight: 850;
  padding: 0 16px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #94a3b8;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1060px) {
  .hero-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-card {
    margin-inline: auto;
  }

  .note-one,
  .note-two {
    display: none;
  }

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

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

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 78px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-link {
    padding: 14px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 118px;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 4.8rem);
  }

  .hero-stats,
  .value-list,
  .service-grid,
  .case-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    flex-direction: column;
  }

  .testimonial-shell {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-slider {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .slider-btn {
    width: 100%;
  }

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

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .dashboard-card {
    padding: 16px;
  }

  .chart {
    height: 150px;
    gap: 8px;
  }

  .testimonial-card {
    padding: 24px 18px;
  }

  .testimonial-slider {
    min-height: 430px;
  }

  .newsletter div {
    flex-direction: column;
  }
}

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