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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #ffffff;
}

body {
  letter-spacing: -0.2px;
}

h1, h2, h3 {
  letter-spacing: -0.6px;
}

.top-info-bar-wrapper {
  position: relative;       /* important */
  margin: 20px auto 25px;   /* spacing above & below */
  max-width: 900px;
  z-index: 2;
}

.top-info-bar {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.top-info-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 12px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-block {
  text-align: center;
  flex: 1;
  border-right: 1px solid #eee;
}

.info-block:last-child {
  border-right: none;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.info-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #f472b6;
  /* Baby Pink */
}

@media (max-width: 768px) {

  .top-info-bar-wrapper {
    position: relative;
    top: 0;
    padding: 10px;
  }

  .top-info-bar {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .info-block {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 8px 0;

    display: flex;
    justify-content: space-between; /* align label left, value right */
    align-items: center; /* vertical center */
    gap: 12px;
    width: 100%;
  }

  .info-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0; /* remove extra margin */
    flex-shrink: 0; /* keep label from shrinking */
  }

  .info-value {
    font-size: 1.1rem;
    font-weight: 900;
    color: #f472b6;
    margin: 0; /* remove extra margin */
  }

  .info-block:last-child {
    border-bottom: none;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.4), rgba(186, 230, 253, 0.4)), rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 20px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.claims-grid-section {
  background: linear-gradient(180deg,#ffffff,#fafafa);
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  margin-top: -10px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.text-block {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.text-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(244,114,182,0.15);
}

.text-block h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111827;
}

.text-block p {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 12px;
}

.small-note {
  font-size: 0.9rem;
  color: #0369a1;
  font-weight: 600;
  margin-top: 8px;
}

/* Generic check list */
.check-list {
  list-style: none;
  margin: 10px 0 5px;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: #374151;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 700;
}

/* Legacy claims grid (not used now, but kept for structure) */
.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.claim-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.claim-card:hover {
  transform: translateY(-8px);
  border-color: #fce7f3;
  box-shadow: 0 20px 40px rgba(244, 114, 182, 0.1);
}

.claim-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.claim-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
}

.claim-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

.more-options {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: #f0f9ff;
  border-radius: 20px;
  font-weight: 600;
  color: #0369a1;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #f472b6;
  /* Baby Pink */
  color: #ffffff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(244, 114, 182, 0.3);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #f472b6;
  border-color: #f472b6;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(244, 114, 182, 0.4);
}

.btn-large {
  font-size: 1.3rem;
  padding: 20px 55px;
}

/* Section Common */
section {
  padding: 100px 5%;
}

h2 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 800;
  color: #111;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* About Section */
/* =========================
   Modern About Section
========================= */

.about-section {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 30px 5%;
}

.about-modern {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #f472b6;
  background: #fdf2f8;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.about-header h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: #111827;
}

.about-intro {
  max-width: 700px;
  margin: 0 auto 25px;
  color: #6b7280;
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(244, 114, 182, 0.15);
  border-color: #f9a8d4;
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: inline-block;
  background: linear-gradient(135deg, #f472b6, #bae6fd);
  padding: 18px;
  border-radius: 20px;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111827;
}

.about-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

.about-highlight {
  margin-top: 60px;
  background: linear-gradient(135deg, #f472b6, #bae6fd);
  color: #ffffff;
  padding: 35px 40px;
  border-radius: 28px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(244, 114, 182, 0.2);
}

.highlight-note {
  font-weight: 700;
  color: #f472b6;
  margin-top: 6px;
}

/* How It Works */
.how-it-works {
  background-color: #ffffff;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 40px 30px;
  background: #fdf2f8;
  /* Very light pink */
  border-radius: 24px;
  transition: all 0.3s ease;
  border: 1px solid #fce7f3;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(244, 114, 182, 0.1);
  background: #ffffff;
}

.step-icon {
  width: 70px;              /* smaller container */
  height: 70px;
  background-color: #bae6fd;
  border-radius: 12px;      /* slightly tighter corners */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transform: rotate(-5deg);
}

.step-icon img {
  width: 50px;              /* much smaller icon */
  height: 50px;
  object-fit: contain;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #111;
}

.step p {
  font-size: 0.96rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1.25rem;
  }
}

/* Pricing Section */
.pricing-section {
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  padding: 28px 26px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: #f9a8d4;
  box-shadow: 0 24px 55px rgba(236, 72, 153, 0.18);
}

.pricing-card.featured {
  border-width: 2px;
  border-color: #f472b6;
  background: linear-gradient(135deg, #fdf2ff, #f9fafb);
}

.pricing-card.coming-soon {
  opacity: 0.96;
}

.plan-label {
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7280;
}

.plan-tag {
  font-size: 0.92rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.plan-saving {
  font-size: 0.9rem;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 6px;
}

.badge {
  position: absolute;
  top: 18px;
  right: -40px;
  background: #f97316;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(35deg);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: #374151;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  top: 0;
  color: #f472b6;
  font-weight: 900;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #f0f9ff;
  /* Very light blue */
  text-align: center;
}

.trust-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
}

.trust-bullets li {
  background: #ffffff;
  padding: 18px 30px;
  border-radius: 50px;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  font-weight: 600;
  color: #0369a1;
  border: 1px solid #e0f2fe;
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.accordion {
  border: none;
}

.accordion-item {
  border: 1px solid #f3f4f6;
  margin-bottom: 15px;
  border-radius: 16px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: #f9fafb;
  border: none;
  padding: 25px 30px;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  color: #111;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #f3f4f6;
}

.accordion-header:focus {
  outline: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #ffffff;
}

.accordion-content p {
  padding: 0 30px 25px;
  color: #4b5563;
  font-size: 0.98rem;
}

.icon {
  color: #f472b6;
  font-size: 1.4rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #f472b6, #bae6fd);
  color: #ffffff;
  padding: 120px 5%;
}

.final-cta h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 2.6rem;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-primary {
  background-color: #ffffff;
  color: #f472b6;
}

.final-cta .btn-primary:hover {
  background-color: #fdf2f8;
  transform: scale(1.05);
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px;
  background: #ffffff;
  color: #9ca3af;
  font-size: 0.95rem;
  border-top: 1px solid #f3f4f6;
}

.pricing-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.pricing-link:hover .pricing-card {
  transform: translateY(-5px);
  transition: 0.3s ease;
  cursor: pointer;
}

.with-image {
  position: relative;
}

.content-image {
  width: 320px;
  height: 220px;          /* force same image height */
  object-fit: cover;      /* prevents distortion */
  border-radius: 14px;
  margin: 0 auto 24px;    /* consistent spacing below image */
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* mobile */
@media (max-width: 768px) {

  .content-image {
    float: none;
    display: block;
    width: 100%;
    margin: 20px 0;
  }

}











/* Couples Section */
.couples-section {
  padding: 60px 5% 40px;
}

.couples-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}

.couple-image {
  position: relative;
}

.couple-image img {
  width: 420px;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

/* Elegant staggered layout */
.couple-image:first-child {
  transform: translateY(40px);
}

.couple-image:last-child {
  transform: translateY(-40px);
}

/* subtle hover */
.couple-image img:hover {
  transform: scale(1.03);
}

/* Mobile stays unchanged */
@media (max-width: 768px) {

  .couples-images {
    flex-direction: column;
    gap: 20px;
  }
  

.couple-image img {
  width: 340px;
  height: 440px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

  .couple-image:first-child,
  .couple-image:last-child {
    transform: none;
  }
}

.claim-title {
  font-size: 2.8rem;
  font-weight: 800;
}

@media (min-width: 1024px) {
  .content-image {
    width: 360px;
  }
}







.hero-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 35px;
}

.hero-badge {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 28px 16px 58px;
  min-width: 360px;
  max-width: 420px;
  border-radius: 999px;

  background: linear-gradient(135deg,#b23a8a,#d946a1);
  color: #ffffff;

  font-size: 1rem;
  font-weight: 700;
  text-align: left;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* check icon */
.hero-badge::before {
  content: "✓";
  position: absolute;
  left: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;

  background: #f472b6;   /* pink circle */
  color: #ffffff;        /* white tick */

  font-size: 0.9rem;
  font-weight: 900;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* mobile */
@media (max-width: 768px) {

  .hero-badge {
    min-width: 0;
    width: 100%;
    max-width: 360px;
    font-size: 0.95rem;
  }

}

/* BASE - Mobile first, smaller font */
.hero-content h1 {
  font-size: 2.2rem;        /* Small enough to wrap naturally */
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet - grows smoothly */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
  }
}

/* Desktop - still wraps until comfortable */
@media (min-width: 1724px) and (max-width: 1879px) {
  .hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.1;
  }
}

@media (min-width: 1024px) {
  .hero-content h1.makebigger:not(.keepsame) {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 2rem !important;

    white-space: normal;   /* allow wrapping */
    text-align: center;
  }
}

/* Max width - snaps to 1 line */
@media (min-width: 1880px) {
  .hero-content h1 {
    font-size: 5rem;        /* Much bigger */
    white-space: nowrap;      /* Forces 1 line */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 95vw;
    line-height: 1.02;        /* Tighter for big text */
    text-align: center;
  }
}



/*footer styling*/

:root{
  --cim3-bg:#0b2a3a;
  --cim3-bg2:#062231;
  --cim3-ink:#ffffff;
  --cim3-muted:rgba(255,255,255,.72);
  --cim3-line:rgba(255,255,255,.12);
  --cim3-blue:#86d6ff;
  --cim3-pink:#ff43c6;
}

/* MAIN WRAPPER */
.cim-footer3{
  color:var(--cim3-ink);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(134,214,255,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 20%, rgba(255,67,198,.14), transparent 55%),
    linear-gradient(180deg, var(--cim3-bg), var(--cim3-bg2));
  border-top:1px solid rgba(255,255,255,.08);
}
.cim-footer3__wrap{
  width:min(1200px, 92%);
  margin:0 auto;
  padding:42px 0 22px;
}

/* TOP LAYOUT */
.cim-footer3__top{
  display:grid;
  grid-template-columns: 1.2fr .9fr .6fr;
  gap:26px;
  align-items:start;
}
@media (max-width: 980px){
  .cim-footer3__top{
    grid-template-columns:1fr;
  }
  .cim-footer3__actions{ order:2; }
  .cim-footer3__links{ order:3; }
}

/* BRAND COLUMN */
.cim-footer3__logo img{
  max-width:190px;
  height:auto;
  display:block;
}
.cim-footer3__blurb{
  margin:14px 0 14px;
  max-width:420px;
  color:var(--cim3-muted);
  line-height:1.65;
  font-weight:550;
}

/* SOCIAL ICONS */
.cim-footer3__social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.cim-footer3__soc{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  text-decoration:none;
}
.cim-footer3__soc:hover{
  transform:translateY(-2px);
  background:rgba(134,214,255,.18);
  border-color:rgba(134,214,255,.35);
}

/* ADDRESS BLOCK */
.cim-footer3__address{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-top:22px;
  padding:14px 16px;
  max-width:420px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter:blur(8px);
}
.cim-footer3__addressIcon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#ff7adf,#ff4fcf,#d93cb1);
  box-shadow:0 8px 18px rgba(255,79,207,0.22);
}
.cim-footer3__addressText{ min-width:0; }
.cim-footer3__addressLabel{
  display:block;
  margin-bottom:4px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.62);
}
.cim-footer3__addressText p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,0.88);
}
@media (max-width: 767px){
  .cim-footer3__address{
    max-width:100%;
    margin-top:18px;
    padding:13px 14px;
    border-radius:16px;
  }
  .cim-footer3__addressText p{
    font-size:13px;
    line-height:1.55;
  }
}

/* ACTIONS CARD (HELP + SUBSCRIBE) */
.cim-footer3__card{
  border-radius:18px;
  padding:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}
.cim-footer3__cardTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.cim-footer3__cardTitle{
  font-weight:900;
  letter-spacing:-.01em;
}
.cim-footer3__muted{
  color:var(--cim3-muted);
  font-weight:600;
  margin-top:4px;
  font-size:13px;
}
.cim-footer3__chip{
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background:rgba(134,214,255,.16);
  border:1px solid rgba(134,214,255,.25);
  color:#eaffff;
  white-space:nowrap;
}
.cim-footer3__pills{
  display:grid;
  gap:10px;
}
.cim-footer3__pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  text-decoration:none;
  font-weight:750;
  transition:transform .18s ease, border-color .18s ease;
}
.cim-footer3__pill:hover{
  transform:translateY(-1px);
  border-color:rgba(134,214,255,.35);
}
.cim-footer3__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--cim3-blue);
  box-shadow:0 0 0 6px rgba(134,214,255,.12);
}
.cim-footer3__dot--pink{
  background:var(--cim3-pink);
  box-shadow:0 0 0 6px rgba(255,67,198,.12);
}
.cim-footer3__divider{
  height:1px;
  background:rgba(255,255,255,.12);
  margin:14px 0;
}
.cim-footer3__form{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.cim-footer3__input{
  flex:1;
  height:44px;
  padding:0 12px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  outline:none;
  font-weight:650;
}
.cim-footer3__input::placeholder{
  color:rgba(255,255,255,.55);
}
.cim-footer3__btn{
  height:44px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(134,214,255,.35);
  background:rgba(134,214,255,.16);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease;
  white-space:nowrap;
}
.cim-footer3__btn:hover{
  transform:translateY(-1px);
  background:rgba(134,214,255,.22);
}
.cim-footer3__small{
  margin-top:8px;
  font-size:12px;
  color:rgba(255,255,255,.62);
  font-weight:650;
}

/* LINKS COLUMN */
.cim-footer3__linksTitle{
  font-weight:950;
  letter-spacing:-.01em;
  margin-bottom:10px;
}
.cim-footer3__a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  margin-bottom:10px;
  transition:transform .18s ease, border-color .18s ease;
}
.cim-footer3__a:hover{
  transform:translateY(-1px);
  border-color:rgba(134,214,255,.35);
}

/* DISCLAIMER + BOTTOM BAR */
.cim-footer3__disclaimer{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.70);
  line-height:1.7;
  font-weight:560;
  font-size:13px;
}
.cim-footer3__disclaimer p{
  margin:0 0 10px;
}
.cim-footer3__disclaimer p:last-child{
  margin-bottom:0;
}
.cim-footer3__disclaimer strong{
  color:rgba(255,255,255,.88);
}

.cim-footer3__bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.cim-footer3__copy{
  margin:0;
  color:rgba(255,255,255,.78);
  font-weight:650;
}
.cim-footer3__bottomLinks{
  display:flex;
  gap:10px;
  align-items:center;
  color:rgba(255,255,255,.55);
}
.cim-footer3__bottomLinks a{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:800;
}
.cim-footer3__bottomLinks a:hover{
  color:#fff;
}

/* ===== HEADER ===== */
.cim-header2{
    background:#b9dcf4;
    width:100%;
    position:relative;
    z-index:1000;
}

.cim-header2__inner{
    width:100%;
    padding:22px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.cim-brand2{
    display:flex;
    align-items:center;
    flex:0 0 auto;
}

.cim-brand2__logo{
    height:42px;
    width:auto;
    display:block;
}

.cim-nav2{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    margin-left:auto;
    flex:1 1 auto;
}

.cim-nav2__link{
    font-weight:700;
    color:#111;
    text-decoration:none;
    padding:10px 18px;
    border-radius:18px;
    white-space:nowrap;
    font-size:16px;
}

.cim-nav2__link--pill{
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.10);
}

.cim-header2__toggle{
    display:none;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:#fff;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    box-shadow:0 6px 16px rgba(0,0,0,.12);
}

.cim-header2__toggle span{
    display:block;
    width:26px;
    height:3px;
    background:#111;
    border-radius:10px;
}

/* ===== REVIEW BAR ===== */
.cim-reviewbar{
    background:#000;
    color:#fff;
    position:relative;
    z-index:900;
}

.cim-reviewbar__inner{
    max-width:1280px;
    margin:0 auto;
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
}

.cim-reviewbar__trustpilot,
.cim-reviewbar__google{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    line-height:1;
}

.cim-reviewbar__label,
.cim-google__reviews,
.cim-reviewbar__text{
    color:#fff;
    font-weight:700;
}

.cim-reviewbar__divider{
    width:1px;
    height:32px;
    background:rgba(255,255,255,.22);
}

/* Trustpilot stars */
.cim-tp-stars{
    display:flex;
    gap:3px;
}

.cim-tp-starbox{
    width:22px;
    height:22px;
    background:#00b67a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    position:relative;
    overflow:hidden;
}

.cim-tp-starbox--half::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:50%;
    height:100%;
    background:#dcdce6;
}

.cim-reviewbar__brand--trustpilot{
    color:#00b67a;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:6px;
}

.cim-reviewbar__brand-icon{
    font-size:14px;
}

/* Google */
.cim-reviewbar__stars--google{
    display:flex;
    align-items:center;
    gap:3px;
    color:#fbbc04;
}

.cim-google-logo{
    height:24px;
    width:auto;
    display:block;
}

/* ===== MOBILE ===== */
@media (max-width: 768px){

    /* fixed top row only */
  .cim-header2{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: #b9dcf4;
  }

  .cim-header2__inner{
      position: relative;
      min-height: 88px;       /* stable height */
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .cim-brand2{
      position: absolute;
      left: 50%;
      top: 50%;               /* center vertically in header */
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
  }

  .cim-brand2__logo{
      height: 38px;
      width: auto;
      display: block;
  }

  .cim-header2__toggle{
      display: flex;
      position: absolute;
      right: 18px;
      top: 50%;               /* align with logo center */
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border: none;
      border-radius: 50%;
      background: #fff;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      box-shadow: 0 6px 16px rgba(0,0,0,.12);
      z-index: 3;
  }

    .cim-header2__toggle span{
        display:block;
        width:24px;
        height:4px;
        background:#222;
        border-radius:10px;
    }

  .cim-nav2{
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #b9dcf4;
      padding: 14px 16px 18px;
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      margin-left: 0;
      border-top: 1px solid rgba(255,255,255,.35);
      box-shadow: 0 10px 20px rgba(0,0,0,.08);
      z-index: 999;
  }

  .cim-nav2.is-open{
      display: flex;
  }

    .cim-nav2__link{
        width:100%;
        padding:14px 16px;
        border-radius:16px;
        background:rgba(255,255,255,.14);
        border:1px solid rgba(255,255,255,.22);
        text-align:left;
        font-size:16px;
        line-height:1.2;
    }

    .cim-nav2__link--pill{
        background:#fff;
    }

    /* review strip sits below fixed header */
  /* review strip still below fixed header */
.cim-reviewbar {
    margin-top: 88px;
    position: relative;
    z-index: 900;
    min-height: 50px; /* ensure banner is visible */
    transform: translateZ(0); /* fixes Safari render issues */
}

.cim-reviewbar__inner {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    min-height: 50px; /* force visible height on iOS */
}

.cim-tp-starbox i {
    -webkit-font-smoothing: antialiased;
}

    .cim-reviewbar__divider{
        display:none;
    }

    .cim-reviewbar__trustpilot,
    .cim-reviewbar__google{
        justify-content:center;
        flex-wrap:wrap;
        text-align:center;
        gap:8px;
        font-size:14px;
    }

    .cim-reviewbar__label,
    .cim-google__reviews,
    .cim-reviewbar__text{
        font-size:14px;
    }

    .cim-tp-starbox{
        width:20px;
        height:20px;
        font-size:11px;
    }

    .cim-google-logo{
        height:20px;
    }
}

/*REVIEW STYLES*/

.cim-testimonials--new {
  background: #f5f5f5;
  padding: 95px 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  position: relative;
}

.cim-testimonials--new .cim-testimonials__wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.cim-testimonials--new .cim-testimonials__title {
  text-align: center;
  font-size: 46px;
  font-weight: 950;
  margin: 0 0 10px;
  color: #111;
  letter-spacing: -0.4px;
}

.cim-testimonials--new .cim-testimonials__sub {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 720px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  font-weight: 600;
}

.cim-testimonials--new .cim-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Card */
.cim-testimonials--new .cim-testimonial {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 26px 24px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}

.cim-testimonials--new .cim-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0,0,0,.12);
}

/* Top row */
.cim-testimonial__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
}

.cim-testimonials--new .cim-testimonial__avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef6fb;
  border: 1px solid rgba(0,0,0,.06);
  flex: 0 0 auto;
}

.cim-testimonials--new .cim-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cim-testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cim-testimonial__name {
  font-size: 16px;
  font-weight: 900;
  color: #111;
}

.cim-testimonial__loc {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
}

.cim-testimonial__stars {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ff4fcf;
  font-weight: 900;
  margin-top: 4px;
}

.cim-testimonial__quote {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,79,207,.10);
  color: #ff4fcf;
  font-size: 34px;
  font-weight: 900;
}

/* Text */
.cim-testimonials--new .cim-testimonial__text {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  color: #222;
  font-weight: 600;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1000px) {
  .cim-testimonials--new .cim-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cim-testimonials--new .cim-testimonials__title {
    font-size: 34px;
  }

  .cim-testimonials--new .cim-testimonials__sub {
    margin-bottom: 34px;
  }
}

/* Desktop: 2 badges per row */
@media (min-width: 769px) {
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px; /* row / column gap */
  }

  .hero-badge {
    width: 100%;
  }
}

/* Desktop: make hero H1 much bigger unless it has class "keepsame" */
@media (min-width: 1024px) {
  .hero-content h1.makebigger:not(.keepsame) {
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem !important;

    white-space: normal;
    text-align: center;

    max-width: 20ch;        /* 👈 KEY: controls line length */
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1100px) and (max-width: 1600px) {
  .hero-content h1.awkwardSize {
    font-size: clamp(4.5rem, 6vw, 6.5rem) !important;
    line-height: 2.05 !important;

    white-space: nowrap !important;
    
    display: block;
    width: max-content;
    max-width: 95vw;

    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1880px) {
  .hero-content h1:not(.keepsame) {
    font-size: 7rem;      /* even bigger on very wide screens */
    white-space: nowrap;  /* still force 1 line on ultra-wide */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 95vw;
    line-height: 1.02;
    text-align: center;
  }
}

/* Desktop: lift hero title and subtitle up by reducing top margin */
@media (min-width: 1724px) {
  .hero-section .hero-content {
    margin-top: -40px; /* pull whole content block up */
  }

  .hero-section .hero-content h1:not(.keepsame) {
    margin-bottom: 10px; /* tighten gap to the paragraph if needed */
  }
}

/* Desktop: lift hero title and subtitle up by reducing top margin */
@media (min-width: 1024px) {
  .hero-section .hero-content {
    margin-top: 10px; /* pull whole content block up */
  }

  .hero-section .hero-content h1:not(.keepsame) {
    margin-bottom: 00px; /* tighten gap to the paragraph if needed */
  }
}

/* base (mobile/tablet) */
.bereavement-title {
  display: block;
  margin-bottom: 0.75rem; /* normal spacing */
}

/* Force big gap under Bereavement h1 on desktop only */
@media (min-width: 1724px) {
  .hero-content h1.bereavement-title:not(.keepsame) {
    margin-bottom: 4rem !important; /* huge gap */
  }
    .hero-content p {
    font-size: 1.8rem;
    }
}


@media (min-width: 1024px) {
  .hero-subtitle-test {
    color: inherit !important;      /* back to normal colour */
    margin-top: -30px !important;   /* pull subheading closer to the H1 */
    margin-bottom: 22px !important; /* adjust gap below if you like */
    font-size: 2.2rem !important;  /* increase this value to taste */
  }
}


/* Desktop: make hero H1 bigger when it has class "makebigger" */
@media (min-width: 1724px) {
  .hero-content h1.makebigger:not(.keepsame) {
    font-size: 20rem !important;   /* bigger heading */
    line-height: 1.05;
    margin-bottom: 4rem !important; /* big gap under H1 */
  }

  .hero-content p {
    font-size: 1.8rem;
  }
}

/* Desktop: make hero H1 bigger when it has class "makebigger" */
@media (min-width: 1024px) {
  .hero-content h1.makebigger:not(.keepsame) {
    font-size: 6rem !important;   /* bigger heading */
    line-height: 1.05;
    margin-bottom: 2rem !important; /* big gap under H1 */
  }

  .hero-content p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;          /* let content define height instead of 100vh */
    min-height: 100vh;     /* still fill tall screens if content is short */
    align-items: flex-start;
    padding-top: 60px;     /* space for header / safe area */
    padding-bottom: 40px;  /* ensure button has breathing room at bottom */
  }

  .hero-content {
    padding-top: 20px;     /* smaller than before so content sits higher */
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-badges {
    margin-bottom: 24px;   /* reduce space above button */
  }

  .btn-primary {
    margin-bottom: 0;      /* avoid extra push-down */
  }
}

/* =========================
   PREMIUM FLOAT TOOLTIP
========================= */

.info-label{
  position:relative;
  padding-right:30px;
}

/* ICON */

.tooltip-icon{
  position:absolute;
  right:0;
  top:55%;
  transform:translateY(-50%);

  width:22px;
  height:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  font-size:13px;
  font-weight:800;
  color:#fff;

  cursor:pointer;

  background:linear-gradient(135deg,#f472b6,#ec4899);

  box-shadow:
  0 6px 16px rgba(244,114,182,.35),
  inset 0 1px 0 rgba(255,255,255,.3);

  transition:
  transform .25s ease,
  box-shadow .25s ease;
}

/* glow ring */

.tooltip-icon::after{
  content:"";
  position:absolute;
  inset:-5px;

  border-radius:50%;
  border:2px solid rgba(244,114,182,.35);

  opacity:0;
  transform:scale(.9);

  transition:all .25s ease;
}

.tooltip-icon:hover{
  transform:translateY(-50%) scale(1.1);

  box-shadow:
  0 12px 26px rgba(244,114,182,.45),
  inset 0 1px 0 rgba(255,255,255,.35);
}

.tooltip-icon:hover::after{
  opacity:1;
  transform:scale(1);
}


/* TOOLTIP */

.tooltip-text{

  position:absolute;
  bottom:160%;
  left:50%;

  transform:translateX(-50%) translateY(10px);

  width:420px;
  max-width:92vw;

  padding:16px 20px;

  border-radius:16px;

  font-size:12.5px;   /* reduced from 13.5 */
  line-height:1.5;    /* slightly tighter */

  color:#374151;

  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);

  border:1px solid rgba(0,0,0,.08);

  box-shadow:
  0 25px 60px rgba(15,23,42,.18),
  inset 0 1px 0 rgba(255,255,255,.8);

  opacity:0;
  visibility:hidden;

  transition:
  opacity .25s ease,
  transform .25s cubic-bezier(.22,1,.36,1);

  z-index:999999;
}


/* arrow */

.tooltip-text::after{
  content:"";
  position:absolute;

  top:100%;
  left:50%;

  transform:translateX(-50%);

  border-width:9px;
  border-style:solid;

border-color: rgba(255,255,255,.96) transparent transparent transparent;

  filter:drop-shadow(0 4px 6px rgba(0,0,0,.35));
}


/* show */

.tooltip-icon:hover .tooltip-text{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

@media (min-width:1024px){

  .tooltip-text{
    width:520px;      /* wider on desktop */
    font-size:13px;   /* slightly easier reading */
  }
  
  .tooltip-icon {
     top: 130%;
    }

}

.top-info-bar {
  overflow: visible;
}

@media (max-width: 768px) {
  .info-label {
    position: relative;
    padding-right: 0;
    padding-left: 30px;
  }

  .tooltip-icon {
    left: 0;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .tooltip-icon:hover {
    transform: translateY(-50%) scale(1.1);
  }
}

.tooltip-icon.is-open .tooltip-text{
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {

  /* Make the tooltip-icon the positioning context but override tooltip to be viewport-centered */
  .tooltip-text {
    left: 90% !important;
    top: 90% !important;       /* vertically centre on screen */
    bottom: auto !important;
    transform: translate(-15%, -110%) !important;  /* perfect centre */
    width: 88vw !important;    /* nice padding from screen edges */
    max-width: 360px;
    z-index: 999999;
  }

  /* Hide the arrow — it points to nothing useful when fixed */
  .tooltip-text::after {
    display: none;
  }

}


@media (min-width: 1024px) and (max-width: 1600px) {
  .hero-content h1.keepsame {
    font-size: clamp(3.6rem, 4.5vw, 5.5rem);  /* ~20% bigger than before */
    line-height: 1.1;                        /* slightly more breathing room */
    display: -webkit-box;                     /* for line clamping */
    -webkit-line-clamp: 2;                    /* max 2 lines */
    -webkit-box-orient: vertical;             /* required for clamp */
    overflow: hidden;                         /* hides anything beyond 2 lines */
    text-align: center;
    white-space: normal;                       /* allow wrapping if needed */
  }
}

/* Laptop-specific tweak */
@media (min-width: 1280px) and (max-width: 1440px) {
  .hero-content h1.keepsame {
    font-size: clamp(3.4rem, 5vw, 4.8rem); /* slightly smaller max than desktop */
    line-height: 1.1;
  }
}

@media (min-width: 769px) {
  .top-info-bar .info-label {
    position: relative;
    left: 13px;
  }
}
