@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --color-primary: #081220;
  --color-primary-light: #102443;
  --color-secondary: #2f6bff;
  --color-secondary-hover: #1f56dd;
  --color-secondary-light: #edf4ff;
  --color-accent: #ffb84d;
  --color-accent-hover: #ff9c38;
  --color-accent-soft: #fff2dc;
  --color-success: #17b997;
  --color-success-soft: #e7fbf5;
  --color-text-main: #132238;
  --color-text-muted: #607088;
  --color-text-soft: #93a3bb;
  --color-bg-white: #ffffff;
  --color-bg-light: #f4f7fb;
  --color-bg-dark: #081220;
  --color-bg-dark-alt: #111d31;
  --color-border: rgba(15, 23, 42, 0.09);
  --color-border-strong: rgba(15, 23, 42, 0.16);
  --gradient-primary: linear-gradient(135deg, #081220 0%, #102443 45%, #2f6bff 100%);
  --gradient-secondary: linear-gradient(135deg, #2f6bff 0%, #16c6ff 100%);
  --gradient-accent: linear-gradient(135deg, #ffb84d 0%, #ff7a18 100%);
  --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.94));
  --font-heading: 'Outfit', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --shadow-sm: 0 10px 28px rgba(8, 18, 32, 0.05);
  --shadow-md: 0 18px 46px rgba(8, 18, 32, 0.1);
  --shadow-lg: 0 28px 80px rgba(8, 18, 32, 0.14);
  --shadow-xl: 0 38px 110px rgba(8, 18, 32, 0.2);
  --shadow-glow: 0 18px 60px rgba(47, 107, 255, 0.25);
  --radius-sm: 0.8rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.8rem;
  --radius-full: 999px;
  --transition-fast: 180ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-normal: 360ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background:
    radial-gradient(circle at top left, rgba(47, 107, 255, 0.07), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(255, 184, 77, 0.08), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -2;
}

body::before {
  width: 280px;
  height: 280px;
  top: 8%;
  left: -80px;
  background: rgba(22, 198, 255, 0.08);
}

body::after {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 16%;
  background: rgba(255, 122, 24, 0.08);
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  background: rgba(47, 107, 255, 0.18);
  color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--spacing-sm);
}

p {
  color: inherit;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

a:hover {
  color: var(--color-secondary-hover);
}

ul {
  list-style: none;
}

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

iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

button {
  cursor: pointer;
}

.container {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--spacing-xl) 0;
}

.section-bg-light {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.section-bg-dark {
  background:
    radial-gradient(circle at top right, rgba(22, 198, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #081220 0%, #0d1a2e 100%);
  color: var(--color-bg-white);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4,
.section-bg-dark h5,
.section-bg-dark h6 {
  color: var(--color-bg-white);
}

.section-bg-dark .section-subtitle,
.section-bg-dark .text-muted,
.section-bg-dark .card-text,
.section-bg-dark p {
  color: rgba(230, 236, 245, 0.78);
}

.section-header {
  max-width: 780px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(47, 107, 255, 0.14);
  background: rgba(47, 107, 255, 0.08);
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 72px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--gradient-accent);
}

.section-header .section-title::after,
.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  margin-top: 1.4rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  will-change: transform;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.22);
  outline-offset: 3px;
}

.btn-primary {
  color: white;
  background: var(--gradient-secondary);
  box-shadow: 0 16px 38px rgba(47, 107, 255, 0.25);
}

.btn-primary:hover {
  color: white;
  background: linear-gradient(135deg, #255df2 0%, #0fb4ea 100%);
  box-shadow: 0 22px 46px rgba(47, 107, 255, 0.32);
}

.btn-accent {
  color: var(--color-primary);
  background: var(--gradient-accent);
  box-shadow: 0 18px 40px rgba(255, 122, 24, 0.28);
}

.btn-accent:hover {
  color: var(--color-primary);
  box-shadow: 0 24px 48px rgba(255, 122, 24, 0.34);
}

.btn-outline {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-outline:hover {
  color: var(--color-primary);
  background: white;
  border-color: white;
}

.section-bg-dark .btn-outline {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.section-bg-dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition-normal), padding var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 0.85rem 0;
  background: rgba(8, 18, 32, 0.76);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(8, 18, 32, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo:hover {
  color: white;
}

.logo span {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

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

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.05rem;
}

.homepage .navbar {
  border-bottom-color: transparent;
}

.homepage .logo,
.homepage .nav-link,
.homepage .mobile-menu-btn {
  color: white;
}

.homepage .nav-link:hover,
.homepage .nav-link.active {
  color: white;
}

.homepage .mobile-menu-btn {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.homepage .navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 40px rgba(8, 18, 32, 0.08);
}

.homepage .navbar.scrolled .logo,
.homepage .navbar.scrolled .nav-link,
.homepage .navbar.scrolled .mobile-menu-btn {
  color: var(--color-primary);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 9.8rem 0 5.3rem;
  background:
    radial-gradient(circle at top right, rgba(22, 198, 255, 0.16), transparent 22%),
    radial-gradient(circle at 12% 20%, rgba(255, 184, 77, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(8, 18, 32, 0.88) 0%, rgba(15, 31, 55, 0.85) 42%, rgba(16, 36, 67, 0.9) 100%),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
  isolation: isolate;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 90%);
  opacity: 0.25;
  z-index: -2;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 680px;
  height: 680px;
  right: -200px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.4) 0%, rgba(47, 107, 255, 0) 68%);
  filter: blur(20px);
  z-index: -1;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero:not(.page-hero-home) .container {
  max-width: 920px;
  text-align: center;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  margin-bottom: 1.2rem;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: rgba(240, 245, 255, 0.78);
}

.page-hero-home {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 8.4rem 0 5rem;
}

.page-hero-home .container {
  max-width: 1360px;
  text-align: left;
}

.homepage .page-hero-home {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 184, 77, 0.18), transparent 18%),
    radial-gradient(circle at 100% 0%, rgba(47, 107, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #fdfefe 0%, #f2f6fb 100%);
  color: var(--color-primary);
}

.homepage .page-hero-home::before {
  background-image:
    linear-gradient(rgba(17, 34, 68, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 34, 68, 0.05) 1px, transparent 1px);
  opacity: 0.35;
}

.homepage .page-hero-home::after {
  width: 560px;
  height: 560px;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.16) 0%, rgba(47, 107, 255, 0) 72%);
  filter: blur(8px);
}

.homepage .page-hero-home h1 {
  max-width: 11ch;
  color: var(--color-primary);
  font-size: clamp(3.2rem, 5.4vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.homepage .page-hero-home p {
  color: var(--color-text-muted);
}

.homepage .page-hero-home .container {
  max-width: 1240px;
}

.homepage .page-hero-home.hero-slider {
  min-height: 86vh;
  padding: 9.6rem 0 6.2rem;
  background: #081220;
  color: white;
}

.homepage .page-hero-home.hero-slider::before,
.homepage .page-hero-home.hero-slider::after {
  display: none;
}

.hero-slider .container {
  position: relative;
  z-index: 2;
}

.hero-slider .hero-layout {
  display: block;
}

.hero-backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-backgrounds::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.82) 0%, rgba(6, 16, 29, 0.68) 38%, rgba(6, 16, 29, 0.4) 100%),
    linear-gradient(180deg, rgba(6, 16, 29, 0.22) 0%, rgba(6, 16, 29, 0.58) 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 2400ms ease;
}

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

.hero-copy-slider {
  max-width: 760px;
}

.hero-slider .hero-copy .eyebrow {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.homepage .hero-slider .hero-copy h1 {
  max-width: 9.6ch;
  color: white;
  font-family: 'Sora', 'Outfit', sans-serif;
  font-size: clamp(3.15rem, 6.6vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.038em;
}

.hero-brand-title {
  display: flex;
  flex-direction: column;
  gap: 0.16em;
}

.hero-brand-title span {
  display: block;
}

.hero-brand-title strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.22em;
  padding: 0.16em 0.3em;
  border-radius: 0.28em;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-accent);
  font-family: 'Manrope', 'Outfit', sans-serif;
  font-size: 0.52em;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  vertical-align: middle;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.homepage .hero-slider .hero-copy p {
  color: rgba(240, 245, 255, 0.9);
}

.hero-slider .hero-lead {
  max-width: 760px;
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-slider .hero-actions {
  margin-top: 2rem;
}

.hero-slider .btn-primary {
  background: rgba(4, 18, 40, 0.96);
  box-shadow: 0 20px 44px rgba(4, 18, 40, 0.35);
}

.hero-slider .btn-primary:hover {
  background: rgba(8, 27, 56, 0.98);
}

.hero-slider .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-slider .btn-outline:hover {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-slider .hero-proof {
  margin-top: 2rem;
  max-width: 760px;
}

.hero-slider .proof-pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero-shell {
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy .eyebrow {
  color: var(--color-secondary);
  background: rgba(47, 107, 255, 0.08);
  border-color: rgba(47, 107, 255, 0.12);
}

.hero-copy p {
  margin: 0;
}

.hero-lead {
  max-width: 540px;
  margin-top: 1.1rem;
  font-size: 0.98rem;
  line-height: 1.8;
}

.homepage .hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 4.7vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-feature-list-compact {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.hero-feature-item i {
  color: var(--color-success);
  margin-top: 0.25rem;
}

.hero-feature-item span {
  color: var(--color-text-main);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.proof-pill i {
  color: var(--color-accent);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
  max-width: 640px;
}

.hero-stats-compact {
  grid-template-columns: repeat(2, minmax(0, 180px));
  max-width: 420px;
}

.stat-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.metric-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.metric-label {
  display: block;
  margin-top: 0.45rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.homepage .hero-stats .metric-number {
  color: var(--color-primary);
}

.hero-side {
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.hero-preview-card {
  padding: 1.6rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 64px rgba(8, 18, 32, 0.1);
}

.hero-side-intro {
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(47, 107, 255, 0.1);
  color: var(--color-secondary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-side-intro h2 {
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  font-size: 2rem;
  color: var(--color-primary);
}

.hero-side-intro p {
  max-width: 470px;
  color: var(--color-text-muted);
}

.hero-preview-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.45rem;
  font-size: 1.7rem;
  color: var(--color-primary);
}

.hero-preview-card > p {
  color: var(--color-text-muted);
}

.hero-preview-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.hero-preview-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(247, 250, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.hero-preview-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(47, 107, 255, 0.1);
  color: var(--color-secondary);
}

.hero-preview-item strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.98rem;
}

.hero-preview-item span {
  display: block;
  margin-top: 0.18rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.homepage .lead-panel {
  padding: 1.75rem;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 24px 64px rgba(8, 18, 32, 0.12);
}

.lead-panel {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-xl);
}

.homepage .lead-panel::before {
  display: none;
}

.lead-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.38), rgba(255, 184, 77, 0.32));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel-kicker {
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-panel h2 {
  margin-top: 0.35rem;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  color: var(--color-primary);
}

.lead-panel p {
  color: var(--color-text-muted);
}

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

.hero-proof-card {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.hero-proof-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-proof-card p {
  margin-top: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-grid {
  gap: 0.9rem;
}

.lead-form {
  margin-top: 1.35rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 1rem;
  background: rgba(248, 251, 255, 0.95);
  color: var(--color-text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-text-muted) 50%),
    linear-gradient(135deg, var(--color-text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.form-control::placeholder {
  color: #93a2b7;
}

.form-control:focus {
  outline: none;
  border-color: rgba(47, 107, 255, 0.4);
  background: white;
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.08);
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.95rem;
  color: var(--color-text-muted);
  font-size: 0.86rem;
}

.form-disclaimer i {
  color: var(--color-success);
}

.form-status {
  display: none;
  width: 100%;
  margin-top: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: var(--color-success-soft);
  color: #0b7f67;
  border: 1px solid rgba(23, 185, 151, 0.18);
}

.form-status.is-error {
  background: #fff2f2;
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.14);
}

.btn[disabled] {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.dashboard-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.mini-panel {
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mini-label {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-panel strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -2.5rem;
}

.homepage .trust-strip {
  margin-top: 0.25rem;
}

.trust-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.trust-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-label i {
  color: var(--color-secondary);
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--color-text-main);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 107, 255, 0.18);
}

.card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  background: rgba(47, 107, 255, 0.1);
  color: var(--color-secondary);
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(47, 107, 255, 0.06);
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.card-text {
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  flex: 1;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text-main);
  font-size: 0.95rem;
  font-weight: 600;
}

.card-list li i {
  color: var(--color-success);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  font-weight: 800;
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(3px);
}

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

.kpi-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.kpi-card .metric-number {
  color: var(--color-primary);
}

.kpi-card .metric-label {
  color: var(--color-text-muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.list-check li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 3.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.45rem;
  height: 1.45rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, white 0 18%, transparent 19%),
    linear-gradient(135deg, #16c6ff 0%, #2f6bff 100%);
  box-shadow: 0 10px 20px rgba(47, 107, 255, 0.22);
}

.delivery-panel {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.delivery-grid {
  display: grid;
  gap: 1rem;
}

.delivery-item {
  padding: 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.delivery-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: white;
  font-family: var(--font-heading);
}

.delivery-item span {
  color: rgba(230, 236, 245, 0.72);
  font-size: 0.94rem;
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.16), rgba(255, 184, 77, 0.55), rgba(47, 107, 255, 0.16));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 0.3rem;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: white;
  border: 10px solid rgba(47, 107, 255, 0.08);
  box-shadow: var(--shadow-md);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.process-step h3 {
  font-size: 1.2rem;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
}

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

.testimonial-card {
  padding: 1.5rem;
}

.rating {
  display: inline-flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.quote-copy {
  font-size: 1.02rem;
  color: var(--color-text-main);
}

.author-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.author-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  color: white;
  font-weight: 800;
}

.author-row strong {
  display: block;
}

.author-row span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-shell {
  max-width: 980px;
  margin: 0 auto;
}

details {
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

details[open] {
  border-color: rgba(47, 107, 255, 0.18);
  box-shadow: var(--shadow-md);
}

summary {
  position: relative;
  padding: 1.15rem 3.5rem 1.15rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.08);
  color: var(--color-secondary);
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: '-';
}

details p {
  padding: 0 1.2rem 1.2rem;
  color: var(--color-text-muted);
}

.cta-panel {
  position: relative;
  padding: 3rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #0b1730 0%, #102443 52%, #1d4fe1 100%);
  color: white;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: auto -90px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 77, 0.3), transparent 68%);
  filter: blur(12px);
}

.cta-panel h2,
.cta-panel p {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta-panel p {
  max-width: 720px;
  color: rgba(240, 245, 255, 0.82);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.footer {
  position: relative;
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, #081220 0%, #060d17 100%);
  color: white;
}

.footer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(47, 107, 255, 0), rgba(47, 107, 255, 0.9), rgba(255, 184, 77, 0.9), rgba(255, 184, 77, 0));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.footer-col h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: rgba(214, 222, 235, 0.76);
}

.footer-col a:hover {
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-links a::before {
  content: '>';
  color: var(--color-accent);
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(47, 107, 255, 0.18);
  color: white;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.newsletter-form input {
  min-height: 48px;
  flex: 1;
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(214, 222, 235, 0.55);
}

.footer-bottom {
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(214, 222, 235, 0.62);
  font-size: 0.9rem;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 18, 32, 0.74);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  padding: 2rem;
  border-radius: 1.8rem;
  background: white;
  box-shadow: var(--shadow-xl);
  transform: translateY(18px) scale(0.97);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-content .section-title {
  font-size: 1.9rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.modal-close:hover {
  background: rgba(47, 107, 255, 0.08);
  color: var(--color-secondary);
}

.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.img-hover-zoom img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

.detail-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.service-card-media {
  margin: -1.75rem -1.75rem 1.35rem;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 1.1rem 1.1rem;
}

.service-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .service-card-media img {
  transform: scale(1.04);
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 32, 0.08) 0%, rgba(8, 18, 32, 0.76) 100%);
}

.gallery-copy {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1;
  color: white;
}

.gallery-copy strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.gallery-copy span {
  color: rgba(240, 245, 255, 0.8);
  font-size: 0.92rem;
}

.who-we-are-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 250, 252, 0.96) 100%);
}

.who-we-are-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.who-we-are-header h2 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  letter-spacing: -0.06em;
}

.who-we-are-stack {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.who-we-are-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: center;
}

.who-we-are-row-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.95fr);
  margin-left: -3rem;
}

.who-we-are-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 18, 32, 0.12);
}

.who-we-are-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.who-we-are-card {
  position: relative;
  z-index: 2;
  margin-left: -1.4rem;
  padding: 3.8rem 3.2rem;
  background: white;
  box-shadow: 0 18px 46px rgba(8, 18, 32, 0.06);
}

.who-we-are-row-reverse .who-we-are-card {
  margin-left: 0;
  margin-right: -1.4rem;
}

.who-we-are-card h3 {
  margin-bottom: 1.6rem;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.05em;
}

.who-we-are-card p {
  color: #5c6879;
  font-size: 1.08rem;
  line-height: 1.9;
}

.company-intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.94) 100%);
}

.company-intro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 18, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 18, 32, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.company-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.company-intro-image {
  overflow: hidden;
  border-radius: 1.1rem;
  box-shadow: 0 28px 70px rgba(47, 107, 255, 0.18);
}

.company-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.company-intro-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.company-intro-kicker {
  display: inline-block;
  margin-bottom: 1.35rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.company-intro-copy h2 {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.company-intro-copy h2 span {
  display: block;
}

.company-intro-copy h2 span:last-child {
  white-space: nowrap;
}

.company-intro-copy p {
  max-width: 860px;
  margin-bottom: 1.3rem;
  color: #7b8491;
  font-size: 1.1rem;
  line-height: 1.85;
}

.company-stats-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  border-radius: 1.9rem;
  overflow: hidden;
  background: #07132f;
  box-shadow: 0 26px 70px rgba(7, 19, 47, 0.16);
}

.company-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.company-stat + .company-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.company-stat-number {
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.company-stat-label {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
}

.importance-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 253, 0.96) 100%);
}

.importance-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 34, 68, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 34, 68, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 38%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

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

.importance-copy {
  max-width: 620px;
}

.importance-kicker {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.importance-copy h2 {
  font-family: var(--font-display);
  margin-bottom: 1.3rem;
  font-size: clamp(2.5rem, 4.7vw, 4.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.importance-copy p {
  color: #808896;
  font-size: 1.03rem;
  line-height: 1.8;
}

.importance-accent-line {
  width: 94px;
  height: 3px;
  margin: 1.8rem 0 1.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #49aaf8 0%, #7ac9ff 100%);
}

.importance-btn {
  color: white;
  background: #07132f;
  box-shadow: 0 18px 40px rgba(7, 19, 47, 0.16);
}

.importance-btn:hover {
  color: white;
  background: #0a1b42;
}

.importance-image {
  overflow: hidden;
  border-radius: 0.25rem;
  box-shadow: 0 24px 70px rgba(8, 18, 32, 0.12);
}

.importance-image img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.importance-service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.importance-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 120px;
  padding: 1.4rem 1rem;
  border-radius: 0.55rem;
  background: #07132f;
  color: white;
  text-align: center;
  box-shadow: 0 20px 42px rgba(7, 19, 47, 0.12);
  will-change: transform;
}

.importance-service-card i {
  font-size: 1.85rem;
  color: white;
}

.importance-service-card span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.services-showcase-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 251, 253, 0.96) 100%);
}

.services-showcase-section::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background:
    radial-gradient(circle, rgba(8, 18, 32, 0.045) 1px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 30%);
  pointer-events: none;
}

.services-showcase-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
  text-align: center;
}

.services-showcase-header h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.services-showcase-line {
  width: 94px;
  height: 2px;
  border-radius: 999px;
  background: rgba(7, 19, 47, 0.85);
}

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

.showcase-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 1.6rem;
  border-radius: 0.35rem;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(8, 18, 32, 0.08);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.showcase-service-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 0.35rem 0.35rem 0 0;
}

.showcase-service-card h3 {
  margin: 1rem 0 0.8rem;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
  transition: color 220ms ease;
}

.showcase-service-card p {
  color: #6f7886;
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0 1.8rem;
  transition: color 220ms ease;
}

.showcase-service-btn {
  margin-top: 1.2rem;
  color: white;
  background: #07132f;
  border-radius: 0.15rem;
  padding: 0.85rem 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.showcase-service-btn:hover {
  color: white;
  background: #0a1b42;
}

.showcase-service-card:hover,
.showcase-service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(8, 18, 32, 0.12);
}

.showcase-service-card:hover,
.showcase-service-card:focus-within {
  background: #07132f;
  box-shadow: 0 28px 60px rgba(7, 19, 47, 0.18);
}

.showcase-service-card:hover h3,
.showcase-service-card:hover p,
.showcase-service-card:focus-within h3,
.showcase-service-card:focus-within p {
  color: white;
}

.showcase-service-card:hover .showcase-service-btn,
.showcase-service-card:focus-within .showcase-service-btn {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.showcase-service-card:hover .showcase-service-btn:hover,
.showcase-service-card:focus-within .showcase-service-btn:hover {
  color: #07132f;
  background: white;
  border-color: white;
}

.why-choose-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
  margin-top: 4rem;
}

.why-choose-copy h3 {
  font-family: var(--font-display);
  max-width: 340px;
  margin-bottom: 1.6rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}

.why-choose-copy p {
  max-width: 360px;
  color: #6f7886;
  font-size: 0.95rem;
  line-height: 1.72;
}

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

.why-choose-tile {
  border-radius: 1rem;
  overflow: hidden;
}

.why-choose-note {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 1.4rem;
  background: #07132f;
  box-shadow: 0 18px 40px rgba(7, 19, 47, 0.14);
}

.why-choose-note p {
  color: white;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.why-choose-image img {
  width: 100%;
  height: 164px;
  object-fit: cover;
  display: block;
}

.software-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 252, 0.92) 100%);
}

.software-section .section-header {
  margin-bottom: 2.5rem;
}

.software-marquee-shell {
  padding: 0.5rem 0 0.75rem;
}

.software-track {
  gap: 1.2rem;
  animation-duration: 20s;
}

.software-card {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.5rem;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(8, 18, 32, 0.08);
  text-align: center;
}

.software-card strong {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.software-card span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.software-iest strong {
  color: #d62828;
  letter-spacing: -0.03em;
}

.software-vision strong {
  color: #2f6bff;
  font-size: 1.5rem;
}

.software-mccormick strong {
  color: #111827;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.software-bluebeam strong {
  color: #1f8ef1;
  font-size: 1.95rem;
  text-transform: uppercase;
}

.software-planswift strong {
  color: #6b7280;
  font-size: 1.55rem;
}

.software-accubid {
  background: #101114;
  border-color: rgba(255, 255, 255, 0.06);
}

.software-accubid strong {
  color: #f5d94f;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.software-accubid span {
  color: rgba(255, 255, 255, 0.68);
}

.text-center {
  text-align: center;
}

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

.text-white {
  color: white;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-4 {
  padding: 1.5rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.tilt-card {
  transform-style: preserve-3d;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1160px) {
  .hero-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .company-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .importance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-showcase-grid,
  .why-choose-grid,
  .who-we-are-row,
  .who-we-are-row-reverse {
    grid-template-columns: 1fr;
  }

  .company-intro-copy {
    max-width: none;
  }

  .importance-copy {
    max-width: none;
  }

  .who-we-are-row-reverse {
    margin-left: 0;
  }

  .who-we-are-card,
  .who-we-are-row-reverse .who-we-are-card {
    margin: 0;
  }

  .why-choose-copy p,
  .why-choose-copy h3 {
    max-width: none;
  }

  .hero-copy {
    max-width: none;
  }

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

  .hero-feature-list-compact,
  .hero-stats-compact {
    max-width: none;
  }

  .hero-stack {
    padding-left: 0;
  }

  .floating-tag-bottom {
    left: 0.75rem;
  }

  .hero-side {
    max-width: none;
    justify-self: stretch;
  }

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

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

  .services-showcase-grid {
    gap: 1.5rem;
  }

  .company-intro-image img {
    min-height: 460px;
  }

  .importance-image img {
    min-height: 400px;
  }

  .who-we-are-media img {
    min-height: 280px;
  }

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

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

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

  .process-grid::before {
    display: none;
  }

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

@media (max-width: 960px) {
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.5rem;
    background: rgba(8, 18, 32, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  }

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

  .nav-link {
    padding: 0.2rem 0;
  }

  .nav-link::after {
    bottom: -0.2rem;
  }

  .mobile-menu-btn {
    display: inline-flex;
    flex-shrink: 0;
  }

  .homepage .nav-menu .nav-link,
  .homepage .nav-menu.active .nav-link {
    color: rgba(255, 255, 255, 0.86);
  }

  .homepage .nav-menu .nav-link:hover,
  .homepage .nav-menu .nav-link.active {
    color: white;
  }

  .grid-3,
  .kpi-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .dashboard-strip {
    grid-template-columns: 1fr;
  }

  .hero-feature-list,
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4.5rem;
  }

  .container {
    width: min(100% - 2rem, 1240px);
  }

  .section-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .page-hero {
    padding: 8.5rem 0 4.3rem;
  }

  .page-hero-home {
    min-height: auto;
    padding: 8rem 0 5.5rem;
  }

  .homepage .page-hero-home {
    padding: 7.6rem 0 4.5rem;
  }

  .homepage .page-hero-home.hero-slider {
    min-height: 72vh;
    padding: 8rem 0 4.8rem;
  }

  .page-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .homepage .page-hero-home h1,
  .homepage .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.35rem, 9.2vw, 3.4rem);
  }

  .homepage .hero-slider .hero-copy h1 {
    font-size: clamp(2.55rem, 10.4vw, 3.65rem);
  }

  .hero-brand-title strong {
    margin-left: 0.16em;
    font-size: 0.5em;
  }

  .trust-strip {
    margin-top: -1.4rem;
  }

  .trust-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .grid-2,
  .grid-4,
  .process-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .company-intro-copy h2 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .company-intro-copy h2 span:last-child {
    white-space: normal;
  }

  .importance-copy h2 {
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .company-intro-copy p {
    font-size: 1rem;
  }

  .importance-copy p {
    font-size: 1rem;
  }

  .who-we-are-card {
    padding: 2rem 1.5rem;
  }

  .who-we-are-card h3 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .who-we-are-card p {
    font-size: 1rem;
  }

  .showcase-service-card h3 {
    font-size: 1.55rem;
  }

  .company-stats-bar {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .company-stat + .company-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-actions,
  .cta-actions,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .cta-panel,
  .lead-panel,
  .modal-content {
    padding: 1.4rem;
  }

  .hero-shell {
    padding: 0;
  }

  .hero-preview-card {
    padding: 1.25rem;
  }

  .hero-slider .hero-lead {
    font-size: 1.02rem;
  }

  .service-card-media {
    margin: -1.75rem -1.75rem 1.1rem;
  }

  .gallery-card {
    min-height: 280px;
  }

  .importance-service-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-mosaic {
    grid-template-columns: 1fr;
  }

  .importance-image img {
    min-height: 300px;
  }

  .company-intro-image img {
    min-height: 320px;
  }

  .software-card {
    min-width: 180px;
    padding: 1.1rem 1.2rem;
  }

  .software-card strong {
    font-size: 1.45rem;
  }

  .floating-tag {
    position: static;
    margin-bottom: 0.8rem;
  }

  .process-step {
    text-align: left;
    padding: 0;
  }

  .step-number {
    margin-left: 0;
  }

}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 90px;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-pill {
    width: 100%;
  }

  .page-hero p,
  .section-subtitle,
  .hero-lead {
    font-size: 1rem;
  }

  .hero-feature-item,
  .hero-proof-card,
  .stat-card {
    padding: 0.95rem;
  }

  .hero-stats-compact {
    grid-template-columns: 1fr;
  }

  .hero-slider .hero-proof {
    flex-direction: column;
    align-items: stretch;
  }

  .software-card {
    min-width: 160px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
