/**
 * Montgomery Retirement Solutions - Custom Styles
 * Professional, trust-forward aesthetic
 * Colors: Navy Blue (#1B3A5C) + Gold (#C9A84C)
 */

/* Base Styles */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  margin: 0;
  padding: 0;
  color: #1f2937;
  background-color: #ffffff;
}

/* Headers (H1, H2) = Playfair Display (Portada alternative) */
h1,
h2 {
  font-family: "Playfair Display", serif;
}

/* Subheaders (H3, H4, H5, H6) = Plus Jakarta Sans (Hauss alternative) */
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.025em;
  margin-top: 0;
}

h1 {
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-weight: 700;
  line-height: 1.2;
}

/* ====== BUTTONS - Navy + Gold ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #C9A84C;
  color: #1F2937;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #B8973F;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #1B3A5C;
  border: 2px solid #1B3A5C;
  color: white;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.125rem;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #142D4A;
  border-color: #142D4A;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #C9A84C;
  color: #1F2937;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-size: 1.125rem;
  width: 100%;
}

.btn-cta-large:hover {
  background-color: #B8973F;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .btn-cta-large {
    width: auto;
  }
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* Cards */
.card {
  background-color: white;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ====== SECTION SPACING ====== */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* Container */
.container-custom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ====== HERO SECTION - Light Blue Tint ====== */
.hero-light {
  background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-light {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-light {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.hero-light h1 {
  color: #1f2937;
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  .hero-light h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-light h1 {
    font-size: 3.5rem;
  }
}

.hero-light p {
  color: #4b5563;
}

/* ====== TRUST BADGES ====== */
.trust-badge-hero {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trust-stat {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1B3A5C;
}

.trust-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ====== QUICK LINKS SIDEBAR ====== */
.quick-links-sidebar {
  display: none;
  position: fixed;
  top: 6rem;
  right: 2rem;
  width: 18rem;
  z-index: 40;
}

@media (min-width: 1380px) {
  .quick-links-sidebar {
    display: block;
  }
}

.quick-links-box {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: sticky;
  top: 6rem;
  border: 1px solid #e5e7eb;
}

.quick-links-header {
  background: linear-gradient(135deg, #1B3A5C 0%, #2C5282 100%);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-links-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #C9A84C;
  flex-shrink: 0;
}

.quick-links-header span {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.quick-links-list {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #ffffff;
}

.quick-link-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.quick-link-item:hover {
  background-color: #EBF4FF;
}

.quick-link-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #1B3A5C;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.quick-link-item span {
  color: #1f2937;
  font-size: 0.875rem;
}

/* ====== SIDEBAR CTA BUTTON ANIMATION ====== */
.quick-link-item.cta-highlight {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15) 0%,
    rgba(201, 168, 76, 0.1) 100%
  );
  border: 1px solid #C9A84C;
  animation: cta-pulse 2s ease-in-out infinite;
}

.quick-link-item.cta-highlight span {
  font-weight: 700;
  color: #1B3A5C;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0);
    transform: scale(1.02);
  }
}

/* ====== ACTIVE SECTION HIGHLIGHTING ====== */
.quick-link-item.active {
  background-color: rgba(27, 58, 92, 0.1);
  border-left: 3px solid #1B3A5C;
  color: #1B3A5C;
}

.quick-link-item.active svg {
  color: #1B3A5C;
}

.quick-link-item.active span {
  font-weight: 700;
  color: #1B3A5C;
}

/* ====== BENEFIT CARDS ====== */
.benefit-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.benefit-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 168, 76, 0.5);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #EBF4FF;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #1B3A5C;
  flex-shrink: 0;
}

/* ====== PROBLEM CARDS ====== */
.problem-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.problem-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  width: 4rem;
  height: 4rem;
  background-color: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 2rem;
  height: 2rem;
  color: #dc2626;
  flex-shrink: 0;
}

/* ====== KEY TAKEAWAYS BOX ====== */
.key-takeaways-box {
  background-color: #f5f5f4;
  border-radius: 1rem;
  padding: 2rem;
  border-left: 4px solid #C9A84C;
}

.key-takeaway-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.key-takeaway-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #1B3A5C;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ====== FAQ ACCORDION ====== */
.faq-item {
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background-color: white;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
}

.faq-question:hover {
  background-color: #f5f5f4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease-out,
    padding 0.4s ease-out;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: #f5f5f4;
  border-top: 2px solid #e5e7eb;
  color: #6b7280;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.faq-question-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
  transform: rotate(180deg);
}

/* ====== SECTION BACKGROUNDS ====== */
.section-white {
  background-color: #ffffff;
}

.section-beige {
  background-color: #f9fafb;
}

.section-light-mint {
  background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
}

.section-light-mint h2,
.section-light-mint h3 {
  color: #1f2937;
}

.section-light-mint p {
  color: #4b5563;
}

/* ====== FINAL CTA SECTION ====== */
.section-cta {
  background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  .section-cta {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.section-cta h2,
.section-cta h3 {
  color: #1f2937;
}

.section-cta p {
  color: #4b5563;
}

.section-cta .btn-cta-final {
  background-color: #1B3A5C;
  color: white;
}

.section-cta .btn-cta-final:hover {
  background-color: #142D4A;
}

/* ====== FOOTER - Dark Navy ====== */
.footer-teal {
  background-color: #0F2440;
  color: white;
  padding: 4rem 2rem 2rem 2rem;
}

@media (min-width: 640px) {
  .footer-teal {
    padding: 5rem 4rem 3rem 4rem;
  }
}

.footer-teal a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-teal a:hover {
  color: #C9A84C;
}

/* ====== TESTIMONIAL CARDS ====== */
.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ====== TESTIMONIALS SLIDER - Interactive ====== */
.testimonials-slider-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  max-width: 100%;
  contain: layout;
}

.testimonials-slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-out;
  cursor: grab;
  will-change: transform;
}

.testimonials-slider-track:active {
  cursor: grabbing;
}

.testimonials-slider-track.dragging {
  transition: none !important;
  cursor: grabbing;
}

.testimonial-card-single {
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .testimonial-card-single {
    min-width: 300px;
    max-width: 300px;
  }
}

/* Slider Navigation Arrows */
.testimonials-nav {
  display: none;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .testimonials-nav {
    display: flex;
  }
}

.testimonials-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #f5f5f4;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1B3A5C;
}

.testimonials-nav-btn:hover {
  background-color: #1B3A5C;
  border-color: #1B3A5C;
  color: white;
  transform: scale(1.1);
}

.testimonials-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Slider Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dot.active {
  background-color: #C9A84C;
  width: 1.5rem;
  border-radius: 9999px;
}

/* ====== COMPARISON SECTION ====== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
}

.comparison-card.highlight {
  background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
  border-color: #1B3A5C;
  position: relative;
}

.comparison-card.highlight::before {
  content: "Recommended";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #C9A84C;
  color: #1F2937;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

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

.comparison-icon-check {
  width: 1.5rem;
  height: 1.5rem;
  color: #1B3A5C;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.comparison-icon-x {
  width: 1.5rem;
  height: 1.5rem;
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.comparison-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* ====== QUALIFICATION SECTION ====== */
.iul-right-for-you {
  background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .iul-right-for-you {
    padding: 2rem;
  }
}

.iul-right-for-you h2 {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .iul-right-for-you h2 {
    font-size: 2.5rem;
  }
}

.iul-right-for-you p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.iul-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .iul-checklist {
    grid-template-columns: 1fr 1fr;
  }
}

.iul-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1f2937;
  font-weight: 500;
}

.iul-checklist-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #1B3A5C;
  flex-shrink: 0;
}

/* ====== STANDALONE CTA SECTION ====== */
.cta-section {
  background: linear-gradient(135deg, #1B3A5C 0%, #2C5282 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 3rem 4rem;
  }
}

.cta-section h2 {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

.cta-section .btn-cta-mint {
  background-color: #C9A84C;
  color: #1F2937;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.cta-section .btn-cta-mint:hover {
  background-color: #B8973F;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* ====== INLINE CTA BUTTON - Within Sections ====== */
.inline-cta-button {
  background-color: #1B3A5C;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}

.inline-cta-button:hover {
  background-color: #142D4A;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* ====== MOBILE FLOATING CTA BUTTON ====== */
.mobile-cta-float {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: none;
  width: auto;
  max-width: 90%;
  animation: breathe 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .mobile-cta-float {
    display: block;
  }
}

.mobile-cta-float a {
  background: linear-gradient(135deg, #1B3A5C 0%, #2C5282 100%);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(27, 58, 92, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}

.mobile-cta-float a:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(27, 58, 92, 0.5);
}

@keyframes breathe {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.03);
  }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-pulse-slow {
  animation: pulse 2s ease-in-out infinite;
}

/* ====== MOBILE MENU ====== */
#mobile-menu {
  padding-bottom: 1rem;
}

#mobile-menu.hidden {
  display: none;
}

@media (min-width: 768px) {
  #mobile-menu {
    display: none;
  }
}

/* ====== STICKY HEADER ====== */
header.sticky {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ====== SCROLL PROGRESS BAR ====== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, #C9A84C, #1B3A5C);
  z-index: 100;
  transition: width 0.1s ease;
}

/* ====== PRINT STYLES ====== */
@media print {
  header,
  footer,
  .no-print,
  .quick-links-sidebar {
    display: none !important;
  }
}

/* ====== ACCESSIBILITY ====== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 3px solid #C9A84C;
  outline-offset: 3px;
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ====== RESPONSIVE BREAKPOINTS ====== */
@media (max-width: 1379px) {
  .quick-links-sidebar {
    display: none;
  }

  .hero-light {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: 2rem;
  }

  @media (min-width: 640px) {
    h1 {
      font-size: 2.25rem;
    }
  }
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .trust-badge-hero {
    justify-content: center;
  }
}

/* ====== UTILITY CLASSES ====== */
.text-text-dark {
  color: #1f2937;
}

.text-text-light {
  color: #6b7280;
}

.text-primary {
  color: #1B3A5C;
}

.text-secondary {
  color: #C9A84C;
}

.bg-bg-light {
  background-color: #f9fafb;
}

.bg-white {
  background-color: #ffffff;
}

.border-border {
  border-color: #e5e7eb;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.max-w-content {
  max-width: 800px;
}

.max-w-container {
  max-width: 1200px;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.items-center {
  align-items: center;
}

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

.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
  }
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-16 {
  width: 4rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-16 {
  height: 4rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-90 {
  opacity: 0.9;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.border-4 {
  border-width: 4px;
}

.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-red-100 {
  background-color: #fee2e2;
}

.text-red-600 {
  color: #dc2626;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.inline {
  display: inline;
}

.inline-flex {
  display: inline-flex;
}

.justify-center {
  justify-content: center;
}

.gap-3 {
  gap: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}
