/* =====================================================
   ILOGO REUNIONS — V5 UNIFIED STRUCTURE
===================================================== */

/* ===============================
   ROOT TOKENS
================================ */
:root {
  --content-width: 1380px;

  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;

  --text-sm: 0.9rem;
  --text-base: 1.05rem;
  --text-lg: 1.2rem;
  --text-xl: 1.45rem;

  --text-section: clamp(1.8rem, 3vw, 2.4rem);
  --text-display: clamp(2.2rem, 4vw, 3rem);
  --text-hero: clamp(2.4rem, 6vw, 4.2rem);

  /* =====================================
     BRAND COLOR SYSTEM
  ===================================== */

  --brand-blue: #002a53;          /* Primary iLogo Blue */
  --brand-blue-dark: #001f3f;     /* For hovers, depth, active states */
  --brand-blue-light: #0b3d75;    /* For backgrounds, highlights */

  --brand-orange: #ff7a00;
  --brand-accent: #1c8ed6;

  --text-dark: #111;
  --text-muted: #666;

  --radius-lg: 20px;
  --shadow-soft: 0 20px 50px rgba(0,0,0,0.06);

  --bg-page: #f7f8fa;
}

/* =====================================================
   BASE
===================================================== */

body.page-reunions {
  background: var(--bg-page);
  color: var(--text-dark);
  font-size: var(--text-base);
  line-height: 1.6;
}
/* =====================================================
   PREMIUM SECTION SEPARATORS
===================================================== */

.rv2-band-soft{
  background: linear-gradient(
    180deg,
    rgba(0,30,96,0.03),
    rgba(0,30,96,0.05)
  );
}
/* =====================================================
   GLOBAL WIDTH SYSTEM (USES YOUR EXISTING HTML)
===================================================== */

.rv2-container{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

@media(max-width:990px){
  .rv2-container{ padding: 0 1.2rem; }
}

/* =====================================================
   SECTION SPACING
===================================================== */

.rv2-section{ padding: var(--space-xl) 0; }

.rv2-section h2 {
  font-size: var(--text-section);
  text-align: center;
  color: var(--brand-blue);
  margin-bottom: 1.2rem;   /* was var(--space-lg) ≈ 2rem */
 
}
@media(max-width:990px){
	.rv2-section{ padding: 1.6rem 0; 
	}
}
/* =====================================================
   GRID UTILITIES
===================================================== */

.rv2-grid{ display:grid; gap:2rem; }
.rv2-grid-2{ grid-template-columns:repeat(2,1fr); }
.rv2-grid-3{ grid-template-columns:repeat(3,1fr); }

@media(max-width:1023px){
  .rv2-grid-3{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:640px){
  .rv2-grid-2,
  .rv2-grid-3{ grid-template-columns:1fr; }
}

/* =====================================================
   HERO
===================================================== */

.rv2-hero{ 

  padding-top: 2rem; 
  padding-bottom: 2rem;   /* reduces white gap after hero */
}

.rv2-hero-inner{
  background: linear-gradient(180deg,#f8fafc 0%,#eef3f9 55%,#e6edf6 100%);
  border-radius: 28px;
  padding: 0; /* remove top padding */
  display:grid;
  gap:var(--space-xl);
  align-items:center;
}
/* Left content column padding */
.rv2-hero-inner > div:first-child{
  padding: 2.5rem 3rem 0 3rem;
}

@media(min-width:991px){
  .rv2-hero-inner{
    grid-template-columns: 1.05fr 1.25fr;
	row-gap: 0;   /* remove vertical gap */
  }
}
.rv2-hero-image{
  display:flex;           /* KEEP FLEX */
  align-items:stretch;
}
.rv2-hero-image img{
  width:100%;
  border-radius:22px;
  box-shadow:0 30px 70px rgba(0,0,0,.12);
  height:100%;
  object-fit:cover;
  display:block;
}

.rv2-hero h1{
  font-size:var(--text-hero);
  line-height:1.05;
  letter-spacing:-0.02em;
  color:var(--brand-blue);
  margin-bottom:var(--space-md);
}

.rv2-subline{
  font-size:var(--text-xl);
  color:var(--text-muted);
  margin-bottom:var(--space-lg);
}

.rv2-cta-group{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.75rem;
}

.rv2-btn-primary{
  background:var(--brand-orange);
  color:#fff;
  padding:0.85rem 1.7rem;
  font-size:.95rem;
  font-weight:600;
  border-radius:8px;
  text-decoration:none;
  box-shadow: 0 10px 22px rgba(255,122,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rv2-btn-secondary{
  border: 1px solid #e3e6ea;
  padding:.65rem 1.4rem;
  font-size:.95rem;
  border-radius:8px;
  text-decoration:none;
  color: #555;
}


.rv2-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,122,0,0.35);
}


.rv2-cta-secondary a{
  color:var(--brand-blue);
  font-weight:600;
  text-decoration:none;
}

.rv2-hero-proof{
  margin-top:10px;
  font-size:.9rem;
  color:var(--text-muted);
}

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

  .rv2-hero-inner{
    padding:0;
    display:flex;
    flex-direction:column;
    text-align:center;
    gap:0.4rem;
    border-radius:22px;   /* FIXED */
  }

  .rv2-hero-image{ 
    order:-1;
    overflow:visible;     /* prevent clipping */
    border-radius:0;      /* remove wrapper rounding */
	display:block !important;
	align-items:initial !important;
	padding-top: 80px;   /* adjust if header taller/shorter */
	
  }

  .rv2-cta-group{ align-items:center; }

  .rv2-hero h1{
    font-size:2rem;
    line-height:1.3;
	margin-bottom: 0.5rem;
  }
   .rv2-subline{
    line-height: 1.3;
	margin-bottom: 0.9rem;
  }

  .rv2-btn-primary{
    width: 95%;
    max-width: 500px;
  }
  .rv2-hero-inner > div:first-child{
    padding: 0.8rem 1.2rem 1.5rem;
  }

  .rv2-hero-image img{
    width:100%;
    object-fit:cover;
    display:block;
	height:auto !important;
	max-height:none !important;
    border-radius:22px 22px 0 0; /* only image rounded */
  }

}
/* =====================================================
   HERO → BENEFITS SPACING FIX
===================================================== */

/* Desktop — increase gap */
@media (min-width: 991px){
  .rv2-benefits-strip{
    margin-top: 3.5rem;
  }
}

/* Mobile — tiny breathing space */
@media (max-width: 990px){
  .rv2-benefits-strip{
    margin-top: 0.5rem;
  }
}
/* =====================================================
   BENEFITS STRIP
===================================================== */



.rv2-benefits-grid {
  display: grid;
  gap: 2rem;
  
}

@media (min-width: 1024px) {
  .rv2-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 990px) {

  .rv2-benefits-grid {
    gap: 0.9rem;
  }

}
/* =====================================================
   CARD
===================================================== */

.rv2-benefit-card {

  position: relative;
  text-align: center;

  padding: 11rem 2.5rem 2.75rem;

  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 
	0 8px 24px rgba(0,0,0,0.05),
	0 2px 6px rgba(0,0,0,0.04);

  transition: transform 0.25s ease, box-shadow 0.25s ease;

}
.rv2-benefit-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 22px 60px rgba(0,0,0,0.10);

}

/* =====================================================
   ICON CONTAINER
===================================================== */

.rv2-benefit-icon {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   ALL IMAGES
===================================================== */

.rv2-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =====================================================
   MONEY MANAGED BREAKOUT SYSTEM
===================================================== */

/* Circle mask */
.rv2-money-mask {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Masked circle image */
.rv2-money-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Breakout image (top slice only) */
/* =====================================================
   MONEY MANAGED BREAKOUT (ALIGNED VERSION)
===================================================== */

.rv2-money-breakout {
  position: absolute;
  top: 0;                 /* FIXED */
  left: 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
  clip-path: inset(0 0 185px 0);
  z-index: 2;
  pointer-events: none;
}

/* =====================================================
   SHIPPING — STRICT CIRCLE MASK
===================================================== */

.rv2-benefit-shipping .rv2-benefit-icon {
  overflow: hidden;        /* mask shipping */
  border-radius: 50%;
}
/* =====================================================
   BACKGROUND VARIANTS
===================================================== */

.rv2-benefit-money { background: #f4f7ff; }
.rv2-benefit-money .rv2-benefit-icon { background: #e6edff; }

.rv2-benefit-size { background: #fff2a6; }
.rv2-benefit-size .rv2-benefit-icon { background: #ffe066; }

.rv2-benefit-shipping { background: #f2faf5; }
.rv2-benefit-shipping .rv2-benefit-icon { background: #dff3e8; }

/* =====================================================
   TEXT
===================================================== */

.rv2-benefit-card strong {

  font-size: 1.45rem;
  font-weight: 700;

  color: var(--brand-blue);

  margin-bottom: 0.75rem;

  display: block;

}
.rv2-benefit-card p {

  font-size: 1.05rem;
  line-height: 1.65;

  color: rgba(0,0,0,0.72);

  margin: 0;

}
/* ==========================================
   BENEFITS STRIP — MOBILE (CUSTOMINK STYLE)
========================================== */


@media (max-width: 990px) {

  /* Benefits strip */
  .rv2-benefits-strip {
    padding: 1.2rem 0 1rem;
	
  }
  .rv2-benefit-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    column-gap: 16px;
    align-items: center;
    padding: 14px 14px;
    text-align: left;
  }


  /* Reset absolute icon */
  .rv2-benefit-icon {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    width: 110px;
    height: 110px;

    grid-row: span 2;
  }

  /* shrink image */
  .rv2-benefit-icon img {
    width: 100%;
    height: 100%;
  }

  /* disable breakout */
  .rv2-money-breakout {
    display: none;
  }

  /* text */
  .rv2-benefit-card strong {
    font-size: 1.05rem;
	margin: 0;
	margin-bottom: 2px;   /* tighter title → text spacing */
    line-height: 1.2;
  }

  .rv2-benefit-card p {
    font-size: 0.95rem;
    margin: 0;
	line-height: 1.35;  
  }

}

/* =====================================================
   CASE STUDY
===================================================== */

.rv2-case-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .rv2-case-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.rv2-case-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
/* CASE STUDY — Quote Highlight */
.rv2-case .rv2-case-content blockquote{
  margin: 1rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
  background: transparent;
  border-left: 3px solid rgba(0,30,96,0.25);
  border-radius: 0;
  font-style: italic;
  color: #444;
  line-height: 1.7;
}
/* CASE STUDY — Meta */
.rv2-case-meta{
  font-size: 0.95rem;
  color: rgba(0,0,0,0.55);
  font-weight: 500;
  margin-bottom: 1rem;
}

.rv2-case-meta strong{
  color: inherit;     /* same color */
  font-weight: 700;   /* emphasis via weight only */
}
/* CASE STUDY — Premium Text CTA */
.rv2-case-link{
  border-bottom: 1px solid rgba(0,30,96,0.25);
  padding-bottom: 2px;
}
/* CASE STUDY — Label */
.rv2-case-label{
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(0,0,0,0.45);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: inline-block;
}

/* CASE STUDY — Title */
.rv2-case-content h3{
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}


/* =====================================================
   CASE STUDY MOBILE
===================================================== */
/* CASE STUDY — Mobile Spacing & Hierarchy */
@media(max-width:990px){

  /* Reduce section vertical space */
  .rv2-case{
    padding: 1.4rem 0;
  }

  /* Reduce gap between image & content */
  .rv2-case-grid{
    gap: 1rem;
  }

  /* Title stronger & closer */
  .rv2-case h2{
    margin-bottom: 1.2rem;
  }

  /* Case title */
  .rv2-case-content h3{
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
  }

  /* Meta tighter */
  .rv2-case-meta{
    margin-bottom: 0.6rem;
  }

  /* Paragraph tighter */
  .rv2-case-content p{
    margin-bottom: 0.8rem;
  }
   .rv2-case-content blockquote{
    margin: 0.9rem 0;
    padding: 0.8rem 0.9rem;
  }

}

/* =====================================================
   HOW IT WORKS
===================================================== */
/* =====================================================
   HOW IT WORKS
===================================================== */

.rv2-how-wrapper {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .rv2-how-wrapper {
    grid-template-columns: 380px 1fr;
  }
}

/* -----------------------------------------------------
   LEFT COLUMN
----------------------------------------------------- */
/* -----------------------------------------------------
   LEFT COLUMN
----------------------------------------------------- */

.rv2-how-left {
  display: flex;
}

.rv2-how-image img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* -----------------------------------------------------
   RIGHT COLUMN
----------------------------------------------------- */
@media (min-width: 1024px) {
  .rv2-how-right {
    height: 380px;      /* same as image */
  }
}
.rv2-how-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Heading aligned with steps */
.rv2-how-heading {
  font-size: 1.55rem;   /* reduced slightly */
  font-weight: 700;
  color: var(--brand-blue);
  margin: 12px 0 var(--space-lg) 0;
  text-align: left;     /* desktop alignment */
}
@media (max-width: 1023px) {
  .rv2-how-heading {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .rv2-how-section .rv2-how-heading {
    text-align: left;
  }
}
/* Steps Horizontal */
.rv2-how-steps {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .rv2-how-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rv2-how-item {
  text-align: left;
}

/* Step number circle */
.rv2-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rv2-how-item strong {
  font-size: 1.15rem;
  color: var(--brand-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.rv2-how-item p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* moves heading above image */
@media (max-width: 1023px) {

  .rv2-how-left {
    flex-direction: column;
  }

  .rv2-how-heading {
    order: -1;   /* moves heading above image */
    margin-bottom: var(--space-md);
  }

}

@media (max-width: 1023px) {

  .rv2-how-image {
    display: none;
  }

}
/* =====================================================
   HOW IT WORKS — DESKTOP HOVER POLISH
===================================================== */

@media (min-width:1024px){

  .rv2-how-item{
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 14px;
    padding: 1.25rem;
  }

  .rv2-how-item:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  }

}



/* -----------------------------------------------------
   CTA SECTION
----------------------------------------------------- */
/* -----------------------------------------------------
   CTA SECTION
----------------------------------------------------- */

.rv2-how-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.25rem;   /* adjust this */
  margin-bottom: 12px;   /* controls how high above bottom */
  flex-wrap: wrap;
}

.rv2-how-cta-text {
  font-size: 1.15rem;     /* match step headings */
  font-weight: 700;
  color: var(--brand-blue);
  margin: 0;
}

.rv2-how-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Primary Blue Button */
.rv2-btn-blue {
  background: var(--brand-blue);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Outline Button */
.rv2-btn-outline {
  background: transparent;
  color: var(--brand-blue);
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  border: 1.5px solid var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}

/* =====================================================
   HOW IT WORKS — MOBILE CENTER ALIGN
===================================================== */

@media (max-width: 1023px) {
	
 
  .rv2-how-wrapper {
    text-align: center;
	gap: 1rem;   /* reduce vertical spacing */
  }

  .rv2-how-steps{
    gap: 0.3rem;
  }
  .rv2-how-left {
    justify-content: center;
  }

  .rv2-how-heading {
    text-align: center;
    margin-top: var(--space-xs);
  }

  .rv2-how-item {
    text-align: center;
	padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    position: relative;
  }
   .rv2-how-item::after{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  bottom:0;
  height:1px;
  background: rgba(0,0,0,0.12);
}
  .rv2-how-item:last-child::after{
    display:none;
  }
 .rv2-how-item strong{
    margin-bottom: 0.35rem;
  }
  
  .rv2-how-cta {
    justify-content: center;
	margin-top: 0.6rem;
  }

  .rv2-how-buttons {
    justify-content: center;
  }

  .rv2-step-number {
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 0.6rem;
  }
  
  
}
/* =====================================================
   STATS
===================================================== */

.rv2-stats {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .rv2-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rv2-stat {
  padding: 2.6rem 2rem;
  border-radius: 18px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.05);
  border-top: 3px solid var(--brand-orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  text-align:center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.rv2-stat strong {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
  display: block;
  margin-bottom: 0.75rem;
}

.rv2-stat span {
  font-size: var(--text-base);
  color: var(--text-muted);
  display:block;
  margin-top: .35rem;
  letter-spacing: .3px;
  text-transform: uppercase;
  opacity: .75;
}

@media(min-width:1024px){
  .rv2-stat:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  }
}
/* =====================================================
   STATS MOBILE
===================================================== */

@media(max-width:990px){

  /* tighter stacking */
  .rv2-stats{
    gap: 1.2rem;
  }

  /* slightly compact cards */
  .rv2-stat{
    padding: 1.9rem 1.4rem;
    border-radius: 16px;
  }

  /* number slightly smaller for balance */
  .rv2-stat strong{
    font-size: 2.1rem;
  }

  /* label more readable on small screens */
  .rv2-stat span{
    font-size: .85rem;
    letter-spacing: .4px;
  }

}
/* ================================
   GOOGLE REVIEWS — CLEAN PREMIUM
================================ */

.review-wrap{
  padding: 4rem 0;
  background: #f7f8fa;
}

.review-wrap .container{
  max-width: 1180px;
}

/* Heading */
.review-wrap h3.orange-border{
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--brand-blue);
  font-weight: 700;
  border: none;
  margin-bottom: 2.2rem;
}

/* Rating Summary */
.google-rating-block{
  margin-top: 0.8rem;
  margin-bottom: 2rem;
}

.rating-text{
  font-size: 1rem;
  color: #555;
  margin-top: 0.4rem;
}

/* =====================
   REVIEW CARDS
===================== */

.review-wrap .card{
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 1.4rem;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-wrap .card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.10);
}

/* Make Owl cards wider */
.review-wrap .owl-carousel .owl-item{
  display:flex;
  justify-content:center;
}

.review-wrap .owl-carousel .card{
  width:100%;
  max-width:380px;
  min-height: 200px;   /* adds premium vertical breathing */
}

@media(min-width:1400px){
  .review-wrap .owl-carousel .card{
    max-width:460px;
  }
}

/* =====================
   REVIEW HEADER
===================== */

.review-wrap .top-title{
  display:flex;
  align-items:center;
  gap:0.8rem;
  margin-bottom:0.8rem;
}

.google-review-photo{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
}

.review-wrap .top-title h4{
  font-size:1rem;
  margin:0;
  color:#222;
  font-weight:600;
}

.review-wrap .top-title small{
  font-size:0.85rem;
  color:#777;
  margin-left:auto;
}

.google-review-icon{
  width:18px;
  margin-left:0.5rem;
}

/* =====================
   REVIEW TEXT
===================== */

.review-wrap .card-body{
  padding:0;
}

.review-wrap .card-body p{
  font-size:0.98rem;
  line-height:1.65;
  color:#444;

  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* =====================
   VIEW ALL BUTTON
===================== */

.view-all-wrapper{
  margin-top:2.5rem;
  text-align:center;
}

.view-all-wrapper .btn{
  background: var(--brand-blue);
  border:none;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-weight:600;
  box-shadow: 0 10px 22px rgba(0,30,96,0.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.view-all-wrapper .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,30,96,0.35);
}
/* ================================
   GOOGLE REVIEWS — MOBILE WIDTH TWEAK
================================ */
/* ================================
   GOOGLE REVIEWS — MOBILE WIDTH FIX
================================ */
@media(max-width:990px){

  .review-wrap .owl-carousel .card{
    max-width: 340px;   /* narrower mobile card */
  }

}
/* =====================
   MOBILE
===================== */

@media(max-width:990px){

  .review-wrap{
    padding: 2.8rem 0;
  }

  .review-wrap .card{
    padding:1.2rem;
  }

  .review-wrap h3{
    margin-bottom:1.6rem;
  }

}
/* =====================================================
   BUILT FOR EVERY REUNION — CARD GRID
===================================================== */
/* USE CASE CARDS — supported formats feel */
.rv2-card{
  background: #ffffff;
  padding: 2rem 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

@media(min-width:1024px){
  .rv2-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }
}

/* Titles stronger */
.rv2-card strong{
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .55rem;
  display:block;
}

/* Support text softer */
.rv2-card p{
  font-size: .98rem;
  color: #555;
  line-height: 1.6;
}
.rv2-usecase-intro{
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
/* =====================================================
   TYPES OF REUNION MOBILE
===================================================== */
@media(max-width:990px){

  .rv2-usecase-intro{
    font-size: .95rem;
    margin-bottom: 1.6rem;
    padding: 0 .6rem;
  }

  .rv2-card{
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }

  .rv2-card strong{
    font-size: 1.15rem;
  }

  .rv2-card p{
    font-size: .92rem;
    line-height: 1.55;
  }
  .rv2-usecase-intro{
    font-size: 0.95rem;          /* slightly smaller */
    line-height: 1.55;           /* comfortable reading */
    max-width: 92%;              /* prevent edge-to-edge text */
    margin: 0 auto 1.6rem;       /* tighter bottom spacing */
    padding: 0 0.6rem;           /* safe breathing room */
  }


}
/* =====================================================
   FINAL CTA
===================================================== */
/* =====================================================
   FINAL CTA — REFINEMENT
===================================================== */

.rv2-final-cta{
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  text-align:center;
  margin-top: -1.5rem;
   background: linear-gradient(
    180deg,
    #f6f9fc 0%,
    #eef3f9 60%,
    #e9f0f8 100%
  );
}

.rv2-final-cta h2{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
  color: var(--brand-blue);
}

.rv2-final-cta p{
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #4a5568;
}
.rv2-final-cta .rv2-btn-primary{
  padding: 1rem 2.2rem;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(255,122,0,0.28);
  margin: 0 auto;
  display: inline-block;
  text-align:center;
}
/* Center CTA content */
.rv2-final-cta .rv2-cta-group{
  align-items: center;
  justify-content: center;
}
/* Force center alignment in Final CTA */
.rv2-final-cta .rv2-how-heading{
  text-align:center !important;
}
@media (min-width: 991px){
  .rv2-final-cta h2{
    margin-bottom: 0.8rem;
  }
}
/* ==========================================
    FINAL CTA MOBILE 
========================================== */
@media(max-width:990px){

  .rv2-final-cta{
    padding: 2.5rem 1.2rem;
  }

  .rv2-final-cta h2{
    font-size: 1.6rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .rv2-final-cta p{
    font-size: 1rem;
    margin-bottom: 1.4rem;
  }

  .rv2-final-cta .rv2-btn-primary{
    width: 100%;
    max-width: 420px;
  }

}

