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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-badge,
  .hero-title,
  .hero-text,
  .hero-actions,
  .hero-stats,
  .hero-image,
  .hero-float-card {
    opacity: 1;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #384152;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background-color: #1a56db;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(26, 86, 219, 0.25);
}

.btn-primary:hover {
  background-color: #1543ad;
  box-shadow: 0 6px 14px rgba(26, 86, 219, 0.35);
}

.btn-outline {
  background-color: #ffffff;
  color: #101b34;
  border: 1px solid #d7dce4;
}

.btn-outline:hover {
  background-color: #f5f7fa;
  box-shadow: 0 4px 10px rgba(16, 27, 52, 0.08);
}

.btn-header {
  padding: 11px 24px;
  font-size: 14px;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid #eef0f4;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(16, 27, 52, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #101b34;
  letter-spacing: -0.3px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: #1a56db;
  color: #ffffff;
}

.logo-text-accent {
  color: #1a56db;
}

/* Nav */
.main-nav {
  display: flex;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #384152;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1a56db;
}

.header-actions {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #101b34;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   RESPONSIVE - HEADER
========================================================= */
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(16, 27, 52, 0.08);
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .logo-text {
    font-size: 19px;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  padding: 88px 096px 0px 96px ;
  overflow: hidden;
  background-color: #f7f9fc;
}

/* Hero background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: -20px;
  background-image:
    linear-gradient(rgba(26, 86, 219, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 86, 219, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 30% 25%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 65% 65% at 30% 25%, #000 0%, transparent 78%);
}

/* Shooting-star beams travelling down the grid's vertical lines */
.hero-grid-beams {
  position: absolute;
  inset: -20px;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at 50% 30%, #000 0%, transparent 92%);
  mask-image: radial-gradient(ellipse 95% 90% at 50% 30%, #000 0%, transparent 92%);
}

.grid-beam {
  position: absolute;
  top: -15%;
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(26, 86, 219, 0.85) 55%, rgba(111, 155, 245, 0.95) 78%, transparent);
  border-radius: 2px;
  animation-name: gridBeamFall;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

@keyframes gridBeamFall {
  0% { top: -15%; opacity: 0; }
  10% { opacity: 1; }
  82% { opacity: 1; }
  100% { top: 115%; opacity: 0; }
}

.grid-beam--1 { left: 6%;  animation-duration: 2.4s; animation-delay: 0s; }
.grid-beam--2 { left: 18%; animation-duration: 4.3s; animation-delay: 0.8s; }
.grid-beam--3 { left: 30%; animation-duration: 3.1s; animation-delay: 1.6s; }
.grid-beam--4 { left: 44%; animation-duration: 5.2s; animation-delay: 0.3s; }
.grid-beam--5 { left: 58%; animation-duration: 2.8s; animation-delay: 2.4s; }
.grid-beam--6 { left: 70%; animation-duration: 4.7s; animation-delay: 1.1s; }
.grid-beam--7 { left: 82%; animation-duration: 3.6s; animation-delay: 3s; }
.grid-beam--8 { left: 92%; animation-duration: 2.1s; animation-delay: 1.9s; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.hero-blob--1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.28), rgba(26, 86, 219, 0) 70%);
  animation: blobFloat1 16s ease-in-out infinite;
}

.hero-blob--2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  right: -80px;
  background: radial-gradient(circle, rgba(111, 155, 245, 0.3), rgba(111, 155, 245, 0) 70%);
  animation: blobFloat2 18s ease-in-out infinite;
}

.hero-blob--3 {
  width: 260px;
  height: 260px;
  top: 32%;
  right: 12%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.22), rgba(240, 180, 41, 0) 70%);
  animation: blobFloat3 13s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 40px) scale(1.12); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -35px) scale(1.08); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 25px) scale(1.15); }
}

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

/* Hero entrance animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cardFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: #e9f0fd;
  color: #1a56db;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.1s;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: #101b34;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.22s;
}

.text-accent {
  color: #1a56db;
}

.hero-text {
  font-size: 16px;
  line-height: 1.7;
  color: #5c6478;
  max-width: 460px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.34s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.46s;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.58s;
  margin-bottom: 88px;
}

.hero-stat-number {
  font-size: 26px;
  font-weight: 800;
  color: #101b34;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: #5c6478;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background-color: #e3e7ee;
}

/* Hero Media */
.hero-media {
  position: relative;
  align-self: flex-end;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 703px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 24px;
  opacity: 0;
  animation: heroImageIn 0.9s ease forwards;
  animation-delay: 0.28s;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 12px 18px 12px 12px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(16, 27, 52, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: #101b34;
  opacity: 0;
  animation: cardFadeIn 0.5s ease forwards, cardFloat 3.6s ease-in-out infinite;
}

.hero-float-card--top {
  top: 36px;
  right: -8px;
  animation-delay: 1.1s, 1.1s;
}

.hero-float-card--bottom {
  bottom: 36px;
  left: -8px;
  animation-delay: 1.35s, 1.35s;
}

.hero-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ffffff;
}

.hero-float-icon--check {
  background-color: #16a34a;
}

.hero-float-icon--star {
  background-color: #f59e0b;
}

/* =========================================================
   RESPONSIVE - HERO
========================================================= */
@media (max-width: 992px) {
  .hero {
    padding: 48px 0 64px;
  }

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

  .hero-media {
    order: -1;
    align-self: center;
  }

  .hero-image {
    max-height: 380px;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-divider:nth-of-type(3) {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

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

  .hero-stat-number {
    font-size: 22px;
  }

  .hero-image {
    max-height: 300px;
  }

  .hero-float-card {
    padding: 8px 14px 8px 8px;
    font-size: 12px;
  }
}

/* =========================================================
   SECTION HEADING (shared)
========================================================= */
.section-heading {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 20px;
  background-color: #e9f0fd;
  color: #1a56db;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.6px;
  color: #101b34;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #5c6478;
}

/* =========================================================
   STATS
========================================================= */
.stats {
  padding: 96px 0;
  background-color: #EFF3F7;
}

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

.stat-card {
  background-color: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(16, 27, 52, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.stat-card:hover {
  box-shadow: 0 10px 24px rgba(16, 27, 52, 0.1);
  transform: translateY(-4px);
}

.stat-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background-color: #e9f0fd;
  color: #1a56db;
}

.stat-card-number {
  font-size: 28px;
  font-weight: 800;
  color: #101b34;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}

.stat-card-label {
  font-size: 14px;
  color: #5c6478;
  font-weight: 500;
}

/* =========================================================
   RESPONSIVE - STATS
========================================================= */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }

  .stats {
    padding: 64px 0;
  }

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

/* =========================================================
   ABOUT
========================================================= */
.about {
  padding: 96px 0;
  background-color: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  gap: 56px;
}

.about-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}

.section-tag--left {
  margin-bottom: 16px;
}

.about-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #101b34;
  margin-bottom: 18px;
}

.about-text {
  font-size: 16px;
  line-height: 1.75;
  color: #5c6478;
  margin-bottom: 32px;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-mv-card {
  background-color: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 14px;
  padding: 22px 20px;
}

.about-mv-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a56db;
  margin-bottom: 8px;
}

.about-mv-text {
  font-size: 14px;
  line-height: 1.65;
  color: #5c6478;
}

/* =========================================================
   RESPONSIVE - ABOUT
========================================================= */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 64px 0;
  }

  .about-title {
    font-size: 26px;
  }

  .about-mv-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 240px;
  }
}

/* =========================================================
   PRINCIPLES (merged into About section)
========================================================= */
.principles-inner {
  padding-top: 80px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d97706;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.principle-card {
  background-color: #fffaf0;
  border: 1px solid #fbe8c8;
  border-radius: 16px;
  padding: 32px 28px;
}

.principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 12px;
  background-color: #f0b429;
  color: #ffffff;
}

.principle-title {
  font-size: 18px;
  font-weight: 700;
  color: #101b34;
  margin-bottom: 10px;
}

.principle-text {
  font-size: 14px;
  line-height: 1.7;
  color: #5c6478;
}

/* =========================================================
   RESPONSIVE - PRINCIPLES
========================================================= */
@media (max-width: 992px) {
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .principles-inner {
    padding-top: 56px;
  }

  .principle-card {
    padding: 26px 22px;
  }
}

/* =========================================================
   SERVICES
========================================================= */
.services {
  padding: 96px 0;
  background-color: #f7f9fc;
}

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

.service-card {
  background-color: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 10px 24px rgba(16, 27, 52, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 12px;
  background-color: #e9f0fd;
  color: #1a56db;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #101b34;
  margin-bottom: 10px;
}

.service-text {
  font-size: 14px;
  line-height: 1.7;
  color: #5c6478;
}

/* =========================================================
   RESPONSIVE - SERVICES
========================================================= */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services {
    padding: 64px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 26px 22px;
  }
}

/* =========================================================
   INDUSTRIES
========================================================= */
.industries {
  padding: 96px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px;
  border: 1px solid #eef0f4;
  border-radius: 14px;
  text-align: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.industry-card:hover {
  border-color: #d7e2fb;
  box-shadow: 0 10px 20px rgba(16, 27, 52, 0.06);
  transform: translateY(-4px);
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #e9f0fd;
  color: #1a56db;
}

.industry-name {
  font-size: 14px;
  font-weight: 600;
  color: #101b34;
}

/* =========================================================
   RESPONSIVE - INDUSTRIES
========================================================= */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .industries {
    padding: 64px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* =========================================================
   ADVANTAGES
========================================================= */
.advantages {
  position: relative;
  padding: 96px 0;
  background: url(../assets/images/advantages_bg.jpg) top/cover no-repeat #0c1b36;
}

.advantages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 20, 46, 0.82), rgba(9, 20, 46, 0.1));
}

.advantages > .container {
  position: relative;
  z-index: 1;
}

.section-heading--dark {
  max-width: 680px;
}

.section-tag--dark {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section-title--light {
  color: #ffffff;
}

.section-subtitle--light {
  color: #dbe1ec;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 16px 36px rgba(4, 10, 26, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(4, 10, 26, 0.34);
}

.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
  background-color: #e9f0fd;
  color: #1a56db;
}

.advantage-title {
  font-size: 18px;
  font-weight: 700;
  color: #101b34;
  margin-bottom: 10px;
}

.advantage-text {
  font-size: 14px;
  line-height: 1.7;
  color: #5c6478;
}

/* =========================================================
   RESPONSIVE - ADVANTAGES
========================================================= */
@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .advantages {
    padding: 64px 0;
  }

  .advantage-item {
    padding: 26px 22px;
  }
}

/* =========================================================
   PROCESS
========================================================= */
.process {
  padding: 96px 0;
  background-color: #f7f9fc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background-color: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 28px 26px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.process-card:hover {
  box-shadow: 0 10px 24px rgba(16, 27, 52, 0.08);
  transform: translateY(-4px);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 10px;
  background-color: #1a56db;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.process-title {
  font-size: 17px;
  font-weight: 700;
  color: #101b34;
  margin-bottom: 8px;
}

.process-text {
  font-size: 14px;
  line-height: 1.7;
  color: #5c6478;
}

/* =========================================================
   RESPONSIVE - PROCESS
========================================================= */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process {
    padding: 64px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials {
  padding: 96px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 4px 16px rgba(16, 27, 52, 0.05);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f0b429;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: #384152;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #e9f0fd;
  color: #1a56db;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #101b34;
}

.testimonial-role {
  display: block;
  font-size: 12px;
  color: #5c6478;
}

/* =========================================================
   RESPONSIVE - TESTIMONIALS
========================================================= */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 64px 0;
  }
}

/* =========================================================
   CTA
========================================================= */
.cta {
  padding: 0 0 96px;
}

.cta-box {
  background: linear-gradient(135deg, #16326b 0%, #0c1b36 100%);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: #c3ccdb;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-cta-primary {
  background-color: #1a56db;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(26, 86, 219, 0.3);
}

.btn-cta-primary:hover {
  background-color: #1543ad;
  box-shadow: 0 6px 14px rgba(26, 86, 219, 0.4);
}

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

.btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   RESPONSIVE - CTA
========================================================= */
@media (max-width: 480px) {
  .cta {
    padding: 0 0 64px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================
   CONTACT - REQUEST FORM
========================================================= */
.contact-form-section {
  padding: 96px 0;
  background-color: #f7f9fc;
}

.request-form-card {
  max-width: 760px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 24px rgba(16, 27, 52, 0.06);
}

.request-form-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  background-color: #f0f2f6;
  border-radius: 12px;
  margin-bottom: 28px;
}

.request-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #5c6478;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.request-tab.is-active {
  background-color: #ffffff;
  color: #1a56db;
  box-shadow: 0 2px 8px rgba(16, 27, 52, 0.08);
}

/* Form fields (shared) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #101b34;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #101b34;
  background-color: #ffffff;
  border: 1px solid #dde1e8;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9aa2b1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #dc2626;
}

.form-error-message {
  display: block;
  font-size: 12px;
  color: #dc2626;
  margin-top: 6px;
}

.radio-group {
  display: flex;
  gap: 24px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #384152;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #1a56db;
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
}

.form-success-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #ecfdf3;
  color: #027a48;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-submit-error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* =========================================================
   CONTACT - INFO SECTION
========================================================= */
.contact-info-section {
  padding: 96px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background-color: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(16, 27, 52, 0.04);
}

.contact-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: #e9f0fd;
  color: #1a56db;
}

.contact-info-label {
  display: block;
  font-size: 13px;
  color: #5c6478;
  margin-bottom: 2px;
}

.contact-info-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #101b34;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.contact-map-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact-right {
  background-color: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(16, 27, 52, 0.06);
}

/* =========================================================
   RESPONSIVE - CONTACT
========================================================= */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .contact-form-section,
  .contact-info-section {
    padding: 64px 0;
  }

  .request-form-card {
    padding: 24px 20px;
  }

  .request-form-tabs {
    flex-direction: column;
  }

  .contact-right {
    padding: 24px 20px;
  }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  padding: 72px 0 0;
  background-color: #0a1730;
  color: #a9b2c3;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 16px;
}

.logo-text--light {
  color: #ffffff;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #a9b2c3;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background-color: #1a56db;
  color: #ffffff;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  font-size: 14px;
  color: #a9b2c3;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #a9b2c3;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #6f9bf5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
}

.footer-copyright {
  color: #7c8598;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #7c8598;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* =========================================================
   RESPONSIVE - FOOTER
========================================================= */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 56px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* =========================================================
   FLOATING BUTTONS
========================================================= */
.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1a56db;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(26, 86, 219, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
  z-index: 900;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: #1543ad;
}

@media (max-width: 480px) {
  .whatsapp-btn {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .scroll-top-btn {
    right: 16px;
    bottom: 76px;
    width: 40px;
    height: 40px;
  }
}
