:root {
  --color-primary: #071a35;
  --color-primary-soft: #10274c;
  --color-secondary: #0e2b56;
  --color-accent: #4c8dff;
  --color-accent-strong: #2f6fe4;
  --color-highlight: #93c5fd;
  --color-text: #142033;
  --color-text-muted: #64748b;
  --color-text-light: #d8e1f0;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f8fc;
  --color-surface-dark: #08172e;
  --color-border: rgba(20, 32, 51, 0.12);
  --color-border-strong: rgba(94, 231, 239, 0.2);
  --shadow-sm: 0 10px 30px rgba(7, 26, 53, 0.08);
  --shadow-md: 0 18px 60px rgba(7, 26, 53, 0.14);
  --shadow-lg: 0 24px 90px rgba(4, 17, 34, 0.24);
  --section-padding: clamp(4rem, 7vw, 7rem);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --transition-base: 0.35s ease;
  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

::selection {
  background: rgba(24, 194, 201, 0.25);
}

:focus-visible {
  outline: 3px solid rgba(24, 194, 201, 0.45);
  outline-offset: 3px;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container-fluid-custom {
  width: min(100% - 1.5rem, var(--container-max));
  margin-inline: auto;
}

.section-padding {
  padding: var(--section-padding) 0;
  border-top: 1px solid #eee;
}

.section-light {
  background: var(--color-surface-alt);
}

.section-dark {
  background: linear-gradient(180deg, #07162f 0%, #0a1e3f 100%);
  color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(24, 194, 201, 0.12);
  color: var(--color-accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 680px;
  font-size: 1.05rem;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

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

.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
  color: var(--color-primary);
  border: 0;
  box-shadow: 0 14px 30px rgba(76, 141, 255, 0.24);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus-visible {
  color: var(--color-primary);
  box-shadow: 0 18px 36px rgba(76, 141, 255, 0.28);
}

.btn-outline-custom {
  border: 1px solid rgba(24, 194, 201, 0.3);
  color: #fff;
  background: transparent;
}

.btn-outline-dark-custom {
  border: 1px solid rgba(7, 26, 53, 0.15);
  color: var(--color-primary);
  background: #fff;
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-accent-strong);
  font-weight: 700;
}

.eyebrow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.eyebrow-list li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.eyebrow-list.light li {
  background: #fff;
  border-color: rgba(7, 26, 53, 0.08);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1050;
  transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
  padding: 0.9rem 0;
}

.site-header.is-scrolled {
  background: rgba(7, 26, 53, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 194, 201, 0.26), rgba(94, 231, 239, 0.1));
  border: 1px solid rgba(94, 231, 239, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a,
.site-nav button {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  transition: color var(--transition-base);
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav button:hover,
.site-nav button.is-active {
  color: #fff;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-dropdown-toggle i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  min-width: 250px;
  padding: 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 22, 47, 0.98);
  box-shadow: 0 24px 48px rgba(4, 15, 32, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.82);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-cta {
  display: none;
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: radial-gradient(circle at top right, rgba(24, 194, 201, 0.2), transparent 28%), linear-gradient(180deg, #07162f 0%, #081b39 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem 2rem;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-menu-links {
  flex: 1;
  display: grid;
  place-content: center;
  gap: 1.2rem;
  text-align: center;
}

.mobile-menu-links a,
.mobile-submenu-toggle {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 700;
  color: #fff;
}

.mobile-submenu-wrap {
  display: grid;
  gap: 0.85rem;
}

.mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.mobile-submenu-toggle i {
  font-size: 1rem;
  transition: transform var(--transition-base);
}

.mobile-submenu-toggle.is-open i {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: grid;
  gap: 0.8rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--transition-base), opacity var(--transition-base);
}

.mobile-submenu.is-open {
  max-height: 420px;
  opacity: 1;
}

.mobile-submenu a {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.mobile-menu-contact {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(24, 194, 201, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(94, 231, 239, 0.08), transparent 20%),
    linear-gradient(180deg, #08152b 0%, #0b2144 100%);
  color: #666;
}

.hero-section {
  padding: 8rem 0 4.5rem;
}

.page-hero {
  padding: 8rem 0 3.5rem;
}

.hero-shape,
.cta-shape,
.footer-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
}

.hero-shape.one {
  top: 80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(24, 194, 201, 0.18);
  filter: blur(10px);
  border-radius: 38% 62% 54% 46% / 49% 40% 60% 51%;
}

.hero-shape.two {
  bottom: -80px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: rgba(94, 231, 239, 0.08);
  border-radius: 50%;
  filter: blur(12px);
}

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

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  margin-bottom: 1rem;
}

.hero-copy .highlight-text {
  color: var(--color-highlight);
}

.hero-copy .pulse-text {
  color: #fff;
  display: inline-block;
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.hero-copy p.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

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

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.hero-visual-grid .stack {
  display: grid;
  gap: 1rem;
}

.hero-visual-grid img {
  min-height: 200px;
  border-radius: 22px;
  object-fit: cover;
}

.hero-mini-stat {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(76, 141, 255, 0.12), rgba(147, 197, 253, 0.16));
  border: 1px solid rgba(76, 141, 255, 0.16);
}

.hero-mini-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--color-primary);
}

.hero-visual-card,
.form-card,
.content-card,
.info-card,
.industry-card,
.funding-card,
.testimonial-card,
.faq-card,
.contact-card,
.legal-card,
.stats-card,
.cta-band,
.image-card {
  position: relative;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.hero-visual-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
}

.hero-visual-card img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-card {
  overflow: hidden;
}

.hero-media-card img {
  display: block;
  width: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
}

.placeholder-size-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(7, 26, 53, 0.08);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.92), rgba(255, 255, 255, 0.98));
}

.placeholder-size-note i {
  color: var(--color-accent-strong);
}

.form-card {
  padding: 1.5rem;
}

.form-card-dark {
  background: rgba(255, 255, 255, 0.98);
}

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

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.turnstile-wrap {
  margin-top: 1rem;
}

.turnstile-help {
  margin-top: 0.65rem;
  font-size: 0.94rem;
  color: var(--color-text-muted);
}

.form-feedback {
  margin-top: 1rem;
}

.form-card .form-label,
.contact-form .form-label {
  color: var(--color-primary);
  font-weight: 700;
}

.form-card .form-control,
.form-card .form-select,
.contact-form .form-control,
.contact-form .form-select {
  min-height: 52px;
  border-radius: 14px;
  border-color: rgba(7, 26, 53, 0.12);
  padding-inline: 1rem;
}

.form-card .form-control:focus,
.form-card .form-select:focus,
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(76, 141, 255, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(76, 141, 255, 0.12);
}

.form-helper {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 0.85rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.process-card,
.benefit-card,
.industry-card,
.funding-card,
.trust-card,
.faq-highlight,
.service-feature-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.process-card:hover,
.benefit-card:hover,
.industry-card:hover,
.funding-card:hover,
.trust-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(76, 141, 255, 0.24);
  box-shadow: 0 22px 46px rgba(7, 26, 53, 0.14);
}

.process-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 48px;
  padding: 0 1rem;
  border-radius: 14px;
  background: rgba(7, 26, 53, 0.06);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

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

.icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(76, 141, 255, 0.16), rgba(147, 197, 253, 0.14));
  color: var(--color-accent-strong);
  font-size: 1.55rem;
  margin-bottom: 1rem;
  transition: transform var(--transition-base), background var(--transition-base);
}

.process-card:hover .icon-badge,
.industry-card:hover .icon-badge,
.funding-card:hover .icon-badge,
.trust-card:hover .icon-badge {
  transform: scale(1.08) rotate(-6deg);
}

.industry-card img,
.service-hero-image img,
.testimonial-avatar img,
.contact-map img,
.split-image img {
  border-radius: var(--radius-md);
}

.industry-card {
  overflow: hidden;
  padding: 0;
}

.industry-card .industry-image {
  overflow: hidden;
}

.industry-card .industry-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.industry-card:hover .industry-image img {
  transform: scale(1.08);
}

.industry-card .industry-body {
  padding: 1.5rem;
}

.industry-card .industry-body p {
  min-height: 3.2rem;
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: stretch;
}

.about-collage .stack {
  display: grid;
  gap: 1rem;
}

.about-collage img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.application-shell {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.application-shell h2 {
  font-size: 1.35rem;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

.application-shell h2:first-of-type {
  margin-top: 0;
}

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

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

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

.application-shell input,
.application-shell select,
.application-shell textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(7, 26, 53, 0.12);
  border-radius: 16px;
  background: #fff;
}

.application-shell input:focus,
.application-shell select:focus,
.application-shell textarea:focus {
  outline: none;
  border-color: rgba(76, 141, 255, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(76, 141, 255, 0.12);
}

.application-shell input[type="file"] {
  padding: 0.7rem 0.8rem;
}

.application-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(76, 141, 255, 0.1), rgba(147, 197, 253, 0.12));
  border: 1px solid rgba(76, 141, 255, 0.14);
  color: var(--color-primary);
}

.checkbox-group {
  display: grid;
  gap: 0.9rem;
}

.checkbox-group label {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-weight: 600;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(147, 197, 253, 0);
    transform: translateY(0);
  }
  50% {
    text-shadow: 0 0 18px rgba(147, 197, 253, 0.45);
    transform: translateY(-1px);
  }
}

@keyframes floatingPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: var(--shadow-md);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 36px rgba(76, 141, 255, 0.24);
  }
}

.industry-card .industry-links,
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(7, 26, 53, 0.98), rgba(11, 33, 68, 0.98));
  color: var(--color-text-light);
  border-color: rgba(94, 231, 239, 0.18);
}

.highlight-card h3,
.highlight-card p,
.highlight-card li {
  color: inherit;
}

.funding-card .btn {
  margin-top: 0.6rem;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: inherit;
}

.check-list i {
  margin-top: 0.2rem;
  color: var(--color-accent);
}

.requirements-block,
.funding-range,
.stats-strip,
.cta-band,
.contact-strip {
  position: relative;
  overflow: hidden;
}

.requirements-block,
.cta-band {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.requirements-block {
  background: linear-gradient(135deg, #071b37 0%, #0d2850 100%);
  color: var(--color-text-light);
  box-shadow: var(--shadow-lg);
}

.requirements-block .content-card h3 {
  color: var(--color-primary);
}

.requirements-block .content-card p {
  color: var(--color-text-muted);
}

.requirements-block h2,
.requirements-block h3,
.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band {
  background: linear-gradient(135deg, #0d2c57 0%, #16417a 100%);
  border: 1px solid rgba(147, 197, 253, 0.16);
}

.cta-band p,
.cta-band .section-label {
  color: rgba(255, 255, 255, 0.88);
}

.funding-range {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(76, 141, 255, 0.12), rgba(147, 197, 253, 0.06));
  border: 1px solid rgba(76, 141, 255, 0.18);
}

.funding-range-amount {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  margin: 1rem 0;
  color: var(--color-primary);
}

.stats-strip {
  display: grid;
  gap: 1rem;
}

.stats-card {
  padding: 1.5rem;
}

.stats-number {
  display: block;
  color: var(--color-accent-strong);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.testimonial-card {
  padding: 1.75rem;
  height: 100%;
}

.testimonial-card .quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(76, 141, 255, 0.1);
  color: var(--color-accent-strong);
  margin-bottom: 1rem;
}

.testimonial-stars {
  color: #fbbf24;
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.swiper-pagination-bullet {
  background: rgba(7, 26, 53, 0.24);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent-strong);
}

.faq-card {
  padding: 1.5rem;
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #fff;
}

.accordion-button {
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: none;
  padding: 1.2rem 1.35rem;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: rgba(24, 194, 201, 0.06);
}

.accordion-button::after {
  display: none;
}

.accordion-icon {
  margin-left: auto;
  color: var(--color-accent-strong);
  transition: transform var(--transition-base);
}

.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

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

.partner-logo {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.page-hero p,
.page-hero li {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.78);
}

.split-image,
.service-hero-image,
.contact-map,
.image-card {
  overflow: hidden;
  min-height: 100%;
}

.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li,
.footer-links li {
  margin-bottom: 0.8rem;
}

.contact-list a,
.footer-links a {
  color: inherit;
}

.contact-card,
.legal-card {
  padding: 1.75rem;
  height: 100%;
}

.contact-map {
  padding: 0;
}

.contact-map-caption {
  padding: 1rem 1.25rem 1.5rem;
}

.footer {
  position: relative;
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, #061225 0%, #08172d 100%);
  color: var(--color-text-light);
}

.footer p,
.footer a,
.footer li {
  color: rgba(216, 225, 240, 0.78);
}

.footer h3,
.footer h4 {
  color: #fff;
}

.social-list {
  display: flex;
  gap: 0.8rem;
}

.social-list a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--transition-base), transform var(--transition-base);
}

.social-list a:hover,
.social-list a:focus-visible {
  background: rgba(76, 141, 255, 0.16);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .copyright-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.floating-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

.floating-btn.call {
  background: #fff;
  color: var(--color-primary);
}

.floating-btn.apply {
  background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
  color: var(--color-primary);
  animation: floatingPulse 2.8s ease-in-out infinite;
}

.chat-widget {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1040;
}

.chat-widget-toggle {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  animation: floatingPulse 3.1s ease-in-out infinite;
}

.chat-widget-panel {
  width: min(320px, calc(100vw - 2rem));
  margin-top: 0.75rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  display: none;
}

.chat-widget-panel.is-open {
  display: block;
}

.chat-widget-panel h4 {
  margin-bottom: 0.5rem;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(4, 15, 32, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.promo-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-popup-dialog {
  position: relative;
  width: min(920px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  box-shadow: 0 30px 80px rgba(4, 15, 32, 0.35);
}

.promo-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 26, 53, 0.86);
  color: #fff;
}

.promo-popup-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.promo-popup-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.promo-popup-content {
  padding: 2rem 1.5rem;
}

.promo-popup-content h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.promo-popup-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
}

.promo-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.promo-popup-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-strip {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(7, 26, 53, 0.96), rgba(11, 33, 68, 0.96));
  border-radius: var(--radius-lg);
  color: var(--color-text-light);
}

.contact-strip h3,
.contact-strip p {
  color: inherit;
}

.content-spacing > * + * {
  margin-top: 1.1rem;
}

.muted-small {
  font-size: 0.93rem;
  color: var(--color-text-muted);
}

.text-light-muted {
  color: rgba(216, 225, 240, 0.76);
}

.callout-list {
  display: grid;
  gap: 0.85rem;
}

.callout-list li {
  list-style: none;
  display: flex;
  gap: 0.85rem;
}

.callout-list i {
  margin-top: 0.2rem;
  color: var(--color-accent-strong);
}

.page-card-stack {
  display: grid;
  gap: 1.25rem;
}

.seo-copy p:last-child,
.content-card p:last-child,
.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.not-found-box {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.not-found-code {
  display: inline-flex;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(24, 194, 201, 0.12);
  color: var(--color-accent-strong);
  font-weight: 800;
  margin-bottom: 1rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
