*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f4f7fb;
  color: #2c3e50;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a3c6e;
  letter-spacing: -0.5px;
}

.logo span {
  color: #2a7ae4;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2c3e50;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: #2a7ae4;
  color: #fff;
}

#nav-toggle {
  display: none;
}

.hamburger-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1200;
  padding: 4px;
  position: relative;
}

.hamburger-label span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1a3c6e;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

#nav-toggle:checked ~ .navbar .hamburger-label span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#nav-toggle:checked ~ .navbar .hamburger-label span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ .navbar .hamburger-label span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1090;
  cursor: pointer;
}

.nav-drawer {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #1a3c6e;
  background-image: none;
  opacity: 1;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 24px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -6px 0 32px rgba(0,0,0,0.55);
  isolation: isolate;
  will-change: transform;
}

.drawer-close {
  display: block;
  width: 84%;
  text-align: right;
  margin-bottom: 16px;
  cursor: pointer;
  padding: 4px 0;
}

.drawer-close i {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.drawer-close:hover i {
  color: #fff;
}

.nav-drawer a {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 13px 24px;
  width: 84%;
  text-align: center;
  border-radius: 8px;
  transition: background 0.2s;
  letter-spacing: 0.2px;
}

.nav-drawer a:hover,
.nav-drawer a.active {
  background: #2a7ae4;
  color: #fff;
}

#nav-toggle:checked ~ .nav-drawer {
  transform: translateX(0);
}
#nav-toggle:checked ~ .drawer-overlay {
  display: block;
}

.site-footer {
  background: #1a3c6e;
  color: #c8d8f0;
  padding: 48px 24px 24px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: #a8c0de;
  line-height: 2;
  display: block;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid #2e5490;
  text-align: center;
  font-size: 0.85rem;
  color: #7a9dc8;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0b1f45;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.32);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(42,122,228,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 90px 48px 90px 7%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,122,228,0.25);
  border: 1px solid rgba(42,122,228,0.55);
  color: #90beff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content h1 span {
  color: #5aa5ff;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #c8deff;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-actions .btn-primary {
  padding: 15px 40px;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(42,122,228,0.45);
}

.hero-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}

.hero-actions .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8c8f0;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-trust-item i {
  color: #5aa5ff;
  font-size: 0.9rem;
}

.hero-side {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 280px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 20px 24px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hero-stat-card .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #5aa5ff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card .stat-label {
  font-size: 0.82rem;
  color: #c8deff;
  font-weight: 500;
}

.hero-stat-card .stat-icon {
  font-size: 1.4rem;
  color: rgba(90,165,255,0.7);
  margin-bottom: 10px;
}

.hero-slim {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0b1f45;
}

.hero-slim .hero-bg {
  filter: brightness(0.3);
}

.hero-slim::after {
  display: none;
}

.hero-slim .hero-content {
  padding: 70px 24px 90px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-slim .hero-eyebrow {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.hero-slim .hero-content h1 {
  font-size: 2.6rem;
}

@media (max-width: 1024px) {
  .hero-side {
    display: none;
  }

  .hero-content {
    padding: 72px 32px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 520px;
    align-items: center;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 64px 20px;
    text-align: center;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-slim {
    min-height: 280px;
  }

  .hero-slim .hero-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-slim .hero-content h1 {
    font-size: 1.5rem;
  }
}

.btn-primary {
  display: inline-block;
  background: #2a7ae4;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #1a5fc0;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #2a7ae4;
  border: 2px solid #2a7ae4;
  padding: 13px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: #2a7ae4;
  color: #fff;
}

.section {
  padding: 72px 24px;
}

.section-alt {
  background: #eaf1fb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a3c6e;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #607d9e;
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.divider {
  width: 60px;
  height: 4px;
  background: #2a7ae4;
  border-radius: 2px;
  margin: 12px auto 28px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.15rem;
  color: #1a3c6e;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.92rem;
  color: #607d9e;
  line-height: 1.7;
}

.card-badge {
  display: inline-block;
  background: #e8f0fe;
  color: #2a7ae4;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-bar {
  background: #2a7ae4;
  padding: 40px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 24px;
}

.stat-item h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

.stat-item p {
  color: #c8deff;
  font-size: 0.9rem;
  margin-top: 4px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: #2a7ae4;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  opacity: 0.2;
}

.testimonial p {
  font-size: 0.95rem;
  color: #4a5f7a;
  line-height: 1.8;
  padding-top: 20px;
}

.testimonial .author {
  margin-top: 16px;
  font-weight: 700;
  color: #1a3c6e;
  font-size: 0.9rem;
}

.form-wrapper {
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a3c6e;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0dce8;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #2c3e50;
  background: #f9fbfe;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a7ae4;
  background: #fff;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-submit-wrapper {
  text-align: center;
}

.form-submit-wrapper .btn-primary {
  font-size: 1rem;
  padding: 14px 48px;
  border: none;
  cursor: pointer;
}

.success-alert {
  display: none;
  background: #e6f9ed;
  border: 1.5px solid #52c97e;
  color: #1a6b3c;
  padding: 18px 24px;
  border-radius: 10px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 1rem;
  align-items: center;
  gap: 12px;
}

.success-alert::before {
  content: '✓';
  display: inline-block;
  background: #52c97e;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.success-alert:target {
  display: flex;
}

.success-check {
  display: none;
}

.success-check:checked ~ .success-alert {
  display: flex;
}

label.submit-label {
  display: inline-block;
  background: #2a7ae4;
  color: #fff;
  padding: 14px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

label.submit-label:hover {
  background: #1a5fc0;
  transform: translateY(-2px);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.two-col-text h2 {
  font-size: 1.8rem;
  color: #1a3c6e;
  margin-bottom: 14px;
}

.two-col-text p {
  color: #607d9e;
  margin-bottom: 18px;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  padding-bottom: 24px;
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.team-card h3 {
  margin-top: 16px;
  font-size: 1.05rem;
  color: #1a3c6e;
}

.team-card span {
  font-size: 0.85rem;
  color: #2a7ae4;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  background: #fff;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.value-item h4 {
  color: #1a3c6e;
  margin-bottom: 8px;
  font-size: 1rem;
}

.value-item p {
  font-size: 0.87rem;
  color: #607d9e;
  line-height: 1.6;
}

.plan-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.13);
}

.plan-card.featured {
  border: 2.5px solid #2a7ae4;
  position: relative;
}

.plan-badge {
  background: #2a7ae4;
  color: #fff;
  text-align: center;
  padding: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.plan-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-body h3 {
  font-size: 1.2rem;
  color: #1a3c6e;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: #2a7ae4;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #607d9e;
}

.plan-features {
  list-style: none;
  margin: 16px 0 20px;
  flex: 1;
}

.plan-features li {
  font-size: 0.88rem;
  color: #4a5f7a;
  padding: 5px 0;
  border-bottom: 1px solid #eaf1fb;
  display: flex;
  gap: 8px;
  align-items: center;
}

.plan-features li::before {
  content: '✓';
  color: #2a7ae4;
  font-weight: 700;
  flex-shrink: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.step {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #2a7ae4;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h4 {
  font-size: 1rem;
  color: #1a3c6e;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.87rem;
  color: #607d9e;
}

.claims-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.claims-info h2 {
  font-size: 1.7rem;
  color: #1a3c6e;
  margin-bottom: 16px;
}

.claims-info p {
  color: #607d9e;
  line-height: 1.8;
  margin-bottom: 16px;
}

.info-list {
  list-style: none;
  margin-top: 16px;
}

.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e0eaf6;
  font-size: 0.9rem;
  color: #4a5f7a;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}


.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: #1a3c6e;
  border-radius: 16px;
  padding: 40px 32px;
  color: #c8d8f0;
}

.contact-info h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.88rem;
  color: #a8c0de;
}

.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid #e0eaf6;
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.feature-item h3 {
  font-size: 1rem;
  color: #1a3c6e;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.87rem;
  color: #607d9e;
  line-height: 1.6;
}

.cta-banner {
  background: linear-gradient(135deg, #1a3c6e 0%, #2a7ae4 100%);
  padding: 72px 24px;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: #c8deff;
  margin-bottom: 32px;
}

.cta-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger-label {
    display: flex;
  }

  body {
    width: 100%;
    overflow-x: clip;
    position: relative;
  }

  .hero {
    width: 100%;
    min-height: 520px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 48px 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cards-grid,
  .testimonial-grid,
  .team-grid,
  .values-grid,
  .steps-grid,
  .features-strip,
  .recognition-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .two-col,
  .two-col.reverse,
  .claims-split,
  .contact-split {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .two-col img {
    height: 260px;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid #e0eaf6;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .values-grid,
  .steps-grid,
  .features-strip,
  .recognition-grid,
  .stats-inner {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}

.breadcrumb {
  background: #eaf1fb;
  padding: 12px 24px;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: #607d9e;
}

.breadcrumb-inner a {
  color: #2a7ae4;
}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .recognition-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .plans-grid,
  .cards-grid,
  .team-grid,
  .testimonial-grid,
  .recognition-grid,
  .values-grid,
  .steps-grid,
  .features-strip {
    grid-template-columns: 1fr !important;
  }
}

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

.tag {
  display: inline-block;
  background: #e8f0fe;
  color: #2a7ae4;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.recognition-item {
  background: #fff;
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-top: 3px solid #2a7ae4;
}

.recognition-icon {
  font-size: 2rem;
  color: #2a7ae4;
  margin-bottom: 14px;
}

.recognition-item h4 {
  color: #1a3c6e;
  font-size: 0.97rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.recognition-item p {
  font-size: 0.86rem;
  color: #607d9e;
  line-height: 1.7;
}

.team-bio {
  font-size: 0.84rem;
  color: #607d9e;
  line-height: 1.6;
  padding: 12px 16px 4px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  border-left: 4px solid #2a7ae4;
}

.faq-item h4 {
  color: #1a3c6e;
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: #607d9e;
  font-size: 0.88rem;
  line-height: 1.7;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}

.comparison-table thead tr {
  background: #1a3c6e;
  color: #fff;
}

.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e0eaf6;
  color: #4a5f7a;
  vertical-align: middle;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f4f7fb;
}

.comparison-table tbody tr:hover {
  background: #eaf1fb;
}

.table-check {
  color: #1a6b3c;
  font-size: 1rem;
}

.table-cross {
  color: #b94a3c;
  font-size: 1rem;
}

.logo i {
  font-size: 1.2rem;
  color: #2a7ae4;
}

.feature-icon i {
  font-size: 2.2rem;
}

.footer-col p i {
  color: #7a9dc8;
  margin-right: 6px;
  width: 16px;
  text-align: center;
}

.footer-col h4 i {
  color: #2a7ae4;
  margin-right: 6px;
}

.contact-detail-icon i {
  color: #7a9dc8;
}
