:root {
  --bg: #f6f8fc;
  --bg-soft: #edf3ff;
  --surface: #ffffff;
  --surface-alt: #f2f6ff;
  --text: #0b2840;
  --text-soft: #5f7185;
  --primary: #1868d8;
  --primary-dark: #0d2341;
  --accent: #2d89ff;
  --accent-soft: #ddebff;
  --border: #e2e9f4;
  --ok: #0f8f52;
  --error: #ab2a2a;
  --shadow: 0 30px 60px -20px rgba(13, 35, 65, 0.28);
  --shadow-soft: 0 18px 40px -18px rgba(24, 104, 216, 0.28);
  --shadow-hover: 0 40px 80px -24px rgba(13, 35, 65, 0.38);
  --ring: 0 0 0 1px rgba(24, 104, 216, 0.08);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  background:
    radial-gradient(circle at top left, rgba(45, 137, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(24, 104, 216, 0.12), transparent 32%),
    radial-gradient(circle at 20% 85%, rgba(45, 137, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 35%, #f3f7fc 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: transparent;
  line-height: 1.6;
}

body::before {
  content: none;
}

#neural-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  #neural-bg {
    display: none;
  }
}

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

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

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  line-height: 1.08;
}

p {
  margin-top: 0;
}

.container {
  width: min(100% - clamp(1.5rem, 5vw, 3.5rem), var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.94rem;
}

.topbar-inner,
.topbar-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-inner {
  justify-content: space-between;
  padding: 0.85rem 0;
}

.topbar-end a {
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header.scrolled {
  border-color: rgba(14, 38, 72, 0.08);
  box-shadow: 0 12px 26px rgba(13, 35, 65, 0.08);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.logo-image {
  display: block;
  width: auto;
  height: 60px;
  max-width: min(340px, 100%);
  object-fit: contain;
  transition: transform 0.25s ease;
}

.logo:hover .logo-image {
  transform: scale(1.03);
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f1f7ff 0%, #dce9ff 100%);
  color: var(--primary);
  border: 1px solid rgba(24, 104, 216, 0.14);
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.logo-wordmark {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-soft);
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #2b87ff 100%);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(24, 104, 216, 0.28);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--primary-dark);
  box-shadow: var(--shadow-soft);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero {
  padding: clamp(1.3rem, 3.2vw, 2.2rem) 0 clamp(3.3rem, 6.2vw, 5rem);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1.5rem 1rem auto;
  height: calc(100% - 3rem);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.35) 0%, rgba(248, 250, 255, 0.45) 100%);
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow);
  z-index: -1;
}

.hero-grid,
.split-section,
.choose-grid,
.trust-grid,
.contact-grid,
.faq-layout {
  display: grid;
  gap: 2.2rem;
}

.hero-grid > *,
.split-section > *,
.choose-grid > *,
.trust-grid > *,
.contact-grid > *,
.faq-layout > *,
.showcase-grid > * {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  padding: clamp(1.65rem, 3.6vw, 3rem) clamp(1.1rem, 3vw, 2.25rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  font-weight: 800;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.section-kicker.light,
.light {
  color: #ffffff;
}

.section-kicker.light::before {
  background: #ffffff;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  max-width: 10ch;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

h1 strong {
  color: var(--primary);
  display: inline-block;
}

.hero-copy p {
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.hero-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(24, 104, 216, 0.12);
}

.hero-media {
  position: relative;
  padding-bottom: 3rem;
}

.hero-image-stack {
  position: relative;
  min-height: clamp(470px, 52vw, 560px);
}

.hero-image-stack img {
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-slideshow {
  position: relative;
  width: min(100%, 520px);
  height: clamp(470px, 52vw, 560px);
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: none;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero-dots button.is-active {
  width: 22px;
  border-radius: 5px;
  background: #ffffff;
}

.hero-accent {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: clamp(170px, 23vw, 240px);
  height: clamp(220px, 29vw, 300px);
  border: 12px solid #ffffff;
  z-index: 2;
}

.experience-badge {
  position: absolute;
  left: 2rem;
  bottom: 0;
  z-index: 3;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  max-width: min(260px, calc(100% - 2rem));
}

.experience-badge strong {
  display: block;
  color: var(--primary);
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 3rem;
  line-height: 0.95;
}

.experience-badge strong.metric-text,
.counter-card strong.metric-text,
.showcase-stats strong.metric-text {
  color: var(--primary-dark);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.experience-badge strong.metric-text {
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.section {
  padding: clamp(4.1rem, 8vw, 5.5rem) 0;
}

.section-title {
  margin-bottom: 0.85rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.section-subtitle {
  color: var(--text-soft);
  max-width: 64ch;
}

.section-heading {
  margin-bottom: 2rem;
}

.about-layout,
.trust-grid,
.contact-grid,
.faq-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.image-cluster {
  position: relative;
}

.primary-shot {
  width: 100%;
  min-height: clamp(430px, 50vw, 560px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-panel {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  max-width: 300px;
  padding: 1.4rem;
  border-radius: 20px;
  background: rgba(13, 35, 65, 0.92);
  color: #ffffff;
}

.floating-panel h3,
.floating-panel p {
  margin-bottom: 0;
}

.floating-panel p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
}

.content-stack {
  display: grid;
  gap: 1.4rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.feature-icon,
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent-soft) 0%, #ffffff 100%);
  overflow: hidden;
  border: 1px solid rgba(24, 104, 216, 0.12);
}

.feature-icon img,
.service-icon img,
.mini-badge-image img,
.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row h3,
.solution-mini-card h3,
.process-card h3,
.service-card h3,
.showcase-copy h3,
.contact-card strong {
  margin-bottom: 0.35rem;
}

.feature-row p,
.solution-mini-card p,
.process-card p,
.service-card p,
.showcase-copy span,
.contact-card span {
  margin: 0;
  color: var(--text-soft);
}

.signature-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-dark);
  color: #ffffff;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.signature-row span {
  display: block;
  color: var(--text-soft);
}

.section-dark {
  background: linear-gradient(135deg, #08192f 0%, #0d2a50 100%);
}

.choose-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

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

.solution-mini-card {
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.solution-mini-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.solution-mini-card p {
  color: rgba(255, 255, 255, 0.76);
}

.process-grid,
.services-grid,
.showcase-grid {
  display: grid;
  gap: 1rem;
}

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

.process-card,
.service-card,
.contact-card,
.showcase-stats,
.faq-item,
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.process-card {
  padding: 1.4rem;
}

.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.process-top {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eff5ff 0%, #dceaff 100%);
  overflow: hidden;
  border: 1px solid rgba(24, 104, 216, 0.12);
}

.trust-section {
  background: linear-gradient(180deg, rgba(233, 241, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
}

.challenges-section {
  background: linear-gradient(180deg, rgba(13, 35, 65, 0.02) 0%, rgba(24, 104, 216, 0.05) 100%);
}

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

.challenge-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(24, 104, 216, 0.35);
}

.challenge-tag {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(24, 104, 216, 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.challenge-card h3 {
  margin-bottom: 0.5rem;
}

.challenge-card p {
  margin: 0 0 1.1rem;
  color: var(--text-soft);
}

.challenge-solve {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.feature-checks {
  margin: 1.5rem 0 1.8rem;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ok);
}

.trust-visual {
  position: relative;
}

.trust-visual img {
  width: 100%;
  min-height: clamp(410px, 48vw, 520px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.counter-card {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.counter-card strong,
.showcase-stats strong {
  display: block;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  color: var(--primary);
  font-size: 2.8rem;
  line-height: 0.95;
}

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

.service-card {
  position: relative;
  overflow: hidden;
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.9);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 35, 65, 0.35) 0%, rgba(13, 35, 65, 0.15) 45%, rgba(13, 35, 65, 0.55) 100%);
  transition: opacity 0.5s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.12);
  filter: saturate(1.35) brightness(1.05) contrast(1.05);
}

.service-card:hover .service-media::after {
  opacity: 0.35;
}

.service-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-media .service-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(24, 104, 216, 0.4) 0%, rgba(245, 180, 31, 0.32) 100%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover .service-tint {
  opacity: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -32px -32px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 104, 216, 0.12) 0%, transparent 70%);
}

.showcase-section {
  background: linear-gradient(180deg, rgba(13, 35, 65, 0.02) 0%, rgba(24, 104, 216, 0.05) 100%);
}

.showcase-grid {
  grid-template-columns: 1fr 1fr 0.8fr;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  min-height: clamp(340px, 33vw, 420px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 34, 0.05) 0%, rgba(7, 18, 34, 0.82) 100%);
  transition: opacity 0.45s ease;
}

.showcase-card:hover::after,
.showcase-card:focus-within::after {
  background: linear-gradient(180deg, rgba(7, 18, 34, 0.15) 0%, rgba(7, 18, 34, 0.9) 100%);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-card:hover img,
.showcase-card:focus-within img {
  transform: scale(1.06);
}

.showcase-copy {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  color: #ffffff;
}

.showcase-copy span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
}

.showcase-stats {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  align-content: start;
}

.showcase-stats div {
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.showcase-stats span {
  color: var(--text-soft);
}

.showcase-cta {
  margin-top: 1.15rem;
  padding: 1.45rem 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.showcase-cta h3 {
  margin-bottom: 0.45rem;
}

.showcase-cta p {
  margin: 0;
  color: var(--text-soft);
  max-width: 70ch;
}

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

.faq-item {
  padding: 1.3rem 1.4rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
}

.contact-section {
  background: transparent;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  padding: 1.1rem 1.2rem;
}

.form-wrap {
  padding: 1.6rem;
}

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

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

label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(24, 104, 216, 0.2);
  border-color: var(--primary);
}

.error {
  min-height: 1.2rem;
  margin-top: 0.3rem;
  color: var(--error);
  font-size: 0.88rem;
}

.success-msg {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 143, 82, 0.25);
  background: rgba(15, 143, 82, 0.09);
  color: #0c6c3e;
}

.footer {
  background: #09172c;
  color: #deebff;
  padding: 3.4rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

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

.footer-logo-image {
  height: 50px;
}

.footer h4 {
  margin-bottom: 0.8rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li,
.footer p,
.footer a {
  color: rgba(222, 235, 255, 0.8);
}

.footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(222, 235, 255, 0.12);
  color: rgba(222, 235, 255, 0.68);
  font-size: 0.92rem;
}

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

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

@media (max-width: 1100px) {
  .topbar-group {
    gap: 0.7rem;
  }

  .topbar {
    font-size: 0.88rem;
  }

  .navbar {
    min-height: 84px;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.94rem;
  }

  .nav-cta {
    min-height: 52px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

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

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

  .showcase-grid,
  .hero-grid,
  .about-layout,
  .trust-grid,
  .contact-grid,
  .faq-layout,
  .single-page-footer {
    grid-template-columns: 1fr;
  }

  .choose-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

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

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

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

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

  .hero-image-stack img:first-child {
    margin-left: 0;
  }

  .hero-slideshow {
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .navbar {
    min-height: 80px;
    position: relative;
  }

  .logo-image {
    height: 50px;
    max-width: min(250px, calc(100vw - 170px));
  }

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

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.2rem);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 20;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .navbar {
    min-height: 74px;
  }

  .logo-image {
    height: 42px;
    max-width: min(210px, calc(100vw - 124px));
  }

  .hero-panel::before {
    inset: 1rem 0.5rem auto;
  }

  .hero-grid {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-image-stack {
    min-height: auto;
  }

  .hero-image-stack img:first-child {
    width: 100%;
    height: clamp(280px, 82vw, 420px);
  }

  .hero-slideshow {
    width: 100%;
    height: clamp(280px, 82vw, 420px);
  }

  .hero-accent {
    position: static;
    width: min(78%, 250px);
    height: clamp(170px, 56vw, 220px);
    margin-top: -52px;
    margin-left: auto;
  }

  .hero-image-stack img:last-child {
    position: static;
    width: min(78%, 250px);
    height: clamp(170px, 56vw, 220px);
    margin-top: -52px;
    margin-left: auto;
  }

  .experience-badge {
    position: static;
    margin-top: 1rem;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .solution-mini-grid,
  .services-grid,
  .process-grid,
  .challenge-grid,
  .form-grid,
  .showcase-grid,
  .showcase-stats {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .floating-panel {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .counter-card {
    position: static;
    margin-top: 1rem;
  }

  .faq-item summary {
    font-size: 1.15rem;
  }

  .section {
    padding: 4.4rem 0;
  }
}

@media (max-width: 520px) {
  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 1rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-points span {
    align-items: flex-start;
  }

  .feature-row,
  .process-card,
  .service-card,
  .showcase-stats,
  .form-wrap,
  .faq-item {
    padding: 1.05rem;
  }

  .contact-card {
    padding: 1rem;
  }

  .footer {
    padding-top: 2.6rem;
  }

  .footer-logo-image {
    height: 38px;
  }
}

/* ===== Professional polish: a11y, focus, trust strip, motion ===== */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 12px 12px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: rgba(24, 104, 216, 0.2);
  color: var(--primary-dark);
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.6rem;
  padding: 1.1rem 0;
}

.trust-strip-label {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--primary);
  white-space: nowrap;
}

.trust-strip-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip-list li {
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .trust-strip-list li {
    font-size: 0.82rem;
    padding: 0.36rem 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

  .btn:hover {
    transform: none;
  }
}

@media print {
  .topbar,
  .header,
  .nav-toggle,
  .trust-strip,
  .hero-actions,
  .footer {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }
}

/* ===== Elegant premium layer: refined cards, imagery, interactions ===== */
.service-card,
.process-card,
.solution-mini-card,
.feature-row,
.contact-card,
.faq-item,
.showcase-card,
.trust-strip-list li {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease, background 0.35s ease;
}

.service-card:hover,
.process-card:hover,
.contact-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(24, 104, 216, 0.28);
}

.feature-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.solution-mini-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.trust-strip-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 104, 216, 0.4);
  color: var(--primary);
}

/* Refined imagery: subtle zoom + polished framing */
.primary-shot,
.trust-visual img,
.hero-accent,
.showcase-card img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.image-cluster:hover .primary-shot,
.trust-visual:hover img,
.showcase-card:hover img {
  transform: scale(1.04);
}

.image-cluster,
.trust-visual,
.showcase-card {
  overflow: hidden;
  border-radius: 28px;
}

.hero-slideshow,
.hero-accent,
.primary-shot,
.trust-visual img {
  box-shadow: var(--shadow), var(--ring);
}

/* Elegant gradient accent on section titles */
.section-title strong,
h1 strong {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

/* Refined button interaction */
.btn {
  position: relative;
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease, background 0.25s ease, filter 0.25s ease;
}

.btn-primary:hover {
  box-shadow: 0 24px 44px -12px rgba(24, 104, 216, 0.5);
  filter: saturate(1.08);
}

.btn-secondary:hover {
  border-color: rgba(24, 104, 216, 0.35);
}

/* Refined service icon accent ring */
.service-icon,
.feature-icon,
.process-icon {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover .service-icon,
.feature-row:hover .feature-icon,
.process-card:hover .process-icon {
  transform: scale(1.06);
  box-shadow: 0 12px 24px -10px rgba(24, 104, 216, 0.5);
}

/* Elegant typography refinement */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.section-subtitle {
  font-size: 1.06rem;
  line-height: 1.7;
}

/* Polished floating panels */
.floating-panel {
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-badge,
.counter-card {
  border: 1px solid var(--border);
}

/* Clickable contact details */
.contact-card a,
.footer li a {
  color: var(--text-soft);
  font-weight: 700;
  transition: color 0.2s ease;
}

.contact-card a {
  color: var(--primary);
  word-break: break-word;
}

.contact-card a:hover,
.footer li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.topbar a:hover {
  text-decoration: underline;
}

/* Language toggle */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-alt);
}

.lang-btn {
  border: 0;
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--text-soft);
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, #2b87ff 100%);
  box-shadow: 0 8px 16px -6px rgba(24, 104, 216, 0.5);
}

@media (max-width: 980px) {
  .nav-actions {
    gap: 0.6rem;
    order: 2;
  }

  .nav-toggle {
    order: 3;
    margin-left: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .process-card:hover,
  .contact-card:hover,
  .faq-item:hover,
  .feature-row:hover,
  .solution-mini-card:hover,
  .image-cluster:hover .primary-shot,
  .trust-visual:hover img,
  .showcase-card:hover img,
  .service-card:hover .service-media img,
  .service-card:hover .service-icon,
  .feature-row:hover .feature-icon,
  .process-card:hover .process-icon {
    transform: none;
  }
}

/* Contact form consent + anti-spam */
.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.6rem;
}

.consent-row input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.consent-label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.consent-label a {
  color: var(--primary);
  text-decoration: underline;
}

.consent-row .error {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Legal / policy pages */
.legal-section {
  padding-top: clamp(7rem, 12vw, 9rem);
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
  color: var(--primary-dark);
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  line-height: 1.7;
}

.legal-content ul {
  margin: 0.4rem 0 0.4rem 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content .btn {
  margin-top: 2rem;
  text-decoration: none;
}

