:root {
  --blue: #091f5b;
  --blue-soft: #123b8e;
  --accent: #ff9900;
  --bg: #f6f8fb;
  --text: #333333;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 16px;
}

/* Hero */
.hero {
  position: relative;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 80px 16px 70px;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 20px;
  opacity: 0.95;
}

.hero-cta {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background-color: var(--accent);
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: translateX(-100%);
}

.hero-cta:hover::before {
  animation: shine 0.8s forwards;
}

/* Intro */
.intro {
  padding: 40px 0 10px;
  text-align: center;
}

.intro h2 {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.intro p {
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Features */
.features {
  padding: 30px 0 50px;
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: 1.35rem;
  color: var(--blue);
  margin-bottom: 6px;
}

.section-heading p {
  font-size: 0.92rem;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.feature-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset-inline: -60px;
  top: -40px;
  height: 140px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #ffc766);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.35);
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
}

/* CTA section */
.cta-section {
  padding: 35px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  border-radius: 20px;
  padding: 20px 18px;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-text h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 0.9rem;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-button {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background-color: var(--accent);
  color: #1a1a1a;
}

.cta-button.ghost {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.cta-subtext {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
  opacity: 0.95;
}

/* SEO note section */
.seo-note {
  padding: 20px 0 40px;
}

.seo-note h2 {
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 6px;
}

.seo-note p {
  font-size: 0.9rem;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shine animation */
@keyframes shine {
  to {
    transform: translateX(120%);
  }
}

/* Larger screens */
@media (min-width: 600px) {
  .hero {
    padding: 90px 16px 80px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    padding: 22px 18px 24px;
  }

  .cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta-actions {
    flex-direction: row;
    width: fit-content;
  }

  .cta-button {
    min-width: 190px;
  }
}

@media (min-width: 980px) {
  .hero {
    min-height: 420px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-text {
    max-width: 720px;
  }

  .features {
    padding: 40px 0 70px;
  }

  .cta-section {
    padding: 45px 0 55px;
  }
}

.page-wrapper {
  overflow-x: hidden;
}

/* âœ… Ù…Ø®ÙÛŒ Ú©Ø±Ø¯Ù† Ù†ÙˆØ§Ø± Ø§Ø³Ú©Ø±ÙˆÙ„ Ø¯Ø§Ø®Ù„ÛŒ (Ø¨Ø¯ÙˆÙ† Ø­Ø°Ù Ø§Ø³Ú©Ø±ÙˆÙ„) */
.page-wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.page-wrapper {
  scrollbar-width: none; /* Firefox */
}

/* ===============================
   HERO IMAGE â€“ Rounded Corners
================================ */
.hero {
  overflow: hidden; /* Ø¨Ø±Ø§ÛŒ Ø§Ø¹Ù…Ø§Ù„ ØµØ­ÛŒØ­ border-radius */
}

.hero-bg {
  border-radius: 0 0 32px 32px;
}

/* Ø¯Ø± Ù…ÙˆØ¨Ø§ÛŒÙ„ Ú©Ù…ÛŒ Ù†Ø±Ù…â€ŒØªØ± */
@media (max-width: 768px