:root {
  --blue: #2b6cb0;
  --blue-soft: #4c7fc4;
  --blue-deep: #1a365d;
  --silver: #d6e0f0;
  --silver-soft: #edf2f7;
  --grey: #4a5568;
  --grey-light: #a0aec0;
  --bg: #f5f7fb;
  --white: #ffffff;
  --border-radius-lg: 18px;
  --border-radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.08);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--grey);
  background: #f8fafc;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.97) 12%, #f1f5f9 40%, #f8fafc 100%),
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(241, 245, 249, 0.9), transparent 50%),
    radial-gradient(ellipse 80% 50% at 90% 60%, rgba(226, 232, 240, 0.4), transparent 45%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(226, 232, 240, 0.35), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* Prevent horizontal overflow from long words/URLs */
h1, h2, h3, p, .lead, .section-lead, .contact-value, .form-disclaimer {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.container {
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--silver));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
  border-radius: 999px;
  transform-origin: left center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.65s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(247, 250, 252, 0.96),
    rgba(247, 250, 252, 0.86),
    transparent
  );
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 108, 176, 0.45),
    rgba(214, 224, 240, 0.65),
    transparent
  );
  opacity: 0.9;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 140px;
  width: auto;
  max-height: 28vw;
  border-radius: 0;
  opacity: 0.78;
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.06));
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
}

.brand-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-soft), var(--silver));
  border-radius: 999px;
  transition: width 0.28s var(--ease-out);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(160, 174, 192, 0.6);
  background: rgba(255, 255, 255, 0.95);
  padding: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out),
    background 0.18s var(--ease-out), color 0.18s var(--ease-out),
    border-color 0.18s var(--ease-out);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.18),
    0 0 0 1px rgba(43, 108, 176, 0.35);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.36);
}

.btn-secondary {
  background: radial-gradient(circle at top left, var(--silver), var(--blue-soft));
  color: var(--blue-deep);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(148, 163, 184, 0.26);
}

.btn-outline {
  border: 1px solid rgba(160, 174, 192, 0.9);
  color: var(--blue-deep);
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
  background: var(--blue-deep);
  color: var(--white);
  border-color: transparent;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--blue-deep);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
}

.btn.full-width {
  width: 100%;
}

.hero {
  position: relative;
  padding: 100px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 30%, #e8eef8 60%, #f1f5f9 100%);
  z-index: 0;
  animation: heroBgShift 14s var(--ease-soft) infinite alternate;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 70% 20%, rgba(43, 108, 176, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(76, 127, 196, 0.06), transparent 45%);
  pointer-events: none;
}

@keyframes heroBgShift {
  from { opacity: 1; filter: hue-rotate(0deg); }
  to { opacity: 1; filter: hue-rotate(2deg) brightness(1.02); }
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  align-items: center;
  gap: 40px;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--grey-light);
  margin-bottom: 8px;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw + 1.5rem, 3.6rem);
  line-height: 1.12;
  color: var(--blue-deep);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.12rem;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 36rem;
  color: #2d3748;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--grey);
  margin: 0 0 32px;
  line-height: 1.5;
}

.max-720 {
  max-width: 720px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.8rem;
  color: var(--grey-light);
}

.hero-meta {
  gap: 24px;
}

.hero-meta .stat-item {
  min-width: 120px;
}

.stat-item .stat-number {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
}

/* Stats strip */
.stats-strip {
  padding: 48px 0;
  background: linear-gradient(90deg, var(--blue-deep) 0%, #1e3a5f 50%, var(--blue-deep) 100%);
  color: var(--silver-soft);
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: statsShine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes statsShine {
  0%, 100% { opacity: 0; transform: translateX(-30%); }
  50% { opacity: 1; transform: translateX(30%); }
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-block {
  padding: 12px 20px;
}

.stat-block-number {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-block-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -24px -34px -32px;
  background: radial-gradient(circle at top left, #cfdaf0, transparent 55%),
    radial-gradient(circle at bottom right, #90cdf4, transparent 52%);
  opacity: 0.7;
  filter: blur(14px);
  z-index: -1;
  animation: glowFloat 6.5s var(--ease-soft) infinite alternate;
}

@keyframes glowFloat {
  from {
    transform: translate3d(-1%, -1%, 0) scale(1);
    opacity: 0.62;
  }
  to {
    transform: translate3d(1%, 1%, 0) scale(1.04);
    opacity: 0.82;
  }
}

.hero-card-inner {
  border-radius: 26px;
  padding: 26px 24px 26px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(30, 64, 175, 0.96));
  color: var(--silver-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.6);
  position: relative;
  overflow: hidden;
}

.hero-card-inner::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 70%;
  height: 160%;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(226, 232, 240, 0.18),
    transparent
  );
  transform: rotate(12deg);
  opacity: 0.9;
  animation: shimmer 6.8s var(--ease-soft) infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-20%) rotate(12deg);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  45% {
    transform: translateX(240%) rotate(12deg);
    opacity: 0;
  }
  100% {
    transform: translateX(240%) rotate(12deg);
    opacity: 0;
  }
}

.hero-card-inner h2 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  color: var(--silver);
}

.hero-card-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.9rem;
}

.hero-card-inner li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.hero-card-inner li::before {
  content: "";
  margin-top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2e8f0, #90cdf4);
  flex-shrink: 0;
}

.hero-card-cta {
  width: 100%;
}

.section {
  padding: 88px 0;
  background: #ffffff;
}

.about-intro {
  text-align: left;
}

.about-intro p {
  margin-bottom: 18px;
}

.section-alt {
  padding: 88px 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.section h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.5vw + 1rem, 2.4rem);
  margin: 0 0 20px;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
}

.section p {
  margin: 0 0 14px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill-grid span {
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.9);
  color: var(--grey);
  backdrop-filter: blur(6px);
  transition: transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.pill-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 108, 176, 0.22);
}

.card-list {
  display: grid;
  gap: 18px;
}

.info-card {
  border-radius: var(--border-radius-md);
  padding: 18px 18px 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.95);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(148, 163, 184, 0.26);
  border-color: rgba(43, 108, 176, 0.22);
}

.info-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.info-card p {
  margin: 0;
  font-size: 0.9rem;
}

.center {
  text-align: center;
}

.max-640 {
  max-width: 640px;
  margin-inline: auto;
}

.industry-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--border-radius-lg);
  padding: 24px 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.12);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.industry-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(148, 163, 184, 0.22);
  border-color: rgba(43, 108, 176, 0.2);
}

.industry-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-soft), var(--silver));
  margin-bottom: 14px;
  opacity: 0.9;
}

.services-grid .industry-card-icon {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.industry-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--blue-deep);
}

.industry-card p {
  margin: 0;
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.step {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--border-radius-md);
  padding: 24px 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 28px rgba(148, 163, 184, 0.2);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.step:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(148, 163, 184, 0.26);
  border-color: rgba(43, 108, 176, 0.18);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--silver));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--blue-deep);
}

.step p {
  margin: 0;
  font-size: 0.9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.check-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.check-list li::before {
  content: "✔";
  color: var(--blue);
  font-size: 0.8rem;
  margin-top: 3px;
}

.about-card {
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: -18px -28px -24px;
  background: radial-gradient(circle at top left, var(--silver), transparent 58%),
    radial-gradient(circle at bottom right, #90cdf4, transparent 56%);
  opacity: 0.75;
  filter: blur(10px);
  z-index: -1;
}

.about-card-inner {
  border-radius: var(--border-radius-lg);
  padding: 24px 22px 24px;
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.98), rgba(55, 65, 81, 0.96));
  color: var(--silver-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.about-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.about-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
}

.about-card-inner h3 {
  text-align: center;
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.about-card-inner p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1e3a5f 50%, var(--blue) 100%);
  z-index: 0;
  animation: ctaBgPulse 10s var(--ease-soft) infinite alternate;
}

@keyframes ctaBgPulse {
  from { filter: brightness(1); }
  to { filter: brightness(1.08); }
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.5rem);
  color: #fff;
  margin: 0 0 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0 0 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.cta-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}

.link-underline:hover {
  color: var(--blue);
}

.contact-section {
  background: radial-gradient(circle at top, #e0ebff, #f7fafc 50%, #ffffff);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-highlight {
  margin: 18px 0 10px;
  padding: 16px 18px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(148, 163, 184, 0.2);
  font-size: 0.92rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-light);
  margin-bottom: 2px;
}

.contact-value {
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--grey-light);
  max-width: 22rem;
}

.contact-form {
  padding: 20px 20px;
  border-radius: var(--border-radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(203, 213, 225, 0.9);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-field label {
  font-size: 0.8rem;
  margin-bottom: 4px;
  color: var(--grey-light);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  padding: 10px 12px;
  min-height: 44px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  background: rgba(250, 252, 255, 0.95);
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-field input[type="url"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="text"] {
  word-break: break-all;
}

.form-field textarea {
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
  background: #ffffff;
}

.form-field textarea {
  resize: vertical;
}

.form-disclaimer {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--grey-light);
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(420px, calc(100vw - 32px));
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--silver-soft);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(10px);
  transform: translate3d(0, 10px, 0);
  opacity: 0;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
  z-index: 300;
}

.toast.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mt-24 {
  margin-top: 24px;
}

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding: 48px 0 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin: 0 0 4px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--grey-light);
  margin: 0;
}

.footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-light);
  margin: 0 0 12px;
}

.footer-links-block,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-block a,
.footer-contact a {
  font-size: 0.95rem;
  color: var(--grey);
  transition: color 0.2s var(--ease-out);
}

.footer-links-block a:hover,
.footer-contact a:hover {
  color: var(--blue-deep);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 0.85rem;
  color: var(--grey-light);
}

.back-to-top {
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}

.back-to-top:hover {
  color: var(--blue-deep);
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .two-column,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    padding-block: 10px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: min(70vh, 400px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 16px 20px;
    background: rgba(247, 250, 252, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }

  .main-nav a {
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 56px;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100%, 100% - 24px);
  }

  .brand-logo {
    height: 100px;
    max-height: 22vw;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-card-inner {
    padding: 20px 18px;
  }

  .contact-form {
    padding: 18px 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-alt {
    padding: 56px 0;
  }

  .hero {
    padding: 60px 0 64px;
  }

  .cta-banner {
    padding: 56px 0 60px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100%, 100% - 20px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  body::before {
    animation: none;
  }

  .hero-card::before,
  .hero-card-inner::after {
    animation: none;
  }

  .reveal,
  .btn,
  .info-card,
  .industry-card,
  .step,
  .pill-grid span,
  .toast,
  .main-nav {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

