.hero {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.active .fade-up {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.active .hero-eyebrow.fade-up {
  transition-delay: 0.1s;
}
.hero-slide.active h1.fade-up {
  transition-delay: 0.25s;
}
.hero-slide.active .hero-sub.fade-up {
  transition-delay: 0.4s;
}
.hero-slide.active .hero-ctas.fade-up {
  transition-delay: 0.55s;
}
.hero-slide.active .hero-image-content.fade-up {
  transition-delay: 0.35s;
}
.hero-slide:not(.active) .fade-up {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition-delay: 0s !important;
}
.section {
  padding: 90px 0;
}
.text-center {
  text-align: center;
}
.sec-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.sec-title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.sec-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero {
  background: linear-gradient(160deg, #0b1f5b 0%, #0f172a 100%);
  color: #fff;
  padding: 100px 0 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 85vh;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--surface) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #93c5fd;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: blink 1.5s infinite;
  box-shadow: 0 0 8px #34d399;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #ffffff;
}
.hero h1 em {
  font-style: normal;
  color: #93c5fd;
  background: linear-gradient(to right, #93c5fd, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 36px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
  color: #fff;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}
.btn-hero-sec {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(5px);
}
.btn-hero-sec:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
}
.hero-image-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.6);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.6s;
  width: 100%;
  max-width: 440px;
}
.hero-image-wrapper:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: rgba(147, 197, 253, 0.45);
  box-shadow: 0 30px 60px -10px rgba(30, 64, 175, 0.35);
}
.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-image-wrapper:hover .hero-img {
  transform: scale(1.04);
}
.hero-image-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.2) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-around;
  padding: 20px 48px;
  background: rgba(6, 15, 43, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(147, 197, 253, 0.15);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
}
.stat-num {
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-num span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #93c5fd;
  -webkit-text-fill-color: initial;
}
.stat-lbl {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 6px;
  display: block;
  font-weight: 500;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.svc-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.svc-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand);
  margin-bottom: 20px;
  transition: all 0.2s;
}
.svc-card:hover .svc-icon {
  background: var(--brand);
  color: #fff;
}
.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.svc-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.svc-card:hover .svc-link {
  gap: 12px;
}
.why-section {
  background: linear-gradient(160deg, #0b1f5b 0%, #0f172a 100%);
  color: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.why-num {
  font-family: "Barlow", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #93c5fd;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}
.why-refund {
  background: rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.3);
}
.why-refund .why-icon {
  background: rgba(5, 150, 105, 0.2);
  color: #34d399;
}
.testi-section {
  background: var(--surface);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.2s;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testi-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-mid);
  font-family: Georgia, serif;
  margin-bottom: 10px;
}
.testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.testi-body {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}
.testi-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  text-align: left;
}
.contact-form {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-heading);
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px var(--brand-light);
}
.btn-submit {
  width: 100%;
  min-height: 54px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.btn-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 991px) {
  .hero {
    padding: 100px 0 200px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-image-content {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-stats {
    justify-content: center;
    gap: 36px;
  }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 80px 0 220px;
  }
  .hero-stats {
    gap: 20px;
    padding: 16px 24px;
    border-radius: 16px;
    justify-content: center;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px;
  }
  .hero {
    padding: 60px 0 320px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 16px 32px;
  }
}
.hero .hero-title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #fff;
}

.hero .hero-title em {
  font-style: normal;
  color: #93c5fd;
}

.hero-stats-wrap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 10;
  width: 100%;
  transform: translateX(-50%);
}

.process-section {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  list-style: none;
}

.process-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.process-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font:
    800 1.1rem "Barlow",
    sans-serif;
}

.process-card h3 {
  margin-bottom: 8px;
  color: var(--text-heading);
  font-size: 1.05rem;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-section {
  background: var(--surface);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.faq-intro {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  color: var(--text-heading);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 22px;
  color: var(--brand);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .process-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    gap: 36px;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 72px 0 48px;
  }

  .hero-stats-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 44px;
    transform: none;
  }

  .hero-stats {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 52px 0 40px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero h1,
  .hero .hero-title {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .hero-sub {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .hero-ctas {
    width: 100%;
  }

  .btn-hero-main,
  .btn-hero-sec {
    width: 100%;
    justify-content: center;
    padding: 0 20px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 10px;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-lbl {
    font-size: 0.72rem;
  }

  .process-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* Home page visual rhythm and HCI hierarchy */
@property --hero-accent {
  syntax: "<color>";
  inherits: true;
  initial-value: #60a5fa;
}

@property --hero-glow {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(59, 130, 246, 0.25);
}

.hero {
  --hero-accent: #60a5fa;
  --hero-glow: rgba(59, 130, 246, 0.25);
  min-height: auto;
  padding: 64px 0 34px;
  flex-direction: column;
  align-items: stretch;
  background:
    radial-gradient(circle at 78% 20%, var(--hero-glow), transparent 30%),
    radial-gradient(
      circle at 8% 70%,
      rgba(14, 165, 233, 0.12),
      transparent 30%
    ),
    linear-gradient(145deg, #07183f 0%, #0b2163 55%, #08142f 100%);
  transition:
    --hero-accent 0.7s ease,
    --hero-glow 0.7s ease;
}

.hero-slider {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 460px;
}

.hero-inner {
  width: 100% !important;
  max-width: 1200px !important;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.hero-slide {
  --slide-accent: #60a5fa;
  --slide-accent-soft: rgba(59, 130, 246, 0.2);
  position: relative !important;
  inset: auto !important;
  grid-area: 1 / 1;
  width: 100%;
  height: auto !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide:nth-child(2) {
  --slide-accent: #38bdf8;
  --slide-accent-soft: rgba(14, 165, 233, 0.22);
}

.hero-slide-camera {
  --slide-accent: #22d3ee;
  --slide-accent-soft: rgba(6, 182, 212, 0.22);
}

.hero-slide-pc {
  --slide-accent: #a78bfa;
  --slide-accent-soft: rgba(139, 92, 246, 0.22);
}

.hero-slide.active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-title {
  max-width: 650px;
  min-height: auto;
  margin: 0 0 24px;
  color: #fff;
  font:
    850 clamp(2.35rem, 3.25vw, 3.45rem)/1.12 "Barlow",
    sans-serif;
  letter-spacing: -0.8px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-slide-title em {
  display: block;
  margin-top: 4px;
  background: linear-gradient(to right, #dbeafe, var(--slide-accent));
  color: var(--slide-accent);
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide .fade-up,
.hero-slide.active .fade-up,
.hero-slide:not(.active) .fade-up {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
}

.hero::after {
  height: 90px;
}

.hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 48px);
  min-height: 440px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.35rem, 3.25vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -0.8px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-sub {
  max-width: 600px;
  min-height: auto;
  margin: 0 0 28px;
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-text-content {
  width: 100%;
  min-width: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.hero-eyebrow {
  width: fit-content;
  min-height: 31px;
  margin-bottom: 22px;
  border-color: color-mix(in srgb, var(--slide-accent) 38%, transparent);
  background: var(--slide-accent-soft);
  color: #dbeafe;
}

.hero-eyebrow .dot {
  animation: none;
  background: var(--slide-accent);
  box-shadow: 0 0 10px var(--slide-accent);
}

.hero-ctas {
  min-height: 56px;
  margin-bottom: 26px;
  flex-wrap: nowrap;
}

.hero-ctas .btn-hero-main,
.hero-ctas .btn-hero-sec {
  min-height: 54px;
  padding-right: 26px;
  padding-left: 26px;
  font-size: 0.94rem;
  white-space: nowrap;
}

.support-radar-trigger {
  cursor: pointer;
  font-family: inherit;
}

.support-radar-dialog {
  position: fixed;
  inset: 0;
  width: min(880px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: transparent;
  color: #e2e8f0;
  box-shadow: 0 30px 90px rgba(2, 8, 23, 0.55);
}

.support-radar-dialog::backdrop {
  background: rgba(2, 8, 23, 0.74);
  backdrop-filter: blur(8px);
}

.support-radar-dialog.is-fallback-open {
  z-index: 10000;
  inset: 0;
  display: block;
  margin: auto;
  transform: none;
}

.support-radar-dialog.is-fallback-open::before {
  position: fixed;
  z-index: -1;
  inset: -100vh -100vw;
  background: rgba(2, 8, 23, 0.74);
  content: "";
}

.support-radar-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 18% 45%,
      rgba(14, 165, 233, 0.22),
      transparent 34%
    ),
    linear-gradient(145deg, #07183f, #0b2163 58%, #08142f);
}

.support-radar-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.support-radar-close:hover,
.support-radar-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.support-radar-visual {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(rgba(56, 189, 248, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.13) 1px, transparent 1px),
    radial-gradient(circle, rgba(14, 165, 233, 0.22), rgba(3, 18, 48, 0.9) 68%);
  background-size:
    30px 30px,
    30px 30px,
    auto;
  box-shadow:
    inset 0 0 50px rgba(14, 165, 233, 0.28),
    0 0 50px rgba(14, 165, 233, 0.2);
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(125, 211, 252, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring-one {
  width: 35%;
  height: 35%;
}
.radar-ring-two {
  width: 65%;
  height: 65%;
}
.radar-ring-three {
  width: 94%;
  height: 94%;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0 78%,
    rgba(56, 189, 248, 0.08) 86%,
    rgba(56, 189, 248, 0.65) 100%
  );
  animation: support-radar-sweep 3.2s linear infinite;
}

.radar-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  box-shadow:
    0 0 0 10px rgba(37, 99, 235, 0.2),
    0 0 30px rgba(56, 189, 248, 0.8);
  transform: translate(-50%, -50%);
}

.radar-point {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow:
    0 0 0 5px rgba(74, 222, 128, 0.14),
    0 0 16px #4ade80;
  animation: support-radar-point 1.8s ease-in-out infinite;
}

.radar-point-one {
  top: 28%;
  left: 30%;
}
.radar-point-two {
  top: 36%;
  right: 22%;
  animation-delay: 0.4s;
}
.radar-point-three {
  right: 34%;
  bottom: 22%;
  animation-delay: 0.8s;
}

.support-radar-content {
  min-width: 0;
}

.support-radar-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.support-radar-content h2 {
  margin-bottom: 14px;
  color: #fff;
  font:
    850 clamp(1.65rem, 3vw, 2.35rem)/1.15 "Barlow",
    sans-serif;
}

.support-radar-content > p {
  color: #cbd5e1;
  font-size: 0.94rem;
  line-height: 1.7;
}

.support-area-list {
  display: grid;
  gap: 9px;
  margin: 22px 0;
}

.support-area-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 650;
}

.support-area-list i,
.support-radar-note i {
  color: #60a5fa;
}

.support-radar-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 22px;
  color: #94a3b8 !important;
  font-size: 0.8rem !important;
}

.support-radar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-radar-actions .btn-hero-main {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.86rem;
}

.support-radar-dismiss {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e2e8f0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
}

@keyframes support-radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes support-radar-point {
  50% {
    opacity: 0.42;
    transform: scale(0.72);
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.hero-trust i {
  color: var(--slide-accent);
}

.hero-image-content {
  width: 100%;
  min-width: 0;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
}

.hero-visual {
  width: 100%;
  max-width: 540px;
  margin: 0;
  overflow: hidden;
  border-color: color-mix(
    in srgb,
    var(--slide-accent) 35%,
    rgba(255, 255, 255, 0.12)
  );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 70px var(--slide-accent-soft);
  transform: translateZ(0);
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.hero-visual .hero-img {
  overflow: hidden;
  border-radius: 22px;
  transform: scale(1.01);
  transition: transform 7s linear;
}

.hero-slide.active .hero-visual .hero-img {
  transform: scale(1.045);
}

.hero-image-wrapper:hover {
  transform: none;
  border-color: var(--slide-accent);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.045);
}

.hero-img-home {
  object-position: center;
}

.hero-img-clean {
  object-position: center 20%;
}

.hero-img-pc {
  object-position: center 48%;
}

.hero-img[data-src] {
  opacity: 0;
}

.hero-img:not([data-src]) {
  opacity: 1;
}

.hero-slider-controls {
  position: relative;
  z-index: 4;
  display: flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  align-items: center;
  justify-content: center;
  left: 0;
  margin: 18px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  white-space: nowrap;
}

.hero-slider-dots {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  padding: 4px;
}

.hero-slider-dot {
  box-sizing: border-box;
  flex: 0 0 auto;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.hero-slider-dot {
  position: relative;
  display: block !important;
  width: 30px !important;
  min-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.hero-slider-dot::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transform: translate(-50%, -50%);
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.hero-slider-dot.active {
  background: transparent;
}

.hero-slider-dot.active::before {
  border-color: var(--hero-accent);
  background: var(--hero-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--hero-accent) 24%, transparent);
  transform: translate(-50%, -50%) scale(1.15);
}

.hero-slider-dot:hover::before,
.hero-slider-dot:focus-visible::before {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero-slide,
  .hero-visual,
  .hero-visual .hero-img {
    transition: none !important;
  }

  .hero-slide.active .hero-visual .hero-img {
    transform: scale(1.01);
  }

  .radar-sweep,
  .radar-point {
    animation: none;
  }
}

.hero-stats-wrap {
  position: relative;
  bottom: auto;
  left: auto;
  width: 100%;
  max-width: 1200px;
  margin: 22px auto 0;
  transform: none;
}

.hero-stats {
  max-width: none;
  gap: 0;
  padding: 16px;
  border-color: rgba(147, 197, 253, 0.25);
}

.hero-stats > div {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats > div:last-child {
  border-right: 0;
}

.stat-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.15);
  color: #93c5fd;
}

.stat-lbl {
  margin: 0;
  line-height: 1.45;
}

.stat-lbl strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
}

.section {
  padding: 84px 0;
}

.section-heading {
  margin-bottom: 46px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: end;
}

.split-heading .sec-title {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.split-heading .sec-sub {
  max-width: 520px;
  margin: 0 0 14px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.svc-grid {
  gap: 18px;
  margin-top: 0;
}

.svc-card {
  position: relative;
  min-height: 310px;
  padding: 28px 24px 24px;
  border-color: #dbe4f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.svc-card::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #60a5fa);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.svc-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.svc-badge {
  position: absolute;
  top: 22px;
  right: 20px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 800;
}

.svc-card p {
  min-height: 86px;
}

.process-section {
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(59, 130, 246, 0.1),
      transparent 30%
    ),
    #f5f8fd;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: center;
}

.process-intro .sec-sub {
  margin: 0 0 26px;
}

.btn-inline-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.process-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.process-card {
  align-items: center;
  padding: 22px 24px;
  box-shadow: none;
}

.why-section {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(59, 130, 246, 0.2),
      transparent 28%
    ),
    linear-gradient(145deg, #081838, #0b2163);
}

.why-heading {
  margin-bottom: 42px;
}

.why-heading .sec-eyebrow,
.why-heading .sec-title {
  color: #fff;
}

.why-heading .sec-sub {
  color: rgba(255, 255, 255, 0.7);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}

.why-card {
  min-height: 260px;
  padding: 28px 24px;
}

.why-num {
  font-size: 4rem;
}

.faq-wrap {
  grid-template-columns: 0.72fr 1.28fr;
}

.contact-section {
  background: linear-gradient(180deg, #fff, #f5f8fd);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  margin-top: 0;
  align-items: center;
}

.contact-info {
  padding-right: 12px;
}

.contact-lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-detail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 11px;
  background: var(--brand-light);
  color: var(--brand);
}

.contact-detail strong,
.contact-detail span {
  display: block;
}

.contact-detail strong {
  margin-bottom: 3px;
  color: var(--text-heading);
  font-size: 0.92rem;
}

.contact-detail span,
.contact-detail a {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.contact-form {
  padding: 34px;
  border-color: #dbe4f0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h3 {
  margin: 8px 0 4px;
  color: var(--text-heading);
  font:
    800 1.5rem "Barlow",
    sans-serif;
}

.form-heading p {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.form-step {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
}

.required-mark {
  color: #dc2626;
}

@media (max-width: 1300px) {
  .hero-inner {
    width: 100% !important;
    max-width: 1200px !important;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .hero h1,
  .hero-slide-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    white-space: normal;
  }

  .hero-text-content {
    min-width: 0;
  }

  .hero-stats-wrap {
    width: 100%;
    max-width: 1200px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero {
    padding-bottom: 48px;
  }

  .hero-slider,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .split-heading,
  .process-layout,
  .faq-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    text-align: left;
    gap: 24px;
  }

  .hero-text-content {
    min-width: 0;
    min-height: 0;
    align-items: flex-start;
    padding: 0;
  }

  .hero-sub {
    margin-left: 0;
  }

  .hero-ctas {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-image-content {
    max-width: none;
    justify-content: flex-start;
    padding: 0;
  }

  .hero-visual {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: 0;
  }

  .hero h1,
  .hero-slide-title,
  .hero-sub,
  .hero-ctas,
  .hero-trust {
    min-height: 0;
  }

  .hero h1,
  .hero-slide-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    white-space: normal;
  }

  .hero-stats-wrap {
    width: 100%;
    max-width: 1200px;
    margin-top: 42px;
  }

  .split-heading {
    gap: 18px;
  }

  .process-layout,
  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 36px 0 28px;
  }

  .hero-inner {
    width: 100% !important;
    max-width: 1200px !important;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-grid {
    gap: 22px;
  }

  .support-radar-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 58px 20px 24px;
  }

  .support-radar-visual {
    width: min(72vw, 270px);
  }

  .support-radar-actions {
    display: grid;
  }

  .support-radar-actions .btn-hero-main,
  .support-radar-dismiss {
    width: 100%;
    justify-content: center;
  }

  .hero-sub {
    margin-bottom: 22px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-ctas {
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-ctas .btn-hero-main,
  .hero-ctas .btn-hero-sec {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .hero-image-content {
    width: 100%;
  }

  .hero-visual,
  .hero-visual .hero-img {
    border-radius: 16px;
  }

  .hero h1,
  .hero-slide-title {
    max-width: 100%;
    min-height: 0;
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    letter-spacing: -0.5px;
    white-space: normal;
  }

  .hero-slider-controls {
    margin-top: 24px;
  }

  .hero-stats-wrap {
    width: 100%;
    margin-top: 24px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-slider-dot {
    width: 30px !important;
    min-width: 30px !important;
  }

  .hero-trust li {
    white-space: normal;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }

  .hero-stats > div {
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-stats > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .svc-card {
    min-height: auto;
  }

  .svc-card p {
    min-height: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    width: 100% !important;
  }

  .hero-eyebrow {
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.66rem;
    line-height: 1.4;
  }

  .hero h1,
  .hero-slide-title {
    font-size: clamp(1.65rem, 8.5vw, 2.1rem);
    line-height: 1.15;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-slider-controls {
    max-width: 100% !important;
    padding: 0;
  }

  .hero-slider-dot {
    width: 30px !important;
    min-width: 30px !important;
  }

  .hero-stats-wrap {
    width: 100%;
  }
}

@supports (content-visibility: auto) {
  .process-section,
  .why-section,
  .faq-section,
  .contact-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 3: CẢI TIẾN GIAO DIỆN TRANG CHỦ (Typography, Color, Motion)
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Typography Cải tiến ── */

.hero h1, 
.hero-slide.active h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
}

.hero-sub, 
.sec-sub {
  max-width: 520px !important;
  line-height: 1.7 !important;
}

.sec-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
  font-weight: 700 !important;
}

/* ── 2. Color & Surface Cải tiến ── */

/* Đồng nhất accent color */
.service-card .accent-bar {
  background: var(--brand) !important;
}

/* Card Hover Effects */
.service-card:hover, 
.why-card:hover, 
.testi-card:hover {
  border-color: var(--brand-mid) !important;
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-4px) !important;
}

/* Why-us section bg refinement */
.why-section {
  background: linear-gradient(160deg, var(--brand-deep) 0%, #060f2b 100%) !important;
}

/* ── 3. Motion Tinh tế ── */

/* Fade-up tự nhiên hơn */
.fade-up {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Tactile feedback cho buttons */
.btn:active, 
.btn-primary:active, 
.btn-hero:active,
.btn-nav-cta:active {
  transform: scale(0.98) !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive homepage polish: tablets, phones, and why-card contrast. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.why-section .why-heading .sec-eyebrow {
  color: #bfdbfe !important;
}

.why-section .why-heading .sec-title {
  color: #ffffff !important;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.why-section .why-heading .sec-sub {
  color: rgba(226, 232, 240, 0.92) !important;
}

.why-section .why-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border-color: rgba(191, 219, 254, 0.72) !important;
  color: #0f172a !important;
  box-shadow: 0 24px 60px rgba(2, 8, 23, 0.18) !important;
}

.why-section .why-card h3 {
  color: #102033 !important;
  text-shadow: none !important;
}

.why-section .why-card p {
  color: #475569 !important;
  text-shadow: none !important;
}

.why-section .why-icon {
  background: #dbeafe !important;
  color: #2563eb !important;
}

.why-section .why-refund {
  background: linear-gradient(180deg, #f7fffb 0%, #ecfdf5 100%) !important;
  border-color: rgba(16, 185, 129, 0.36) !important;
}

.why-section .why-refund .why-icon {
  background: #d1fae5 !important;
  color: #059669 !important;
}

.why-section .why-num {
  color: rgba(15, 23, 42, 0.06) !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    min-height: auto !important;
    padding: 54px 0 64px !important;
  }

  .hero-grid,
  .process-layout,
  .faq-wrap,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-text-content {
    max-width: 760px !important;
    align-items: flex-start !important;
    margin-inline: auto !important;
  }

  .hero-slide-title,
  .hero h1,
  .hero h2,
  .hero-sub {
    text-align: left !important;
  }

  .hero-image-content,
  .hero-ctas {
    justify-content: flex-start !important;
  }

  .hero-image-wrapper,
  .hero-visual {
    width: 100% !important;
    max-width: 680px !important;
    margin-inline: auto !important;
  }

  .svc-grid,
  .why-grid,
  .testi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .split-heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }
}

@media (max-width: 767px) {
  .container {
    width: 100% !important;
    padding-inline: 16px !important;
  }

  .hero {
    min-height: auto !important;
    padding: 34px 0 42px !important;
  }

  .hero-grid,
  .svc-grid,
  .process-layout,
  .process-grid,
  .why-grid,
  .testi-grid,
  .faq-wrap,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-text-content {
    align-items: flex-start !important;
    max-width: 100% !important;
  }

  .hero-slide-title,
  .hero h1,
  .hero h2,
  .hero-sub {
    text-align: left !important;
  }

  .hero-ctas {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
  }

  .hero-ctas .btn-hero-main,
  .hero-ctas .btn-hero-sec,
  .support-radar-actions .btn-hero-main,
  .support-radar-dismiss {
    width: 100% !important;
  }

  .hero-image-wrapper,
  .hero-visual,
  .hero-visual .hero-img {
    min-height: 220px !important;
    border-radius: 18px !important;
  }

  .section {
    padding: clamp(52px, 14vw, 72px) 0 !important;
  }

  .split-heading {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    align-items: start !important;
  }

  .split-heading .sec-title,
  .sec-title {
    max-width: 100% !important;
    font-size: clamp(1.75rem, 8vw, 2.35rem) !important;
    line-height: 1.12 !important;
  }

  .sec-sub {
    max-width: 100% !important;
    font-size: 0.95rem !important;
  }

  .svc-card,
  .why-card,
  .process-card,
  .testi-card,
  .contact-form {
    border-radius: 20px !important;
  }

  .why-section .why-card {
    min-height: auto !important;
    padding: 24px 20px !important;
  }

  .contact-form {
    padding: 22px !important;
  }
}

@media (max-width: 420px) {
  .hero-slide-title,
  .hero h1,
  .hero h2 {
    font-size: clamp(1.85rem, 10vw, 2.2rem) !important;
  }

  .hero-trust,
  .hero-stats {
    grid-template-columns: 1fr !important;
  }

  .why-section .why-icon {
    width: 48px !important;
    height: 48px !important;
  }
}
/* Smartphone hero balance: prevent cramped text/image and preserve clear CTAs. */
@media (max-width: 600px) {
  .hero { min-height: auto !important; padding: 76px 0 24px !important; }
  .hero-slider { min-height: auto !important; }
  .hero-slide { min-height: auto !important; }
  .hero-slide-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: center !important;
    padding: 0 !important;
  }
  .hero-text-content { max-width: 100% !important; text-align: left !important; }
  .hero-title {
    font-size: clamp(2.25rem, 12vw, 3.05rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
    max-width: 8.5ch !important;
    text-wrap: balance;
  }
  .hero-title .accent,
  .hero-title em { display: inline !important; }
  .hero-desc {
    max-width: 30ch !important;
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
  }
  .hero-actions { display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; max-width: 100% !important; }
  .btn-hero-main,
  .btn-hero-sec { width: 100% !important; justify-content: center !important; min-height: 54px !important; }
  .hero-trust { display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; }
  .hero-image-content { justify-content: center !important; padding: 0 !important; }
  .hero-visual { width: min(100%, 310px) !important; max-width: 310px !important; margin-inline: auto !important; border-radius: 20px !important; }
  .hero-visual .hero-img { max-height: 270px !important; object-fit: cover !important; }
  .hero-stats-wrap { display: none !important; }
}

@media (max-width: 420px) {
  .hero-title { max-width: 7ch !important; }
  .hero-visual { width: min(100%, 250px) !important; max-width: 250px !important; }
  .hero-visual .hero-img { max-height: 230px !important; }
}
