/**
 * Reef Benefits WordPress Theme - Exact Conversion from React
 * All padding, spacing, and measurements match the working React version
 */

/* ===================================
   RESET & BASE
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  min-height: 100vh;
}

a:focus,
a:outline,
a {
  text-decoration: none;
}

/* ===================================
   HEADER (from React: Header component)
   =================================== */
.reef-header {
  background-color: #ee2966;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  width: 100%;
}

.reef-logo {
  height: 32px;
  width: 72px;
  max-width: 72px;
  flex-shrink: 0;
}

.reef-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reef-nav {
  display: none;
}

.reef-nav-list a {
  display: inline-block;
  padding: 12px 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.reef-nav-list a:hover {
  color: #fff;
  background: rgba(0,0,0,0.1);
  border-radius: 50px;
}

.reef-login-btn {
  display: none;
}

.reef-mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: white;
  padding: 8px;
  cursor: pointer;
}

/* Mobile Menu */
.reef-mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #ee2966;
  z-index: 50;
  display: none;
  overflow-y: auto;
}

.reef-mobile-menu.active {
  display: block;
}

.reef-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.reef-mobile-menu-close {
  background: none;
  border: none;
  color: white;
  padding: 8px;
  cursor: pointer;
}

.reef-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
}

.reef-mobile-menu-link {
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  text-align: left;
  transition: opacity 0.3s;
}

.reef-mobile-menu-link:hover {
  opacity: 0.8;
}

.reef-mobile-menu-login {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.reef-mobile-login-btn {
  background-color: none;
  border: 1px solid #fff;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 9999px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* ===================================
   HERO SECTION - NEW DESIGN
   =================================== */
.reef-hero-new {
  background-color: white;
  position: relative;
  width: 100%;
  padding: 40px 16px 60px;
  overflow: hidden;
}

.reef-hero-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reef-hero-new-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Hero Image Column */
.reef-hero-new-image {
  width: 100%;
  max-width: 500px;
  order: 2;
}

.reef-hero-new-image-main {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Content Column */
.reef-hero-new-content {
  width: 100%;
  max-width: 600px;
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Google Review Badge */
.reef-hero-review-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.reef-hero-review-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #374151;
}

.reef-hero-review-google {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reef-hero-review-google-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}

.reef-hero-review-stars {
  display: flex;
  gap: 2px;
}

/* Hero Heading */
.reef-hero-new-heading {
  font-family: "Poppins", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
}

.reef-hero-new-heading-pink {
  color: #ee2966;
  display: block;
}

.reef-hero-new-heading-black {
  color: #000000;
  display: block;
}

/* Subheading */
.reef-hero-new-subheading {
  font-family: "Inter", sans-serif;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.reef-hero-new-subheading .no-break {
  white-space: nowrap;
}

/* CTA Buttons */
.reef-hero-new-ctas {
  flex-direction: row;
  align-items: center;
}

.reef-hero-btn-primary {
  background-color: #ee2966;
  color: white;
  padding: 16px 32px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.reef-hero-btn-primary:hover {
  background-color: #d91456;
}

.reef-hero-btn-secondary {
  background-color: transparent;
  color: #ee2966;
  padding: 8px 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  border-bottom: 2px solid transparent;
}

.reef-hero-btn-secondary:hover {
  border-bottom-color: #ee2966;
}

/* ===================================
   STATS SECTION
   The Redirect Health Difference statistics
   =================================== */
.reef-stats-section {
  background: #ffffff;
  padding: 60px 16px;
  width: 100%;
}

.reef-stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reef-stats-title {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 48px;
}

/* Single Column - All stats vertically stacked */
.reef-stats-single-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.reef-stat-item {
  text-align: center;
}

.reef-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #EE2966;
  line-height: 1.2;
  margin-bottom: 8px;
  display: block;
}

.reef-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4A5568;
  line-height: 1.4;
}

.reef-stats-bottom {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.reef-stat-item-large .reef-stat-number {
  font-size: 56px;
}

/* ===================================
   TABLET STYLES (768px+) - Stats Section
   =================================== */
@media (max-width: 640px) {
  .reef-stats-section {
    padding: 40px 16px;
  }
  
  .reef-stats-title {
    margin-bottom: 32px;
  }
  
  .reef-stats-grid-top,
  .reef-stats-grid-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .reef-stats-grid-top {
    margin-bottom: 32px;
  }
  
  .reef-stats-grid-bottom {
    max-width: 100%;
  }
  
  .reef-stat-number {
    font-size: 36px;
  }
}

/* ===================================
   TABLET STYLES (768px+) - Stats Section
   =================================== */
@media (min-width: 768px) {
  .reef-stats-section {
    padding: 80px 24px;
  }

  .reef-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .reef-stat-number {
    font-size: 44px;
  }
  
  .reef-stat-item-large .reef-stat-number {
    font-size: 52px;
  }
}

/* ===================================
   BENEFITS SECTION - TWO COLUMN LAYOUT
   =================================== */
.reef-benefits-section {
  background-color: #ffffff;
  padding: 60px 16px;
  width: 100%;
}

.reef-benefits-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reef-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

/* Left Column - Heading */
.reef-benefits-heading-col {
  width: 100%;
}

.reef-benefits-heading-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reef-benefits-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.reef-benefits-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}

/* Right Column - Boxes Grid */
.reef-benefits-boxes-col {
  width: 100%;
}

.reef-benefits-boxes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Individual Benefit Box */
.reef-benefit-box {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.reef-benefit-box:hover {
  border-color: #ee2966;
  box-shadow: 0 10px 25px rgba(238, 41, 102, 0.1);
  transform: translateY(-2px);
}

.reef-benefit-box-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reef-benefit-box-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(238, 41, 102, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reef-benefit-box-icon svg {
  width: 24px;
  height: 24px;
}

.reef-benefit-box-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #111827;
  margin: 0;
}

.reef-benefit-box-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

.reef-benefit-box-cta {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ee2966;
  margin-top: 16px;
  transition: transform 0.2s ease;
}

.reef-benefit-box:hover .reef-benefit-box-cta {
  transform: translateX(4px);
}

/* ===================================
   CARDS SECTION
   React: pb-[48px] pt-[48px] px-[16px]
   Tablet: md:pb-[72px] md:pt-[64px] md:px-[24px]
   Desktop: lg:pb-[96px] lg:pt-[87px] lg:px-[32px]
   =================================== */
.reef-section {
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
  padding-top: 48px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

/* Section Container - React: max-w-[1400px] mx-auto */
.reef-section-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

/* Section Inner - React: gap-[32px] px-[16px] */
.reef-section-inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  max-width: inherit;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  width: 100%;
}

/* Section Heading */
.reef-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.reef-section-heading h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
  color: #111827;
  margin: 0;
  width: 100%;
}

.reef-section-heading .highlight {
  color: #ee2966;
}

/* Cards Grid - React: gap-[24px] items-center */
.reef-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

/* Individual Card - React: max-w-[373.33px] p-[32px] gap-[70px] */
.reef-card {
  background-color: white;
  position: relative;
  border-radius: 16px;
  align-self: stretch;
  flex-shrink: 0;
  width: 100%;
  max-width: 373.33px;
}

.reef-card-inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 70px;
  height: 100%;
  align-items: flex-start;
  overflow: hidden;
  padding: 32px;
  position: relative;
  border-radius: inherit;
  width: 100%;
}

.reef-card-shadow {
  position: absolute;
  border: 1px solid #ececec;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  box-shadow:
    0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.reef-card-icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.reef-card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Card Content - React: gap-[24px] */
.reef-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  line-height: 0;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

/* Card Title Container - React: gap-[16px] */
.reef-card-title-wrap {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.reef-card-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.reef-card-title h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 23.25px;
  line-height: 32px;
  color: #111827;
  margin: 0;
}

.reef-card.individuals .reef-card-title h3 {
  font-size: 24px;
}

.reef-card.brokers .reef-card-title h3 {
  font-size: 23.625px;
}

/* Card Description */
.reef-card-description {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.reef-card-description p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #374151;
  margin: 0;
}

.reef-card.individuals .reef-card-description p {
  font-size: 14.75px;
}

/* Card Button - React: h-[57px] w-[190px] px-[33px] py-[13px] gap-[8px] */
.reef-card-button {
  background-color: white;
  height: 57px;
  position: relative;
  border-radius: 9999px;
  width: 190px;
  cursor: pointer;
  transition: opacity 0.3s;
  border: none;
}

.reef-card-button:hover {
  opacity: 0.9;
}

.reef-card-button-inner {
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  height: 57px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 13px 33px;
  position: relative;
  border-radius: inherit;
  width: 190px;
}

.reef-card-button-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13.875px;
  line-height: 24px;
  color: #ee2966;
  text-align: center;
  white-space: pre;
  margin: 0;
}

.reef-card-button-icon-wrap {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0 3px;
  position: relative;
  flex-shrink: 0;
}

.reef-card-button-icon {
  display: flex;
  align-items: flex-start;
  position: relative;
  flex-shrink: 0;
  width: 16px;
}

.reef-card-button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(-1);
}

.reef-card-button-border {
  position: absolute;
  border: 1px solid #e03a6a;
  inset: 0;
  pointer-events: none;
  border-radius: 9999px;
  box-shadow:
    0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/* ===================================
   FOOTER
   =================================== */
.reef-footer {
  background-color: #ee2966;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 10px 0 24px;
  width: 100%;
}

.reef-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Footer CTA Section */
.reef-footer-cta {
  margin: 24px 24px 32px 24px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/doctors-working.jpg');
  background-size: cover;
  background-position: center;
  min-height: 240px;
}

.reef-footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px; 
  gap: 24px;
  height: 100%;
}

.reef-footer-cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: white;
  margin: 0;
  max-width: 800px;
}

.reef-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: white;
  color: #ee2966;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reef-footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.reef-footer-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reef-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reef-footer-link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13.453px;
  line-height: 20px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.reef-footer-link:hover {
  opacity: 0.8;
}

.reef-footer-logo {
  height: 60px;
  width: 150px;
  max-width: 400px;
}

.reef-footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reef-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reef-footer-contact-heading {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12.906px;
  line-height: 20px;
  color: white;
  white-space: nowrap;
  margin: 0;
}

.reef-footer-contact-phone {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12.469px;
  line-height: 20px;
  color: white;
  white-space: nowrap;
  margin: 0;
}

.reef-footer-contact-link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13.125px;
  line-height: 20px;
  color: white;
  white-space: nowrap;
  margin: 0;
}

.reef-footer-member {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding-top: 17px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 16px;
}

.reef-footer-member-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13.125px;
  line-height: 20px;
  color: white;
  margin: 0;
}

.reef-footer-member-btn {
  background-color: white;
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  position: relative;
  border-radius: 9999px;
  flex-shrink: 0;
  width: 100%;
}

.reef-footer-member-btn-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13.453px;
  line-height: 20px;
  color: #ee2966;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

.reef-footer-member-btn-icon {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.75px 0 3.25px;
  position: relative;
  flex-shrink: 0;
}

.reef-footer-member-btn-icon-inner {
  display: flex;
  align-items: flex-start;
  position: relative;
  flex-shrink: 0;
  width: 14px;
}

.reef-footer-member-btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(-1);
}

.reef-footer-copyright {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.reef-footer-copyright p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11.25px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0;
}

/* ===================================
   TABLET STYLES (768px+)
   React: md: breakpoint
   =================================== */
@media (min-width: 768px) {
  /* Header */
  .reef-header {
    padding: 8px 24px;
  }

  .reef-logo {
    height: 70px;
    width: 110px;
    max-width: 110px;
  }

  /* New Hero Section - Tablet */
  .reef-hero-new {
    padding: 60px 24px 80px;
  }

  .reef-hero-new-grid {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .reef-hero-new-image {
    width: 45%;
    max-width: none;
    order: 1;
  }

  .reef-hero-new-content {
    width: 55%;
    max-width: none;
    order: 2;
  }

  .reef-hero-new-heading {
    font-size: 42px;
  }

  .reef-hero-new-heading-pink,
  .reef-hero-new-heading-black {
    display: inline;
  }

  .reef-hero-new-subheading {
    font-size: 18px;
  }

  .reef-hero-new-ctas {
    flex-direction: row;
    align-items: center;
  }

  /* Stats Section - Tablet */
  .reef-stats-section {
    padding: 80px 24px;
  }

  .reef-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .reef-stat-number {
    font-size: 44px;
  }
  
  .reef-stat-item-large .reef-stat-number {
    font-size: 52px;
  }

  /* Benefits Section - Tablet */
  .reef-benefits-section {
    padding: 80px 24px;
  }

  .reef-benefits-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .reef-benefits-title {
    font-size: 38px;
  }

  .reef-benefits-subtitle {
    font-size: 18px;
  }

  .reef-benefit-box {
    padding: 28px;
  }

  .reef-benefit-box-title {
    font-size: 20px;
  }

  .reef-benefit-box-text {
    font-size: 15px;
  }

  /* Section - React: md:pb-[72px] md:pt-[64px] md:px-[24px] */
  .reef-section {
    padding-bottom: 72px;
    padding-top: 64px;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Section Inner - React: md:gap-[48px] md:px-[24px] */
  .reef-section-inner {
    gap: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .reef-section-heading h2 {
    font-size: 38px;
  }

  /* Cards Grid - React: md:flex-row md:gap-[48px] */
  .reef-cards-grid {
    flex-direction: row;
    gap: 48px;
    flex-wrap: wrap;
  }

  .reef-card {
    width: calc(50% - 24px);
  }

  /* Footer */
  .reef-footer {
    padding: 48px 24px 24px;
  }

  .reef-footer-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .reef-footer-links {
    align-items: center;
  }

  .reef-footer-logo {
    height: 79.69px;
    width: 200px;
  }

  .reef-footer-contact {
    align-items: flex-end;
  }

  .reef-footer-contact-heading,
  .reef-footer-contact-phone,
  .reef-footer-contact-link {
    text-align: right;
  }

  .reef-footer-member {
    align-items: flex-end;
  }

  .reef-footer-member-text {
    text-align: right;
  }

  .reef-footer-member-btn {
    width: auto;
  }
}

/* ===================================
   DESKTOP STYLES (1024px+)
   React: lg: breakpoint
   =================================== */
@media (min-width: 1024px) {
  /* Header - Desktop Nav */
  .reef-nav {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
  }

  .reef-nav-list {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .reef-nav-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    padding: 2px 0;
    position: relative;
    flex-shrink: 0;
  }

  .reef-nav-link {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
    text-decoration: none !important;
  }

  .reef-nav-link:hover {
    opacity: 0.8;
  }

  .reef-nav-link.contact {
    font-weight: 700;
    font-size: 13.563px;
    color: white;
  }

  .reef-login-btn {
    background-color: none;
    border: 2px solid #fff;
    color: #ffffff;
    box-sizing: border-box;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 10px 24px;
    position: relative;
    border-radius: 9999px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none !important;
  }

  .reef-login-btn:hover {
    transform: scale(1.01);
    cursor: pointer;
  }

  .reef-login-btn-text {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 13.875px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    margin: 0;
  }

  .reef-login-btn-icon {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.75px 0 3.25px;
    position: relative;
    flex-shrink: 0;
  }

  .reef-login-btn-icon-inner {
    display: flex;
    align-items: flex-start;
    position: relative;
    flex-shrink: 0;
    width: 14px;
  }

  .reef-login-btn-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleY(-1);
  }

  .reef-mobile-toggle {
    display: none;
  }

  /* New Hero Section - Desktop */
  .reef-hero-new {
    padding: 0px 32px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .reef-hero-new-grid {
    gap: 80px;
  }

  .reef-hero-new-image {
    width: 35%;
  }

  .reef-hero-new-content {
    width: 65%;
    gap: 28px;
  }

  .reef-hero-review-badge {
    gap: 6px;
  }

  .reef-hero-review-text {
    font-size: 15px;
  }

  .reef-hero-new-heading {
    font-size: 70px;
  }

  .reef-hero-new-subheading {
    font-size: 20px;
  }

  .reef-hero-btn-primary {
    padding: 18px 40px;
    font-size: 16px;
  }

  .reef-hero-btn-secondary {
    font-size: 16px;
  }
  
  /* Stats Section - Desktop: 5 columns */
  .reef-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
  }

  /* Benefits Section - Desktop */
  .reef-benefits-section {
    padding: 100px 32px;
    background: rgba(0, 0, 0, 0.05);
  }

  .reef-benefits-grid {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }

  .reef-benefits-heading-col {
    width: 35%;
    position: sticky;
    top: 100px;
  }

  .reef-benefits-boxes-col {
    width: 65%;
  }

  .reef-benefits-title {
    font-size: 48px;
  }

  .reef-benefits-subtitle {
    font-size: 20px;
  }

  .reef-benefit-box {
    padding: 32px;
  }

  .reef-benefit-box-icon {
    width: 48px;
    height: 48px;
  }

  .reef-benefit-box-icon svg {
    width: 28px;
    height: 28px;
  }

  .reef-benefit-box-title {
    font-size: 22px;
  }

  .reef-benefit-box-text {
    font-size: 16px;
  }

  /* Section - React: lg:pb-[96px] lg:pt-[87px] lg:px-[32px] */
  .reef-section {
    padding-bottom: 96px;
    padding-top: 87px;
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Section Inner - React: lg:gap-[64px] lg:px-[32px] */
  .reef-section-inner {
    gap: 64px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .reef-section-heading h2 {
    font-size: 46.688px;
  }

  /* Cards Grid - stays row, no wrap */
  .reef-cards-grid {
    flex-wrap: nowrap;
  }

  .reef-card {
    width: 373.33px;
  }

  .reef-card:last-child {
    width: 373.34px;
  }

  /* Footer */
  .reef-footer {
    padding: 10px 0 24px 0;
  }
}

/* ===================================
   INTERNAL PAGES STYLES
   (Businesses, Individuals, Franchise, Contact)
   =================================== */

/* Page Hero - Two Column Layout with Image */
.page-hero {
  position: relative;
  min-height: 600px;
  padding: 60px 20px;
  background-color: white;
}

.page-hero-container {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-hero-image-col {
  width: 100%;
  order: 2;
}

.page-hero-content-col {
  width: 100%;
  order: 1;
}

.page-hero-image-wrap {
  position: relative;
  max-width: 616px;
  margin: 0 auto;
}

.page-hero-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #e5e7eb;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-image-placeholder p {
  color: #9ca3af;
  font-size: 14px;
}

.page-hero-content-wrap {
  max-width: 672px;
}

.page-hero h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 24px;
}

.page-hero h1 .highlight {
  color: #ee2966;
}

.page-hero-description {
  margin-bottom: 24px;
  font-size: 15px;
  color: #374151;
  line-height: 1.65;
}

.page-hero-description p {
  margin: 0;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-icon {
  background-color: rgba(224, 58, 106, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.benefit-text {
  color: #374151;
  font-size: 12px;
  font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-primary {
  background-color: #ee2966;
  color: white;
  padding: 14px 24px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  width: 100%;
}

.btn-primary:hover {
  background-color: #d91456;
}

.btn-primary svg {
  transform: scaleY(-1);
}

.btn-secondary {
  background-color: white;
  border: 2px solid #d1d5db;
  color: #374151;
  padding: 14px 24px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: border-color 0.3s;
  width: 100%;
}

.btn-secondary:hover {
  border-color: #9ca3af;
}

.btn-secondary svg {
  transform: scaleY(-1);
}

/* Trusted By Section */
.trusted-by-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.logo-placeholder {
  height: 40px;
  width: 80px;
  background-color: #e5e7eb;
  border-radius: 4px;
}

/* Floating Badges (Businesses Page) */
.floating-badges {
  position: absolute;
  left: -20px;
  top: 20%;
  bottom: 30%;
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 180px;
}

.floating-badge {
  border-radius: 9999px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.floating-badge.blue {
  background-color: #3b82f6;
}

.floating-badge.pink {
  background-color: #ee2966;
}

.floating-badge.purple {
  background-color: #a855f7;
}

.floating-badge.green {
  background-color: #10b981;
}

.floating-badge-dot {
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 9999px;
}

.floating-badge-text {
  color: white;
  font-weight: 500;
  font-size: 12px;
}

/* Features Section */
.features-section {
  background-color: #f9fafb;
  padding: 64px 20px;
}

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

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

.features-header h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #111827;
  margin-bottom: 16px;
}

.features-header p {
  font-size: 18px;
  color: #4b5563;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.feature-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #111827;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background-color: #ee2966;
  padding: 64px 20px;
}

.cta-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: white;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 40px;
  max-width: 600px;
}

.cta-section .btn-white {
  background-color: white;
  color: #ee2966;
  padding: 18px 48px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.cta-section .btn-white:hover {
  background-color: #f3f4f6;
}

/* Coverage/Pricing Cards (Individuals Page) */
.pricing-card {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: #ee2966;
}

.pricing-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #111827;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #ee2966;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-card li:last-child {
  margin-bottom: 0;
}

.pricing-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card li span {
  color: #374151;
  font-size: 15px;
}

/* Steps Section (Individuals Page) */
.steps-section {
  background-color: white;
  padding: 64px 20px;
}

.step-item {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: #ee2966;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-item h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #111827;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 15px;
  color: #374151;
  margin: 0;
}

/* Success Stories/Testimonials (Franchise Page) */
.testimonial-card {
  background-color: #f9fafb;
  padding: 32px;
  border-radius: 16px;
}

.testimonial-logo {
  height: 48px;
  width: 120px;
  background-color: #d1d5db;
  border-radius: 4px;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: 18px;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.testimonial-company {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Contact Page Specific Styles */
.contact-hero {
  position: relative;
  min-height: 400px;
  padding: 60px 20px;
  background-color: #ee2966;
}

.contact-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: white;
  margin-bottom: 24px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section {
  padding: 64px 20px;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-form-column h2,
.contact-info-column h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #111827;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #ee2966;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ee2966;
  box-shadow: 0 0 0 3px rgba(238, 41, 102, 0.1);
}

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

.form-button {
  background-color: #ee2966;
  color: white;
  padding: 16px 48px;
  border-radius: 9999px;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-button:hover {
  background-color: #d91456;
}

.success-message {
  background-color: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.success-message p {
  margin: 0;
  font-weight: 500;
}

.success-message p.subtitle {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 400;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-heading {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-text {
  color: #374151;
  margin: 0;
}

.contact-info-text a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: #ee2966;
}

.contact-info-subtext {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

.office-hours-box {
  margin-top: 48px;
  background-color: #f9fafb;
  padding: 24px;
  border-radius: 16px;
}

.office-hours-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.office-hours-list {
  font-size: 14px;
  color: #374151;
}

.office-hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.office-hours-row:last-child {
  margin-bottom: 0;
}

.office-hours-time {
  font-weight: 500;
}



/* Contact CTA with Image */
.contact-cta-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.contact-cta-image {
  width: 100%;
}

.contact-cta-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.contact-cta-content {
  width: 100%;
  color: white;
}

.contact-cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-cta-content p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
}

/* ===================================
   TABLET STYLES (768px+) - Internal Pages
   =================================== */
@media (min-width: 768px) {
  .page-hero {
    min-height: 700px;
    padding: 80px 32px;
  }

  .page-hero-grid {
    flex-direction: row;
    gap: 48px;
  }

  .page-hero-image-col {
    flex: 1;
    order: 1;
  }

  .page-hero-content-col {
    flex: 1;
    order: 2;
  }

  .page-hero-image-placeholder {
    aspect-ratio: 3/4;
  }

  .page-hero h1 {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .page-hero-description {
    margin-bottom: 32px;
    font-size: 16px;
  }

  .benefits-grid {
    gap: 16px 32px;
    margin-bottom: 32px;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
  }

  .benefit-text {
    font-size: 13px;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 32px;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
    padding: 18px 32px;
    font-size: 17.5px;
  }

  .btn-secondary {
    padding: 18px 34px;
  }

  .trusted-logos {
    gap: 32px;
  }

  .floating-badges {
    display: flex;
  }

  .floating-badge-text {
    font-size: 13px;
  }

  .features-section {
    padding: 96px 32px;
  }

  .features-header h2 {
    font-size: 44px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .cta-section {
    padding: 96px 32px;
  }

  .cta-section h2 {
    font-size: 48px;
  }

  .cta-section p {
    font-size: 20px;
  }

  .steps-section {
    padding: 96px 32px;
  }

  .contact-hero {
    min-height: 500px;
    padding: 80px 32px;
  }

  .contact-hero h1 {
    font-size: 48px;
  }

  .contact-hero p {
    font-size: 20px;
  }

  .contact-form-section {
    padding: 96px 32px;
  }

  .contact-grid {
    gap: 64px;
  }

  .contact-form-column h2,
  .contact-info-column h2 {
    font-size: 36px;
  }

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

  .form-button {
    width: auto;
  }

  .faq-section {
    padding: 96px 32px;
  }

  .contact-cta-grid {
    flex-direction: row;
  }

  .contact-cta-image {
    width: 50%;
  }

  .contact-cta-image-wrap {
    aspect-ratio: 3/4;
  }

  .contact-cta-content {
    width: 50%;
  }

  .contact-cta-content h2 {
    font-size: 44px;
  }
}

/* ===================================
   DESKTOP STYLES (1024px+) - Internal Pages
   =================================== */
@media (min-width: 1024px) {
  .page-hero {
    min-height: 800px;
    padding: 120px 32px;
  }

  .page-hero h1 {
    font-size: 55px;
  }

  .page-hero-description {
    font-size: 17px;
  }

  .floating-badges {
    left: -40px;
    width: 193px;
  }

  .floating-badge {
    padding: 16px 20px;
  }

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

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

  .contact-hero h1 {
    font-size: 60px;
  }
}