/* ==============================
   HERO  — unified bg, image left / text right
============================== */
.hero {
  display: flex;
  align-items: flex-end;
  height: 95vh;
  overflow: hidden;
  background: linear-gradient(120deg, #C8EEF7 0%, #DDF5FB 50%, #EEF9FD 100%);
  position: relative;
}

  .hero-content-overlay {
	content: " ";
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 0.8;
	background-image: url("../img/27009660.png");
	background-position: right;
	background-repeat: no-repeat;
	background-size: 50%;
  }

/* --- image side (right) --- */
.hero-visual {
  order: 2;
  flex: 0 0 40%;
  align-self: flex-end;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-visual-overlay { display: none; }

/* --- text side (left) --- */
.hero-content {
  order: 1;
  flex: 0 0 60%;
  align-self: center;
  background: none;
  padding: 5rem 2rem 5rem 4rem;
}
.hero-content::before { display: none; }
.hero-content::after  { display: none; }

.hero-inner {
  position: relative; z-index: 1;
  padding: 0;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: rgba(8,145,178,0.1);
  border: 1px solid rgba(8,145,178,0.35);
  padding: 0.375rem 1rem;
  font-size: 11px; font-family: 'Raleway', sans-serif;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0E7490; margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800; color: #0A2540;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  white-space: nowrap;
  /*-webkit-text-stroke: 1px rgba(255,255,255,0.65);*/
  /*paint-order: stroke fill;*/
}

.hero-title h1:first-child {
	color: white;
	position: absolute;
    right: 0;
    left: 0;
    margin: -3px auto auto -3px;
    z-index: 1;
    text-shadow: 1px 1px 0 #333333,
	 -1px -1px 0 #333333, -1px 1px 0 #333333,
	 1px -1px 0 #333333, 0px 1px 0 #333333,
	 -1px 0 #333333,
	 -1px 0 0 #333333,
	 1px 0 0 #333333;
}

.hero-title h1:last-child {
    -webkit-text-stroke: 2px #333333;
}

.hero-title h1:first-child em {
	font-style: normal;
	color: #0891B2;
}

.hero-title h1:last-child em {
	font-style: normal;
	-webkit-text-stroke: 2px #333333;
}

.hero-title h1 span {
	text-decoration: underline;
	display: inline-block;
	margin-bottom: 10px;
}

.hero-sub {
  font-size: 18px;
  color: #2D4A62;
  /*line-height: 1.8;*/
  max-width: 460px;
  margin-bottom: 2rem;
}

.hero-sub span{
	color: white;
    text-shadow:
	 1px 1px 0 #333333,
	 -1px -1px 0 #333333,
	 -1px 1px 0 #333333,
	 1px -1px 0 #333333,
	 0px 1px 0 #333333,
	 -1px 0 #333333,
	 -1px 0 0 #333333,
	 1px 0 0 #333333;
}

span .for_whom{
	display: block;
	margin-top: 8px;
}


.hero-bullets {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem; max-width: 680px;
}

.hero-bullets li {
  display: flex; align-items: center; gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 0.875rem;
  background: rgba(255,255,255,0.72);
  /*border: 1px solid rgba(8,145,178,0.18);
  border-left: 3px solid rgba(8,145,178,0.65);*/
  border: 1px solid rgba(8,8,8,0.8);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(13,35,80,0.07);
  font-size: 13px; font-weight: 600;
  color: #2D4A62;
  line-height: 1.45;
  white-space: nowrap;
}



.hero-bullets li i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  border-radius: 50%;
  background: rgba(8,145,178,0.12);
  color: #0891B2;
  font-size: 11px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-btns .btn-white {
  background: #0891B2; color: #fff;
  border: 2px solid #0891B2;
  box-shadow: 0 4px 16px rgba(8,145,178,0.28);
}
.hero-btns .btn-white:hover { background: #0E7490; border-color: #0E7490; }
.emergency-box {
  border: 1px solid rgba(220,38,38,0.18);
  background: rgba(220,38,38,0.035);
  padding: 0.9rem 1.1rem;
  max-width: 460px;
  border-radius: 12px;
}

.emergency-box strong {
  display: block;
  font-size: 12px;
  color: #B91C1C;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: 0.015em;
}

.emergency-icon { margin-right: 0.4rem; }

.emergency-box p {
  font-size: 11.5px;
  color: #7F1D1D;
  line-height: 1.55;
  opacity: 0.88;
}

.emergency-box p strong {
  display: inline;
  font-size: inherit;
  color: #991B1B;
}

.hero-badge {
  position: absolute; bottom: 2rem; left: 44%; z-index: 2;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--teal);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.hero-badge-num {
  font-family: 'Raleway', sans-serif;
  font-size: 1.75rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.hero-badge-label { font-size: 11px; color: var(--text-muted); margin-top: 0.25rem; }



@media (max-width: 1024px) {
  .hero { flex-direction: column; align-items: stretch; min-height: auto; height: 100%;}
  .hero-visual { display: none;}
  .hero-visual img { height: 220px; object-fit: cover; object-position: center top; }
  .hero-content { order: 2; flex: none; padding: 2.5rem 1.5rem 3rem;}
  .hero h1 { white-space: normal; }
  .hero-content-overlay {
	opacity: 0.4;
	background-size: contain;
	background-position: center;
  }
  .hero-bullets { grid-template-columns: 1fr; max-width: 100%; }
  .hero-bullets li { white-space: normal; }
  .hero-badge { display: none; }
}

@media (max-width: 480px) {
  .hero {
	/*min-height: 80vh;*/
	padding-top: 15%;
	padding-bottom: 15%;
	}
  .hero-content-overlay {
	background-image: url("../img/27033913.png");
	opacity: 0.3;
	background-size: 100%;
	background-position: center;
  }
  .hero-title h1 {
	font-size: 1.6rem;
  }
  .hero-title h1 span {
	font-size: 2.0rem;
  }
}

/* ==============================
   FEATURES BAR
============================== */
.features-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.features-bar > .container {
	max-width: 1400px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .features-bar { padding: 2.5rem 0; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-box { border-right: none; border: 1px solid var(--border); }
}
.feature-box {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.feature-box:last-child { border-right: none; }
.feature-box::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.feature-box:hover { background: #F7FBFF; }
.feature-box:hover::after { transform: scaleX(1); }
.feature-header {
  display: flex; align-items: center;
  gap: 1rem; margin-bottom: 1rem;
}
.feature-icon {
  width: 60px; height: 60px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 2px;
}
.feature-icon i { font-size: 24px; color: var(--white); }
.feature-box h3 {
  font-size: 1.125rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0;
}
.feature-box p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

@media (max-width: 480px) {
	.feature-box {
	padding: 2rem 1.5rem;
	}
	.feature-header {
	padding-bottom: 5px;
	border-bottom: 1px solid var(--border);
	}
	.feature-icon {
	width: 40px; height: 40px;
	background: var(--teal);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0; border-radius: 2px;
	}
	.feature-icon i { font-size: 18px; color: var(--white); }
	.feature-box h3 {
	font-size: 1.125rem; font-weight: 700;
	color: var(--navy); margin-bottom: 0;
	}
	.feature-box p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }
}

/* ==============================
   HOW IT WORKS
============================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--white);
  border-top: 3px solid var(--teal);
  box-shadow: 0 2px 16px rgba(13,35,80,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.step-card:hover {
  box-shadow: 0 12px 40px rgba(13,35,80,0.12);
  transform: translateY(-4px);
}
.step-num {
  position: absolute; top: 0; right: 1.5rem;
  background: var(--navy); color: var(--teal);
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
}
.step-header {
  display: flex; align-items: center; flex-wrap: nowrap;
  gap: 1rem; margin-bottom: 0.875rem;
}
.step-icon-wrap { flex-shrink: 0; }
.step-icon-wrap i { font-size: 2.25rem; color: var(--teal); }
.step-card h3 {
  font-size: 1.125rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.step-optional-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  #how-it-works .sec-head h2 { font-size: 2rem; }
  .step-card { min-width: 0; }
  .step-card h3 { white-space: normal; overflow: visible; text-overflow: unset; }
  .step-header { flex-wrap: wrap; }
}
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.step-note {
  margin-top: 2.5rem;
  border-left: 4px solid var(--teal);
  padding: 1.125rem 1.375rem;
  background: var(--teal-light);
  font-size: 14px; color: var(--text); line-height: 1.7;
}
.step-note strong { color: var(--navy); }

/* ==============================
   STATS BAR  — photo bg
============================== */
.stats-bar { position: relative; padding: 80px 0; overflow: hidden; }
.stats-bar-bg {
  position: absolute; inset: 0;
}
.stats-bar-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.stats-bar-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,35,80,0.95) 0%, rgba(8,80,120,0.9) 100%);
}
.stats-content { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item i {
  font-size: 2.25rem; color: var(--teal);
  margin-bottom: 0.875rem; display: block;
}
@media (max-width: 768px) {
  .stats-bar { padding: 20px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { text-align: center; padding: 1.25rem 0.5rem; }
  .stat-item:not(:last-child) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item i { font-size: 1.75rem; margin-bottom: 0.5rem; }
  .stat-num { font-size: 2.25rem; margin-bottom: 0.2rem; }
}
.stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 0.375rem;
}
.stat-label {
  font-size: 13px; font-family: 'Raleway', sans-serif;
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #7DD3FC;
}

/* ==============================
   WHY CHOOSE US  — split
============================== */
.why-section { padding: 90px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4.5rem; align-items: center;
}
@media (max-width: 960px) {
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-photo-wrap { display: none; }
}
.why-left .sec-head { text-align: center; margin-bottom: 2rem; }
.why-left .separator { justify-content: center; }
.why-left .sec-head p { margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 480px) {
.why-grid {
		gap: 0;
	}
}
.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.125rem 0.25rem;
  position: relative;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, padding-left 0.2s;
}
.why-item:last-child {
  border-bottom: none;
}
.why-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.125rem;
  bottom: 1.125rem;
  width: 3px;
  background: transparent;
  border-radius: 999px;
  transition: background 0.2s;
}
.why-item:hover {
  background: #F7FBFF;
  padding-left: 0.875rem;
}
.why-item:hover::before {
  background: var(--teal);
}
.why-item-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 2px;
}
.why-item-icon i { font-size: 16px; color: var(--teal); }
.why-item h4 {
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 0.35rem;
}
@media (max-width: 768px) {
  .why-item h4 { font-size: 15.5px; }
}
.why-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 480px) {
  .why-item {
    grid-template-columns: 28px 1fr;
    column-gap: 0.75rem;
    row-gap: 0.55rem;
    align-items: center;
    padding: 1.125rem 0.25rem;
  }
  .why-item-icon {
    width: 28px;
    height: 28px;
  }
  .why-item-icon i {
    font-size: 13px;
  }
  .why-item > div:not(.why-item-icon) {
    display: contents;
  }
  .why-item h4 {
    grid-column: 2;
    margin-bottom: 0;
  }
  .why-item p {
    grid-column: 1 / -1;
    font-size: 14px;
    line-height: 1.7;
    padding-left: 2.5rem;
  }
}

.why-photo-wrap { position: relative; }
.why-photo-img {
  width: 100%; height: 520px;
  object-fit: contain; object-position: center center;
  border-radius: 4px; display: block;
  background-color: #F8FAFF;
}
.why-photo-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--navy);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--teal);
  box-shadow: 0 8px 32px rgba(13,35,80,0.3);
}
.why-photo-badge-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: var(--teal); line-height: 1;
}
.why-photo-badge-text {
  font-size: 12px; color: #94A3B8; margin-top: 0.25rem;
}

/* ==============================
   PRICING
============================== */
.pricing-section {
  padding: 90px 0;
  background-color: #EBF4FB;
  background-image:
    linear-gradient(135deg, rgba(13,35,80,0.03) 0%, rgba(8,145,178,0.05) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 8L8 0' stroke='rgba(8,145,178,0.12)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: auto, 8px 8px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  border-top: 3px solid var(--border);
  box-shadow: 0 2px 16px rgba(13,35,80,0.06);
  border-radius: 4px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.price-card:hover {
  box-shadow: 0 12px 40px rgba(13,35,80,0.12);
  transform: translateY(-4px);
}
.price-card.featured {
  background: var(--teal);
  border-top-color: rgba(255,255,255,0.5);
}
.price-card-top {
  display: flex; align-items: center;
  gap: 0.875rem; margin-bottom: 1.75rem;
}
.price-icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 4px;
}
.price-card.featured .price-icon { background: rgba(255,255,255,0.2); }
.price-icon i { font-size: 22px; color: var(--teal); }
.price-card.featured .price-icon i { color: var(--white); }
.price-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-muted); display: block; margin-bottom: 0.125rem;
}
.price-card.featured .price-label { color: rgba(255,255,255,0.8); }
.price-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.price-card.featured .price-name { color: var(--white); }
.price-amount-wrap { margin-bottom: 1.25rem; }
.price-usd {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.price-card.featured .price-usd { color: var(--white); }
.price-usd-unit {
  font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.06em; vertical-align: middle;
}
.price-per { font-size: 12px; color: var(--text-muted); margin-top: 0.25rem; }
.price-card.featured .price-per { color: rgba(255,255,255,0.7); }
.price-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.88); }
.price-card.featured .price-note { border-top-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.88); }
.price-note {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted); line-height: 1.7;
}
.price-note ul { list-style: none; padding: 0; margin: 0; }
.price-note ul li { position: relative; padding-left: 1rem; margin-bottom: 0.4rem; }
.price-note ul li:last-child { margin-bottom: 0; }
.price-note ul li::before { content: '–'; position: absolute; left: 0; top: 0; opacity: 0.5; }
.info-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--amber);
  background: var(--amber-bg);
  font-size: 13px; color: var(--text); line-height: 1.75;
}
.info-box strong { color: var(--amber); }
.pricing-insurance-info {
  max-width: 680px;
  margin: 1.5rem auto 0;
}
.pricing-notes {
  margin-top: 1.5rem;
  padding: 1.125rem 1.5rem;
  background: var(--gray-bg);
  border-top: 2px solid var(--border);
}
.pricing-notes-title {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.625rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.pricing-notes p {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 0.375rem;
}
.pricing-notes p:last-child { margin-bottom: 0; }
.pricing-notes ul { list-style: none; padding: 0; margin: 0; }
.pricing-notes ul li {
  position: relative; padding-left: 1rem;
  font-size: 12px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 0.375rem;
}
.pricing-notes ul li:last-child { margin-bottom: 0; }
.pricing-notes ul li::before { content: '–'; position: absolute; left: 0; top: 0; opacity: 0.45; }

/* ==============================
   OUR STORY
============================== */
.story-section {
  padding: 90px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='rgba(255,255,255,0.018)' d='M34 14h12v20h20v12H46v20H34V46H14V34h20z'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.story-inner {
  max-width: 680px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.story-eyebrow {
  font-size: 11px; font-family: 'Raleway', sans-serif;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #7DD3FC;
  margin-bottom: 1.25rem;
}
.story-quote {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 600; color: var(--white);
  line-height: 1.6; margin-bottom: 1.5rem;
}
.story-quote em { font-style: normal; color: var(--teal); }
.story-body {
  font-size: 15px; color: #94A3B8;
  line-height: 1.85; margin-bottom: 1.5rem;
}
.story-body-last { margin-bottom: 0; }
.story-sig {
  display: inline-flex; align-items: center; gap: 0.875rem;
  margin-top: 2rem;
  background: rgba(255,255,255,0.05);
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.story-sig-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.story-sig-text { text-align: left; }
.story-sig-name { font-size: 15px; font-weight: 700; color: var(--white); }
.story-sig-role { font-size: 12px; color: #7DD3FC; }

/* ==============================
   LAUNCH OFFER
============================== */
.offer-section { padding: 90px 0; }
.offer-card-outer {
  border: 2px solid var(--teal);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(13,35,80,0.12);
}
@media (max-width: 768px) { .offer-card-outer { grid-template-columns: 1fr; } }
.offer-left {
  background: var(--navy);
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.offer-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='rgba(255,255,255,0.02)' d='M34 14h12v20h20v12H46v20H34V46H14V34h20z'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.offer-left > * { position: relative; z-index: 1; }
.offer-label {
  font-size: 11px; font-family: 'Raleway', sans-serif;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #7DD3FC; margin-bottom: 0.875rem;
}
.offer-percent {
  font-family: 'Raleway', sans-serif;
  font-size: 6rem; font-weight: 800;
  color: var(--teal); line-height: 1; margin-bottom: 0.25rem;
}
.offer-subtitle {
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); font-family: 'Raleway', sans-serif;
  margin-bottom: 0.875rem;
}
.offer-detail { font-size: 13px; color: #94A3B8; line-height: 1.75; }
.offer-right {
  background: var(--white);
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.offer-right h3 {
  font-size: 1.375rem; font-weight: 800;
  color: var(--navy); margin-bottom: 1.25rem;
}
.offer-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 2rem;
}
.offer-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 14px; color: var(--text);
}
.offer-list li i { color: var(--teal); font-size: 14px; flex-shrink: 0; }
.offer-fine { font-size: 12px; color: var(--text-muted); margin-top: 0.875rem; line-height: 1.65; }

/* ==============================
   FAQ
============================== */
.faq-section { padding: 90px 0; background: var(--gray-bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3.5rem; align-items: start;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid > div:last-child .faq-list { border-top: none; }
}
.faq-list { border-top: 2px solid var(--navy); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  padding: 1.125rem 0; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--navy);
  font-family: 'Raleway', sans-serif;
  user-select: none; -webkit-tap-highlight-color: transparent;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--teal); }
.faq-toggle {
  width: 26px; height: 26px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 2px; transition: background 0.2s;
}
.faq-toggle i { font-size: 10px; color: var(--white); transition: transform 0.25s; }
.faq-item.open .faq-toggle { background: var(--teal); }
.faq-item.open .faq-toggle i { transform: rotate(45deg); }
.faq-a {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.8; padding-bottom: 1.125rem; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ==============================
   FINAL CTA  — photo bg
============================== */
.final-cta {
  position: relative;
  padding: 110px 0; text-align: center; overflow: hidden;
}
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.final-cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,35,80,0.93) 0%, rgba(8,100,140,0.87) 100%);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; color: var(--white); margin-bottom: 0.875rem;
}
.final-cta p {
  font-size: 16px; color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem; line-height: 1.7;
}
.final-cta .btn { font-size: 14px; padding: 1.125rem 3rem; }

/* ==============================
   FLOATING CTA
============================== */
.final-booking-cta-slot { min-height: 56px; }
.final-booking-cta {
  border: 2px solid #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
@media (max-width: 640px) {
  .final-booking-cta {
    min-height: 48px;
    max-width: calc(100vw - 2rem);
    padding: 0.875rem 1.125rem;
    border-radius: 999px;
  }
  .final-booking-cta.is-floating {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 180;
    box-shadow: 0 10px 28px rgba(8,145,178,0.34);
  }
}
