/* ==========================================
   Our Story Section Layout Core
   ========================================== */
.story-section {
  background-color: var(--white); /* Seamless alternating flow with core-values */
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.story-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
  max-width: 1250px;
}

/* --- Left Column text layout matrix --- */
.story-content-side {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.story-section-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.story-content-side h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.story-content-side h2 .story-accent-weight {
  font-weight: 700;
  color: var(--blob-green);
}

.story-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

/* --- Right Column support matrix layout card --- */
.story-matrix-side {
  width: 45%;
}

.story-matrix-box {
  background-color: var(--bg-color); /* Premium light gray-blue background */
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(2, 110, 129, 0.02);
}

.story-matrix-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

/* Premium checklist framework */
.story-pathway-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.story-pathway-list li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--white);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.3;
  border: 1px solid rgba(2, 110, 129, 0.03);
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease;
}

.story-pathway-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 5px 15px rgba(2, 110, 129, 0.04);
}

/* Translucent Icon Wrappers */
.story-icon-badge {
  background-color: rgba(2, 110, 129, 0.06);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.story-pathway-list li:hover .story-icon-badge {
  background-color: var(--text-dark);
  color: var(--white);
}

.story-icon-badge i {
  font-size: 1rem;
}

/* ==========================================
   Responsive Control Framework (Scale Locked)
   ========================================== */
@media (max-width: 1024px) {
  .story-section {
    padding: 6rem 4%;
  }

  .story-container {
    gap: 3rem;
  }

  .story-content-side h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 4rem 5%;
  }

  .story-container {
    flex-direction: column;
    gap: 3rem;
  }

  .story-content-side {
    width: 100%;
    text-align: center;
  }

  .story-content-side h2 {
    font-size: 2.2rem; /* Scale lock protected value */
  }

  .story-matrix-side {
    width: 100%;
  }

  .story-matrix-box {
    padding: 2.5rem 1.8rem;
    border-radius: 24px;
    text-align: left; /* Keep listing text left-aligned for clear read-flow */
  }
  
  .story-matrix-box h3 {
    font-size: 1.25rem; /* Scale lock protected value */
    text-align: center;
  }

  .story-pathway-list li {
    font-size: 0.95rem; /* Scale lock protected value */
  }
}


/* ==========================================
   Corporate Identity (Vision & Mission) Styles
   ========================================== */
.identity-section {
  background-color: var(--bg-color); /* Premium soft grey-blue background accent */
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.identity-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Symmetrical 2-column layout matrix */
  gap: 3rem;
  width: 100%;
  max-width: 1250px;
}

/* Premium Apple-Style Interactive Identity Cards */
.identity-card {
  background-color: var(--white);
  border-radius: 32px;
  padding: 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 40px rgba(2, 110, 129, 0.02);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.identity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(2, 110, 129, 0.08);
}

/* Subtle Accent Icon Decorators */
.identity-icon-wrapper {
  background-color: rgba(2, 110, 129, 0.04);
  color: var(--icon-color);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.identity-card:hover .identity-icon-wrapper {
  background-color: var(--text-dark);
  color: var(--white);
  transform: scale(1.05);
}

.card-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.identity-card h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.identity-card h2 .accent-text {
  font-weight: 700;
  color: var(--blob-green);
}

.identity-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  opacity: 0.8;
}

/* ==========================================
   Responsive Control Framework (Scale Locked)
   ========================================== */
@media (max-width: 1024px) {
  .identity-section {
    padding: 6rem 4%;
  }

  .identity-container {
    gap: 2rem;
  }

  .identity-card {
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
  }

  .identity-card h2 {
    font-size: 2.1rem; /* Strict Protection: Scale lock verified */
  }

  .identity-card p {
    font-size: 1.05rem; /* Strict Protection: Scale lock verified */
  }
}

@media (max-width: 768px) {
  .identity-section {
    padding: 4rem 5%;
  }

  .identity-container {
    grid-template-columns: 1fr; /* Stacks to a singular list on mobile layouts */
    gap: 1.5rem;
  }

  .identity-card {
    padding: 3rem 2rem;
    border-radius: 24px;
    align-items: center; /* Center aligning structural elements for clean readability */
    text-align: center;
  }

  .identity-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
  }

  .card-tag {
    letter-spacing: 1.5px;
  }

  .identity-card h2 {
    font-size: 2.1rem; /* Strict Protection: Scale lock verified */
    margin-bottom: 1rem;
  }

  .identity-card p {
    font-size: 1.05rem; /* Strict Protection: Scale lock verified */
    line-height: 1.5;
  }
}



/* ==========================================
   Our Values Section Styles Override Extension
   ========================================== */
.strat-services-section {
  background-color: var(--white); /* Crisp alternating flow separation */
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

/* Premium Layout Grid Configuration for Values */
.strat-premium-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Pristine 3-column split grid desk baseline */
  gap: 2.5rem;
  width: 100%;
  max-width: 1250px;
  align-items: stretch; /* Aligns all cards to equal height dynamically */
}

.strat-package-card {
  background-color: var(--white);
  border: 1px solid rgba(2, 110, 129, 0.08); /* Clean modern minimalist border layout shape */
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(2, 110, 129, 0.01);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.strat-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2, 110, 129, 0.06);
  border-color: rgba(2, 110, 129, 0.15);
}

.strat-card-icon-badge i {
  font-size: 1.3rem; /* Crisp vector layout alignment */
}

/* ==========================================
   Responsive Control Framework (Scale Locked)
   ========================================== */
@media (max-width: 1024px) {
  .strat-services-section {
    padding: 6rem 4%;
  }

  .strat-premium-packages-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns split on tablets */
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .strat-services-section {
    padding: 4rem 5%;
  }

  .strat-services-main-header {
    margin-bottom: 2.5rem;
  }

  .strat-premium-packages-grid {
    grid-template-columns: 1fr; /* Singular column vertical list on mobile screen sizes */
    gap: 1.5rem;
    max-width: 450px; /* Comfortable center layout framing */
  }

  .strat-package-card-body {
    padding: 2.5rem 2rem;
    align-items: center; /* Beautiful structured symmetrical line layout for mobiles */
    text-align: center;
  }

  .strat-card-icon-badge {
    margin-bottom: 1.25rem;
  }

  /* --- Scale Protection Locks --- */
  .strat-services-main-header h2 {
    font-size: 2.2rem; /* Protected high-impact text frame */
  }

  .strat-package-card-body h3 {
    font-size: 1.6rem; /* Protected title scale */
    margin-bottom: 0.75rem;
  }

  .strat-package-desc {
    font-size: 1.05rem; /* Protected description clarity scale */
    line-height: 1.6;
  }
}



/* ==========================================
   Our Approach Section Layout Core
   ========================================== */
.approach-section {
  background-color: var(--bg-color); /* Premium alternating light blue-gray background */
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

.approach-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
  max-width: 1250px;
}

/* --- Left Side Visual Layout Frame --- */
.approach-visual-side {
  width: 45%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Asymmetric luxury curve frame echoing global design theme */
.approach-image-mask {
  position: relative;
  z-index: 2;
  width: 500px;
  height: 550px;
  background: linear-gradient(135deg, var(--text-dark) 0%, #011d33 100%);
  border-radius: 200px 200px 30px 200px;
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 50px rgba(2, 55, 93, 0.12);
}

.approach-text-overlay {
  display: flex;
  flex-direction: column;
}

.approach-section-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blob-tan); /* High contrast vibrant tint for dark background grid */
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.approach-text-overlay h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.approach-text-overlay h2 .approach-accent-weight {
  font-weight: 700;
  color: var(--white);
}

.approach-main-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--white);
  opacity: 0.85;
}

/* Drifting soft background element */
.approach-bg-blob {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 300px;
  height: 300px;
  background-color: var(--blob-green);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
  animation: floatCircle 5s ease-in-out infinite;
}

/* --- Right Side Discovery List Matrix --- */
.approach-matrix-side {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.approach-matrix-header {
  margin-bottom: 3rem;
}

.approach-matrix-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.approach-matrix-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Custom left-bordered step pipeline framework */
.approach-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 2px dashed rgba(2, 110, 129, 0.2);
  padding-left: 2.5rem;
  margin-left: 0.8rem;
}

.approach-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  transition: transform 0.2s ease;
}

.approach-step-card:hover {
  transform: translateX(4px);
}

/* Floating index layout badge centered directly over the dashed border timeline line */
.approach-badge-num {
  position: absolute;
  left: calc(-2.5rem - 13px);
  top: 2px;
  background-color: var(--white);
  color: var(--blob-green);
  font-weight: 700;
  font-size: 0.85rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blob-green);
  z-index: 5;
}

.approach-card-txt h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.approach-card-txt p {
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text-dark);
  opacity: 0.8;
}

/* ==========================================
   Responsive Breakpoint Control Framework (Full Scale Locked)
   ========================================== */
@media (max-width: 1024px) {
  .approach-section {
    padding: 6rem 4%;
  }

  .approach-container {
    gap: 3rem;
  }

  .approach-image-mask {
    width: 380px;
    height: 480px;
    padding: 3.5rem 2.5rem;
  }

  .approach-text-overlay h2 {
    font-size: 2.6rem;
  }

  .approach-matrix-header h3 {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  .approach-section {
    padding: 4rem 5%;
  }

  .approach-container {
    flex-direction: column;
    gap: 3.5rem;
  }

  /* Move textual statement box back to top under phone viewing profiles */
  .approach-visual-side {
    width: 100%;
    justify-content: center;
  }

  .approach-image-mask {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: auto;
    border-radius: 40px;
    padding: 3rem 2rem;
    text-align: center;
  }

  .approach-bg-blob {
    left: 10%;
    top: -10px;
    width: 200px;
    height: 200px;
  }

  .approach-matrix-side {
    width: 100%;
  }

  .approach-matrix-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .approach-grid-container {
    padding-left: 2rem;
    margin-left: 0.5rem;
    text-align: left; /* Strict alignment protection for listing elements */
  }

  .approach-badge-num {
    left: calc(-2rem - 13px);
  }

  /* --- Strict Scale Locks (Font Protection) --- */
  .approach-text-overlay h2 {
    font-size: 2.2rem;
  }

  .approach-matrix-header h3 {
    font-size: 1.6rem;
  }

  .approach-matrix-header p,
  .approach-main-desc {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .approach-card-txt h4 {
    font-size: 1.25rem;
  }

  .approach-card-txt p {
    font-size: 1.02rem;
  }
}


/* ==========================================
   Why Choose Lexaro Section Styles Finalized
   ========================================== */
.why-choose-section {
  background-color: var(--white); /* Pure white surface contrast breakout step */
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.why-choose-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
  max-width: 1250px;
}

/* --- Left Side Text Grid Architecture --- */
.why-text-side {
  width: 52%;
  display: flex;
  flex-direction: column;
}

.why-text-side h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 300;
  color: var(--text-dark);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.why-text-side h2 .accent-weight {
  font-weight: 700;
  color: var(--blob-green);
}

.why-section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* --- Feature Items Stack Layout --- */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon-wrapper {
  background-color: rgba(2, 110, 129, 0.05);
  color: var(--icon-color);
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0; /* Prevents icon mask shrinking on multi-line text descriptions */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
  background-color: var(--text-dark);
  color: var(--white);
}

.feature-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.feature-info p {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-dark);
  opacity: 0.8;
}

/* --- Right Side Visual Mask Architecture --- */
.why-image-side {
  width: 42%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.why-image-mask {
  position: relative;
  z-index: 2;
  width: 480px;
  height: 56px; /* Dynamic height bound by aspect ratios below */
  height: 560px;
  border-radius: 90px 25px 90px 90px; /* Modern asymmetric shape matching corporate framework */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(2, 110, 129, 0.04);
}

.why-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-bg-shape {
  position: absolute;
  top: 20px;
  right: 20px; /* Aligned symmetrically to anchor the drifting layout offset */
  width: 480px;
  height: 560px;
  background-color: var(--bg-color);
  border-radius: 90px 25px 90px 90px;
  z-index: 1;
  animation: floatAnimation 4s ease-in-out infinite;
  animation-delay: 0.3s; 
}

/* ==========================================
   Responsive Control Framework (Scale Locked)
   ========================================== */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 6rem 4%;
  }

  .why-choose-container {
    gap: 3rem;
  }

  .why-text-side {
    width: 55%;
  }

  .why-image-side {
    width: 40%;
  }

  .why-image-mask, 
  .why-bg-shape {
    width: 360px;
    height: 440px;
  }

  .why-text-side h2 {
    font-size: 2.6rem;
  }

  .why-section-subtitle {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 4rem 5%;
  }

  .why-choose-container {
    flex-direction: column;
    gap: 3.5rem;
    text-align: center;
  }

  .why-text-side {
    width: 100%;
    align-items: center;
  }

  .why-text-side h2 {
    font-size: 2.2rem; /* Strict Protection: Scale lock verified */
    margin-bottom: 1.2rem;
  }

  .why-section-subtitle {
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }

  /* Structural orientation adjustments for feature stacks on phones */
  .features-grid {
    gap: 2rem;
    text-align: left; /* Strict design lock: lists remain left-aligned for scannability */
  }

  .feature-item {
    flex-direction: column; /* Stack icons over descriptions on ultra thin views */
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .feature-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  /* Right Side Visual Mask layout reposition down */
  .why-image-side {
    width: 100%;
    justify-content: center;
  }

  .why-image-mask,
  .why-bg-shape {
    width: 280px;
    height: 350px;
    border-radius: 60px 20px 60px 60px;
  }

  .why-bg-shape {
    left: 10px;
    top: 10px;
  }

  /* --- Font Protection Locks --- */
  .feature-info h3 {
    font-size: 1.3rem; /* Strict Protection: Scale lock verified */
  }

  .feature-info p {
    font-size: 1.02rem; /* Strict Protection: Scale lock verified */
    line-height: 1.55;
  }
}



/* ==========================================
   The Future of Lexaro Section Styles Finalized
   ========================================== */
.final-cta-section {
  background-color: var(--white); /* Seamless flush continuation with previous sections */
  padding: 4rem 4% 8rem 4%;      /* Balances layout spacing pushing down to the footer curves */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

/* Luxury Card Frame with Deep Theme Tint */
.final-cta-card {
  width: 100%;
  max-width: 1250px;
  background-color: var(--text-dark); /* Deep Abyss luxury dominant layout tone */
  border-radius: 40px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(2, 55, 93, 0.15);
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Glassmorphism Subtle Internal Light Reflection Layer */
.cta-glass-blur {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 168, 181, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Specialized High-Contrast Tag for Dark Layout Context */
.invert-tag {
  color: var(--blob-tan) !important;
  margin-bottom: 1.5rem;
}

.final-cta-content h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.8rem;
  letter-spacing: -0.5px;
}

.final-cta-content h2 .accent-weight {
  font-weight: 700;
  color: var(--white);
}

.final-cta-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 3.5rem;
}

/* --- Twin Action Trigger Button Group --- */
.final-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Primary Contrast Pill Option */
.primary-final-cta {
  background-color: var(--white);
  color: var(--text-dark);
}

.primary-final-cta:hover {
  background-color: var(--blob-tan);
  color: var(--white);
  transform: translateY(-3px);
}

/* Secondary Translucent Glass Option */
.secondary-final-cta {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.secondary-final-cta i {
  margin-left: 0.75rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.secondary-final-cta:hover {
  background-color: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ==========================================
   Responsive Breakpoint Control Framework (Full Scale Locked)
   ========================================== */
@media (max-width: 1024px) {
  .final-cta-section {
    padding: 3rem 4% 6rem 4%;
  }

  .final-cta-card {
    padding: 4.5rem 3rem;
    border-radius: 35px;
  }

  /* --- Strict Scale Locks (Font Protection) --- */
  .final-cta-content h2 {
    font-size: 2.8rem; /* Strict Protection: Scale lock verified */
    margin-bottom: 1.5rem;
  }

  .final-cta-buttons {
    flex-direction: row; /* Keeps buttons side-by-side beautifully on tablet */
    gap: 1rem;
  }

  .primary-final-cta, 
  .secondary-final-cta {
    width: auto;
    padding: 1.1rem 2rem;
  }
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 2rem 5% 4rem 5%;
  }

  .final-cta-card {
    padding: 3rem 1.5rem;
    border-radius: 30px;
  }

  /* --- Strict Scale Locks (Font Protection) --- */
  .final-cta-content h2 {
    font-size: 2.2rem; /* Strict Protection: Scale lock verified */
    line-height: 1.3;
    margin-bottom: 1.2rem;
  }

  .final-cta-subtitle {
    font-size: 1.15rem; /* Strict Protection: Scale lock verified */
    line-height: 1.6;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }

  /* Button layout stacks cleanly to vertically fill phone widths */
  .final-cta-buttons {
    flex-direction: column; 
    gap: 1rem;
    width: 100%;
  }

  .primary-final-cta, 
  .secondary-final-cta {
    width: 100%;
    max-width: 320px; /* Clean tracking boundary control mapping */
    padding: 1.1rem 1.5rem;
  }
}



/* ==========================================
   Final Conversion CTA Section Layout Core
   ========================================== */
.final-conversion-section {
  background-color: var(--white); /* Seamless flush continuation with preceding text sections */
  padding: 4rem 4% 8rem 4%;      /* Symmetrically scales down and pushes directly to the footer */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

/* Luxury Card Frame with Deep Theme Tint */
.conversion-cta-card {
  width: 100%;
  max-width: 1250px;
  background-color: var(--text-dark); /* Deep Abyss luxury dominant layout tone */
  border-radius: 40px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(2, 55, 93, 0.15);
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Glassmorphism Subtle Internal Light Reflection Layer */
.conversion-glass-blur {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 168, 181, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.conversion-cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* High-Contrast Tag for Dark Layout Context */
.invert-tag {
  color: var(--blob-tan) !important;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.conversion-cta-content h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.8rem;
  letter-spacing: -0.5px;
}

.conversion-cta-content h2 .accent-weight {
  font-weight: 700;
  color: var(--white);
}

.conversion-cta-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 3.5rem;
}

/* --- Action Trigger Button Group --- */
.conversion-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Left Main Premium Contrast Call To Action */
.primary-conversion-cta {
  background-color: var(--white);
  color: var(--text-dark);
}

.primary-conversion-cta:hover {
  background-color: var(--blob-tan);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 168, 181, 0.25);
}

/* Right Translucent Layout Option */
.secondary-conversion-cta {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.secondary-conversion-cta i {
  margin-left: 0.75rem;
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.secondary-conversion-cta:hover {
  background-color: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

.secondary-conversion-cta:hover i {
  transform: translateX(4px); /* Arrow shoots forward subtly on hover interaction */
}

/* ==========================================
   Responsive Breakpoint Control Framework (Full Scale Locked)
   ========================================== */
@media (max-width: 1024px) {
  .final-conversion-section {
    padding: 3rem 4% 6rem 4%;
  }

  .conversion-cta-card {
    padding: 4.5rem 3rem;
    border-radius: 35px;
  }

  /* --- Strict Scale Locks (Font Protection) --- */
  .conversion-cta-content h2 {
    font-size: 2.8rem; /* Strict Protection: Scale lock verified */
    margin-bottom: 1.5rem;
  }

  .conversion-cta-buttons {
    flex-direction: row; 
    gap: 1rem;
  }

  .primary-conversion-cta, 
  .secondary-conversion-cta {
    width: auto;
    padding: 1.1rem 2rem;
  }
}

@media (max-width: 768px) {
  .final-conversion-section {
    padding: 2rem 5% 4rem 5%;
  }

  .conversion-cta-card {
    padding: 3.5rem 1.8rem;
    border-radius: 30px;
  }

  /* --- Strict Scale Locks (Font Protection) --- */
  .conversion-cta-content h2 {
    font-size: 2.2rem; /* Strict Protection: Scale lock verified */
    line-height: 1.3;
    margin-bottom: 1.2rem;
  }

  .conversion-cta-subtitle {
    font-size: 1.15rem; /* Strict Protection: Scale lock verified */
    line-height: 1.6;
    margin-bottom: 2.5rem;
    padding: 0 0.25rem;
  }

  /* Structural stacking setup for mobile layout click interactions */
  .conversion-cta-buttons {
    flex-direction: column; 
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .primary-conversion-cta, 
  .secondary-conversion-cta {
    width: 100%;
    max-width: 320px; 
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
}