@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* ================================
   Base / Design Tokens
================================ */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --line: #cbd5e1;
  --primary: #2563eb;
  --brand: #0b1f4d;
  --primary-light: rgba(37, 99, 235, 0.08);
  --accent: #14b8a6;
  --warning: #f59e0b;
  --ink: #0f172a;
  --navy: #0b1f4d;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1180px;
  --header-height: 78px;
  --hero-bg: linear-gradient(135deg, #0b1f4d 0%, #162e64 100%);
  --premium-border: rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.03) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(20, 184, 166, 0.02) 0px, transparent 50%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga" 1, "kern" 1;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 112px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(237, 243, 248, 0.86), rgba(246, 249, 252, 0.98));
}

#services {
  padding-bottom: 70px;
}

#case-studies {
  padding-top: 70px;
}

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

.section-heading > p:not(.eyebrow) {
  font-size: 1.03rem;
  line-height: 1.72;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.services-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.14;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

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

h1 {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: clamp(3.25rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 1.12rem;
  line-height: 1.3;
  font-weight: 800;
}

p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.6;
}

/* ================================
   Buttons
================================ */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary {
  color: #ffffff;
  background-color: var(--primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  color: var(--text);
  background-color: #ffffff;
  border-color: var(--line);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
  background-color: var(--bg);
  border-color: #94a3b8;
}

.btn-text {
  justify-content: flex-start;
  width: fit-content;
  min-height: auto;
  margin-top: auto;
  padding: 24px 0 0;
  color: var(--primary);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 700;
}

.btn-text::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.btn-text:hover {
  transform: none;
  color: var(--primary-dark);
}

.btn-text:hover::after {
  transform: translateX(4px) rotate(-45deg);
}

/* ================================
   Header / Navigation
================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  font-size: 1.05rem;
}

.brand-logo {
  display: block;
  width: 160px;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: var(--brand);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(11, 31, 77, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  color: #475569;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  height: 14px;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-toggle::after,
.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown:focus-within .dropdown-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 60;
  display: grid;
  width: 320px;
  gap: 4px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--muted);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--primary);
  background: rgba(21, 94, 239, 0.08);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

/* ================================
   Hero
================================ */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 86px;
  background: var(--hero-bg);
}

.hero::before,
.service-detail-hero::before,
.about-page-hero::before,
.case-study-hero::before,
.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 76%);
}

.hero > .container,
.service-detail-hero > .container,
.about-page-hero > .container,
.case-study-hero > .container,
.contact-page-hero > .container {
  position: relative;
  z-index: 1;
}

.hero .eyebrow,
.hero h1,
.hero-subtitle {
  color: #ffffff;
}

.hero h1 {
  white-space: nowrap;
}

.hero .eyebrow::before {
  background: #5ee1c4;
}

.hero-description {
  color: rgba(255, 255, 255, 0.78);
}

.about-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
}

.about-page-hero .eyebrow,
.about-page-hero h2 {
  color: #ffffff;
}

.about-page-hero .eyebrow::before {
  background: #5ee1c4;
}

.about-page-hero .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.about-page-hero .about-copy h2 {
  color: var(--text);
}

.about-page-hero .about-copy p {
  color: var(--muted);
}

.about-hero-stack {
  display: grid;
  gap: 34px;
}

.about-page-hero .section-heading {
  max-width: 100%;
  margin-bottom: 0;
}

.about-main-heading {
  max-width: 1120px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.08;
}

.expertise-heading {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.12;
}

.expertise-heading span {
  display: block;
  white-space: nowrap;
}

.about-page-hero .section-heading > p:not(.eyebrow) {
  max-width: 760px;
}

.about-page-hero .about-copy {
  max-width: 980px;
}

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

.about-stats div {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.about-stats strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.about-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
  line-height: 1.45;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.88fr);
  align-items: center;
  gap: 64px;
}

.hero-subtitle {
  margin-bottom: 18px;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 1.13rem;
  line-height: 1.76;
}

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

.hero-panel {
  padding: 28px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.1);
}

.achievement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.achievement-card {
  position: relative;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.achievement-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.achievement-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.achievement-card:hover::after {
  opacity: 1;
}

.achievement-card strong {
  color: var(--primary);
  font-size: clamp(2.35rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.achievement-card span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.metric-card,
.chart-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 6px 0;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.metric-card small {
  color: var(--muted);
}

.primary-metric {
  margin-bottom: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.chart-card {
  padding: 18px 18px 14px;
}

.chart-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.chart-topline span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.chart-topline strong {
  color: var(--accent);
  font-size: 0.92rem;
}

.chart-plot {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  height: 132px;
  padding: 6px 4px 0;
  overflow: hidden;
}

.grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(223, 231, 241, 0.9);
}

.line-high { top: 18%; }
.line-mid { top: 50%; }
.line-low { top: 82%; }

.trend-line {
  position: absolute;
  inset: 8px 4px 18px;
  z-index: 2;
  width: calc(100% - 8px);
  height: calc(100% - 26px);
  pointer-events: none;
}

.trend-line path {
  fill: none;
  stroke: #0d1728;
  stroke-linecap: round;
  stroke-width: 3;
  filter: drop-shadow(0 6px 10px rgba(13, 23, 40, 0.18));
}

.chart-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  min-width: 22px;
  height: 100%;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(21, 94, 239, 0.12), rgba(8, 168, 138, 0.12));
}

.chart-bar span {
  display: block;
  width: 100%;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #155eef 0%, #08a88a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.bar-1 span { height: 38%; }
.bar-2 span { height: 54%; }
.bar-3 span { height: 49%; }
.bar-4 span { height: 66%; }
.bar-5 span { height: 78%; }
.bar-6 span { height: 88%; }

.chart-labels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 4px 0;
}

.chart-labels span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

/* ================================
   Services
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.case-card,
.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  margin: 20px 0 12px;
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-card .service-info-card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-info-card-icon {
  background-color: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.service-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--primary);
  font-weight: 900;
}

.service-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.service-detail-hero {
  position: relative;
  overflow: visible;
  background: var(--hero-bg);
}

.service-detail-hero .container {
  width: min(100% - 40px, 1500px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 74px;
  align-items: start;
}

.service-detail-content {
  max-width: none;
}

.service-detail-content .eyebrow,
.service-detail-content h1 {
  color: #ffffff;
}

.service-detail-content .eyebrow::before {
  background: #5ee1c4;
}

.service-detail-content h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 3vw, 3.25rem);
  line-height: 1.04;
  white-space: nowrap;
}

.service-detail-content .hero-description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.72;
}

.service-placeholder {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-placeholder h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.service-placeholder p:last-child {
  margin-bottom: 0;
}

.service-content {
  display: grid;
  gap: 24px;
}

.service-intro,
.service-section,
.service-cta {
  padding: 32px;
  background:
    linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(215, 225, 237, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-intro p:last-child,
.service-section p:last-child,
.service-cta p:last-child {
  margin-bottom: 0;
}

.service-highlight {
  color: var(--primary);
  font-weight: 900;
}

.service-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-info-card {
  position: relative;
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(215, 225, 237, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--primary);
  transition: height 0.3s ease;
}

.service-info-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-info-card:hover::after {
  height: 100%;
}

.service-info-card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(18, 87, 214, 0.12), rgba(15, 184, 146, 0.1));
  color: var(--primary);
  border-radius: 10px;
}

.service-info-card h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 800;
}

.service-info-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-list,
.process-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.service-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
}

.service-list {
  padding-left: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 30px;
}

.service-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.02em;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.process-list li::marker {
  content: "";
}

.process-list li {
  position: relative;
  padding-left: 30px;
}

.process-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.12em;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.service-cta {
  background:
    linear-gradient(135deg, rgba(7, 20, 36, 0.98) 0%, rgba(20, 87, 217, 0.92) 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.service-cta h2,
.service-cta p {
  color: #ffffff;
}

.service-cta .btn {
  margin-top: 8px;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow-y: auto;
  padding: 26px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-sidebar h3 {
  margin-bottom: 24px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

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

.service-sidebar a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(246, 248, 252, 0.85);
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.service-sidebar a:hover {
  background: var(--surface);
  border-color: var(--line);
  color: var(--primary);
}

.service-sidebar a.active {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* ================================
   About
================================ */
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
  align-items: start;
}

.about-copy {
  padding: 38px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

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

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

.team-card {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  place-items: center;
  color: #ffffff;
  background-color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
  font-weight: 700;
}

.team-photo {
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  border: 2px solid #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.team-card p {
  margin-bottom: 0;
  font-weight: 760;
}

/* ================================
   Case Studies
================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.case-card {
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.case-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 900;
}

.case-card a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin: 8px 0 0 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.case-study-hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
}

.case-study-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: center;
}

.case-study-hero .eyebrow,
.case-study-hero h1 {
  color: #ffffff;
}

.case-study-hero .eyebrow::before {
  background: #5ee1c4;
}

.case-study-hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.case-study-results {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.case-study-result {
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-md);
}

.case-study-result strong {
  display: block;
  color: var(--primary);
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 1;
}

.case-study-result span {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.45;
}

.case-study-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.case-study-content {
  display: grid;
  gap: 24px;
}

.case-study-block,
.case-study-sidebar,
.case-study-phase {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(215, 225, 237, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.case-study-block {
  padding: 34px;
}

.case-study-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.case-study-block h3 {
  margin-top: 26px;
}

.case-study-block h3:first-child {
  margin-top: 0;
}

.case-study-phase {
  padding: 24px;
  margin-top: 18px;
}

.case-study-phase h3 {
  margin-top: 0;
}

.case-study-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.case-study-before-after div {
  padding: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.case-study-before-after span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study-before-after strong {
  display: block;
  line-height: 1.45;
}

.case-study-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 22px;
  padding: 28px;
}

.case-study-sidebar h3 {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-study-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-study-sidebar li {
  color: var(--text);
  font-weight: 750;
}

/* ================================
   Testimonials
================================ */
#testimonials {
  padding-top: 56px;
  background-color: var(--surface-soft);
}

#testimonials .section-heading {
  max-width: 900px;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 14px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.testimonial-featured {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 60px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  color: #fbbf24;
}

.testimonial-text p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 500;
  font-style: italic;
}

.testimonial-text p:last-child {
  margin-bottom: 0;
}

.testimonials-stack-container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.testimonial-stack {
  position: relative;
  min-height: 620px;
  perspective: 2500px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1), 
              opacity 0.7s ease,
              visibility 0.9s;
  transform-origin: left center;
  z-index: 1;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  transform: rotateY(0) translateX(0);
  pointer-events: all;
}

/* Page Turn Animation Classes */
.testimonial-slide.flip-out-left {
  transform: rotateY(-110deg) translateX(-100px);
  opacity: 0;
  z-index: 20;
}

.testimonial-slide.flip-out-right {
  transform: rotateY(110deg) translateX(100px);
  opacity: 0;
  z-index: 20;
}

/* Next slide peek during animation */
.testimonial-slide.next-up {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: rotateY(0) scale(0.98);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  color: var(--brand);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-arrow:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: -26px;
}

.carousel-arrow.next {
  right: -26px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: var(--line);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 28px;
  background-color: var(--primary);
}

.author-photo,
.author-initial {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-initial {
  background-color: #fce7f3; /* Soft Pink */
  color: #db2777; /* Deep Pink */
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-author {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  font-size: 1.15rem;
  color: var(--brand);
  margin-bottom: 4px;
  font-weight: 800;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .testimonial-featured {
    padding: 40px 24px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-info {
    text-align: center;
  }
}

/* ================================
   CTA
================================ */
.cta-section {
  padding: 80px 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 60px;
  color: #ffffff;
  background: var(--brand);
  border: 1px solid var(--premium-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta .eyebrow,
.cta h2,
.cta p {
  color: #ffffff;
}

.cta p {
  margin-bottom: 0;
  opacity: 0.82;
}

.cta .btn-primary {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

/* ================================
   Contact
================================ */
.email-link {
  display: inline-flex;
  color: var(--primary);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 32px;
}

.contact-form label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--text);
  background: #fbfdff;
  border: 1px solid rgba(215, 225, 237, 0.92);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.12);
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--accent);
  font-weight: 800;
}

.contact-page-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: var(--hero-bg);
}

.contact-page-hero::before,
.contact-page-hero::after {
  content: "";
  position: absolute;
  width: 126px;
  height: 126px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transform: rotate(-11deg);
}

.contact-page-hero::before {
  top: 70px;
  right: 24%;
}

.contact-page-hero::after {
  right: 4%;
  bottom: 150px;
  width: 142px;
  height: 142px;
}

.contact-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch;
}

.contact-page-card {
  padding: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.contact-page-card h1,
.contact-page-card h2,
.contact-page-card label,
.contact-page-card p {
  color: #ffffff;
}

.contact-page-card h1,
.contact-page-card h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.contact-page-card input,
.contact-page-card textarea {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.contact-page-card input::placeholder,
.contact-page-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.contact-page-card input:focus,
.contact-page-card textarea:focus {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.contact-page-card .btn-primary {
  width: fit-content;
  min-width: 190px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.contact-page-card .btn-primary:hover {
  background: #ffffff;
  color: var(--primary);
}

.contact-info-list {
  display: grid;
  gap: 26px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: #ffffff;
}

.contact-info-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.contact-info-item strong,
.contact-info-item span span {
  display: block;
}

.contact-info-item strong {
  margin-bottom: 2px;
  font-size: 1rem;
}

.contact-info-item span span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.contact-qr {
  width: 118px;
  height: 118px;
  margin-top: 12px;
  object-fit: cover;
  background: #ffffff;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

/* ================================
   Footer
================================ */
.site-footer {
  padding: 60px 0;
  background: var(--brand);
  border-top: 1px solid var(--premium-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.footer-content p,
.footer-content a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-back-link {
  justify-self: end;
}

.legal-content {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

/* ================================
   Scroll Animation
================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
}

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

main {
  transition: opacity 0.18s ease;
}

body.route-loading main {
  opacity: 0.96;
}

/* ================================
   Responsive
================================ */
@media (max-width: 1040px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-grid,
  .why-hire-grid,
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-grid,
  .about-grid,
  .contact-grid,
  .contact-page-grid,
  .case-study-hero-grid,
  .case-study-layout,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-content h1 {
    white-space: normal;
  }

  .hero-grid {
    gap: 44px;
  }

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

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

  .service-sidebar {
    position: static;
    width: 100%;
  }

  .case-study-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

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

  .section {
    padding: 76px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-link {
    width: 100%;
    justify-content: center;
  }

  .dropdown-toggle {
    justify-content: center;
  }

  .nav-dropdown::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 10px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.24s ease, padding 0.24s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 520px;
    padding: 8px 10px 4px;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

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

  .case-study-before-after {
    grid-template-columns: 1fr;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero h1 {
    white-space: normal;
  }

  .expertise-heading span {
    white-space: normal;
  }

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

  .services-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .service-card-grid,
  .why-hire-grid,
  .about-stats,
  .team-grid,
  .service-list.two-column {
    grid-template-columns: 1fr;
  }

  .service-intro,
  .service-section,
  .service-cta,
  .case-study-block {
    padding: 24px;
  }

  .achievement-list {
    grid-template-columns: 1fr;
  }

  .achievement-card {
    gap: 12px;
    min-height: 142px;
  }

  .achievement-card span {
    max-width: 34ch;
  }

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

  .hero-panel,
  .about-copy,
  .contact-form,
  .contact-page-card,
  .cta {
    border-radius: 18px;
  }

  .contact-page-card {
    padding: 28px;
  }

  .contact-page-card .btn-primary {
    width: 100%;
  }

  .footer-content {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-back-link {
    justify-self: start;
  }
}

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