* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f3d91;
  --primary-dark: #08275f;
  --secondary: #13b0a5;
  --accent: #f6b93b;
  --gold-soft: #ffe7a8;
  --text: #14213d;
  --text-soft: #5f6b85;
  --white: #ffffff;
  --light: #f7f9fc;
  --line: #e8edf5;
  --shadow: 0 20px 60px rgba(11, 26, 62, 0.08);
  --shadow-lg: 0 28px 80px rgba(11, 26, 62, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 18%);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

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

.page-content {
  min-height: 70vh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding-top: 14px;
  background: linear-gradient(
    to bottom,
    rgba(247, 251, 255, 0.94),
    rgba(247, 251, 255, 0.74)
  );
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
  padding: 0 6px;
}

.topbar p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

.topbar a {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.navbar-shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 237, 245, 0.9);
  box-shadow: var(--shadow);
  border-radius: 999px;
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(15, 61, 145, 0.22);
  flex-shrink: 0;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
}

.logo-tag {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.nav-menu a {
  position: relative;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: 0.25s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.25s ease;
}

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

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  box-shadow: 0 16px 30px rgba(15, 61, 145, 0.18);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 999px;
  margin: 5px auto;
}

/* Common */
.section {
  padding: 46px 0;
}

.section-light {
  background: var(--light);
}

.section-title-wrap {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-text {
  font-size: 16px;
  color: var(--text-soft);
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 18px 32px rgba(15, 61, 145, 0.18);
}

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

.btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-outline-dark {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.card-grid {
  display: grid;
  gap: 26px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.info-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  margin-top: 20px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 20, 47, 0.68), rgba(7, 20, 47, 0.28)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(246, 185, 59, 0.18),
      transparent 26%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 0;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
  max-width: 820px;
}

.hero p {
  max-width: 620px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 32px;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
}

.hero-stat {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stat h3 {
  font-size: 30px;
  margin-bottom: 6px;
}

.hero-stat p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Floating feature strip */
.feature-strip {
  margin-top: -42px;
  position: relative;
  z-index: 5;
}

.feature-strip-inner {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 237, 245, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-box {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #eef3fa;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: var(--text-soft);
}

/* Packages */
.package-card {
  transition: 0.28s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 61, 145, 0.95);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.package-content {
  padding: 26px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.package-duration {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.package-price {
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
}

.package-title {
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 900;
}

.package-description {
  color: var(--text-soft);
  margin-bottom: 18px;
}

.package-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.package-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 900;
}

/* Banner */
.inner-banner {
  margin-top: 20px;
  padding: 120px 0 85px;
  text-align: center;
  border-radius: 32px;
  color: var(--white);
  background:
    linear-gradient(rgba(10, 43, 102, 0.7), rgba(10, 43, 102, 0.56)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.inner-banner h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  margin-bottom: 12px;
}

.inner-banner p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-content p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 900;
}

.info-card {
  padding: 30px;
}

.info-card h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 12px;
}

.info-card p,
.info-card li {
  color: var(--text-soft);
  font-size: 15px;
}

/* Testimonials */
.testimonial-card {
  padding: 30px;
}

.testimonial-text {
  font-size: 16px;
  margin-bottom: 18px;
}

.testimonial-user {
  font-weight: 900;
}

.testimonial-location {
  font-size: 14px;
  color: var(--text-soft);
}

/* CTA */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 58px 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  margin-bottom: 16px;
  font-weight: 900;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
}

/* 15-04-2026 */
.contact-business-list p {
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 600; /* makes all text slightly bold */
}

.contact-business-list p strong {
  color: var(--primary);
  font-weight: 900; /* label bold */
  margin-right: 4px;
}

/* Make important values more prominent */
.contact-business-list p span,
.contact-business-list p a {
  font-weight: 700;
  color: var(--text);
}

/* Contact */ 
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 28px;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-item {
  margin-bottom: 18px;
}

.contact-item h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.contact-item p,
.contact-item a {
  color: var(--text-soft);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}

.form-control {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 61, 145, 0.08);
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow);
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-soft);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Policy */
.policy-content {
  max-width: 940px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow-lg);
}

.policy-content h2 {
  font-size: 28px;
  margin: 24px 0 12px;
}

.policy-content p,
.policy-content li {
  color: var(--text-soft);
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 18px;
  list-style: disc;
}

/* 15-04-2026 */
/* Trust / business credibility helpers */
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.trust-pill {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.trust-pill h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text);
}

.trust-pill p {
  font-size: 14px;
  color: var(--text-soft);
}

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

.process-card {
  position: relative;
  padding: 30px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(15, 61, 145, 0.18);
}

.process-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  color: var(--text-soft);
}

.business-note {
  max-width: 1040px;
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow);
}

.business-note h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.business-note p {
  color: var(--text-soft);
  margin-bottom: 10px;
}

.business-note p:last-child {
  margin-bottom: 0;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.policy-meta span {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #eef6ff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.policy-intro-box {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border: 1px solid #e7eef8;
}

.policy-intro-box h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.policy-intro-box p {
  margin-bottom: 0;
}

.policy-highlight-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 4px;
}

.policy-highlight-list li {
  position: relative;
  padding-left: 24px;
}

.policy-highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 900;
}

.contact-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-assurance-card {
  padding: 26px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow);
}

.contact-assurance-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-assurance-card p {
  color: var(--text-soft);
  font-size: 15px;
}

.package-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.package-fact {
  padding: 22px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #e9eef7;
  box-shadow: var(--shadow);
  text-align: center;
}

.package-fact h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-fact p {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.package-note-box {
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: var(--shadow);
}

.package-note-box h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.package-note-box p {
  color: var(--text-soft);
  margin-bottom: 10px;
}

.package-note-box p:last-child {
  margin-bottom: 0;
}

.footer-trust-text {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  margin-top: 24px;
  padding: 80px 0 24px;
  background: linear-gradient(180deg, #08142f 0%, #0d224e 100%);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-logo {
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 18px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #14213d;
  border: 1px solid #dfe7f1;
  box-shadow: 0 12px 28px rgba(11, 26, 62, 0.08);
  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(11, 26, 62, 0.14);
  border-color: #25d366;
  color: #14213d;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  flex-shrink: 0;
}

.whatsapp-btn svg {
  display: block;
}

.map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6ecf5;
}

.map-card iframe {
  display: block;
}

/* Responsive */
@media (max-width: 1150px) {
  .grid-4,
  .feature-strip-inner,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  /* 15-04 */

    .trust-strip-grid,
  .process-grid,
  .contact-assurance-grid,
  .package-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .navbar-shell {
    border-radius: 28px;
  }

  .navbar {
    min-height: 78px;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(232, 237, 245, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    color: var(--text);
  }

  .nav-menu a:not(.nav-cta)::after {
    display: none;
  }

  .hero {
    min-height: auto;
    border-radius: 28px;
  }

  .hero-content {
    padding: 90px 0 80px;
  }

  .hero-stats,
  .feature-strip-inner,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 0;
  }

  .feature-strip {
    margin-top: -24px;
  }

  /* 15-04 */

    .trust-strip-grid,
  .process-grid,
  .contact-assurance-grid,
  .package-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .site-header {
    padding-top: 10px;
  }

  .navbar {
    padding: 0 14px;
  }

  .logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
  }

.logo-title {
  font-size: 18px;
}

  .logo-tag {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .package-content,
  .info-card,
  .testimonial-card,
  .contact-card {
    padding: 22px;
  }

  .policy-content {
    padding: 24px;
  }

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

  .btn {
    width: 100%;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  /* 15-04 */
    .trust-pill,
  .process-card,
  .contact-assurance-card,
  .package-fact,
  .package-note-box,
  .business-note {
    padding: 22px;
  }

  .policy-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .info-card {
    padding: 22px;
  }

  .info-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .info-card ul {
    display: grid;
    gap: 10px;
    padding-left: 0;
  }

  .info-card ul li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.6;
  }

  .info-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: 900;
    font-size: 18px;
    line-height: 1.2;
  }
}
