:root {
  --blue-900: #062c6f;
  --blue-800: #0a3d91;
  --blue-700: #0f56c4;
  --blue-500: #1f7bff;
  --blue-100: #e9f2ff;
  --white: #ffffff;
  --text: #16304f;
  --muted: #61748c;
  --line: rgba(15, 86, 196, 0.12);
  --shadow: 0 20px 60px rgba(10, 41, 99, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 32%, #f4f8ff 100%);
}

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

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.topbar {
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
}


}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 44, 111, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: var(--blue-900);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 14px 34px rgba(31, 123, 255, 0.32);
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-500);
  transition: width 0.28s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--blue-900);
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(6, 44, 111, 0.2);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--blue-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-900);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 1.2s ease;
}

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

.hero-overlay {
  background: linear-gradient(110deg, rgba(4, 27, 68, 0.84) 0%, rgba(4, 39, 110, 0.64) 40%, rgba(31, 123, 255, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 34px;
  align-items: center;
  padding: 90px 0 70px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.section-tag {
  color: var(--blue-700);
  background: var(--blue-100);
  border-color: rgba(15, 86, 196, 0.08);
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.benefit-panel h2,
.contact-panel h2 {
  margin: 18px 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.12;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.hero-copy h1 span {
  color: #9fd0ff;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 16px 36px rgba(31, 123, 255, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.btn-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges div {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card-header,
.mini-stat,
.contact-list a,
.contact-list span,
.feature-item,
.benefits-list li {
  display: flex;
  align-items: center;
}

.hero-card-header {
  gap: 10px;
  color: var(--blue-900);
  margin-bottom: 18px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #11c26d;
  box-shadow: 0 0 0 0 rgba(17, 194, 109, 0.65);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(17, 194, 109, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(17, 194, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 194, 109, 0); }
}

.hero-card-body {
  display: grid;
  gap: 12px;
}

.mini-stat {
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(233, 242, 255, 0.9), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(15, 86, 196, 0.08);
}

.mini-stat span {
  color: var(--muted);
}

.mini-stat strong {
  color: var(--blue-900);
}

.hero-card-footer {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-indicators {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
}

.hero-indicators button.active {
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.stats {
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

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

.stat-card,
.service-card,
.benefit-panel,
.floating-info-card,
.testimonial-card,
.contact-panel,
.form-panel,
.about-main-card,
.app-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 26px 20px;
  text-align: center;
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-family: 'Montserrat', sans-serif;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.stat-card span,
.section-copy p,
.section-heading p,
.service-content p,
.benefit-panel p,
.contact-panel p,
.footer-inner p {
  color: var(--muted);
  line-height: 1.8;
}

.split-layout,
.benefits-wrap,
.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.benefit-panel h2,
.contact-panel h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--blue-900);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-item,
.benefits-list li {
  gap: 12px;
  color: var(--text);
  background: rgba(233, 242, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}

.feature-item i,
.benefits-list li i,
.contact-list i {
  color: var(--blue-700);
}

.about-main-card {
  padding: 18px;
  border: 1px solid var(--line);
}

.about-main-image {
  width: 100%;
  border-radius: 20px;
}

.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.app-card {
  padding: 16px;
  border: 1px solid var(--line);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(10, 41, 99, 0.18);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 22px;
}

.service-content h3,
.testimonial-author strong,
.footer-inner strong {
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  color: var(--blue-900);
}

.benefit-panel,
.floating-info-card,
.contact-panel,
.form-panel {
  padding: 32px;
  border: 1px solid var(--line);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.floating-info-card {
  min-height: 360px;
  position: relative;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}

.rounded-thumb {
  border-radius: 24px;
  width: min(100%, 360px);
  box-shadow: 0 18px 46px rgba(10, 41, 99, 0.12);
}

.secondary-thumb {
  position: absolute;
  right: 32px;
  bottom: 24px;
  width: min(42%, 220px);
  border: 8px solid var(--white);
}

.testimonials {
  background: linear-gradient(180deg, rgba(233, 242, 255, 0.5) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.testimonial-slider {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  border: 1px solid var(--line);
  padding: 34px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.stars {
  color: #ffb200;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
}

.testimonial-author {
  margin-top: 18px;
}

.testimonial-author span {
  color: var(--muted);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.testimonial-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-900);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10, 41, 99, 0.08);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(233, 242, 255, 0.46);
  color: var(--text);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 14px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
}

.lead-form label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--blue-900);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(6, 44, 111, 0.14);
  background: #f9fbff;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(31, 123, 255, 0.12);
}

.form-message {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.map-section iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

.site-footer {
  background: linear-gradient(135deg, var(--blue-900), #03193f);
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 24px;
  align-items: center;
  padding: 34px 0 22px;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
}

.copyright {
  text-align: center;
  padding: 0 16px 22px;
  color: rgba(255, 255, 255, 0.66);
}

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }

@media (max-width: 1100px) {
  .hero-content,
  .split-layout,
  .benefits-wrap,
  .contact-grid,
  .services-grid,
  .stats-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    background: var(--white);
    border-radius: 22px;
    border: 1px solid var(--line);
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .hero-content,
  .split-layout,
  .benefits-wrap,
  .contact-grid,
  .services-grid,
  .stats-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .stats {
    margin-top: 0;
  }






  .app-cards {
    grid-template-columns: 1fr;
  }

  .secondary-thumb {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .topbar-inner {
    justify-content: center;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .hero-content {
    padding: 74px 0 70px;
  }

  .hero-card,
  .benefit-panel,
  .floating-info-card,
  .contact-panel,
  .form-panel,
  .testimonial-card {
    padding: 22px;
  }

  .hero-badges,
  .hero-actions {
    gap: 10px;
  }
}
