/*
 * Landing Page Sections - Shared Styles
 * Provides consistent styling for all reusable landing page components
 * Used by: services.html, why-us.html, how-it-works.html, faq-general.html, cta-box.html
 */

/* ============================================
   CSS Variables & Root Settings
   ============================================ */
:root {
  --bg-dark: #0b0b0d;
  --panel-dark: linear-gradient(160deg, rgba(242, 182, 50, 0.12), rgba(8, 8, 10, 0.95));
  --highlight: #f6e7a4;
  --text-light: #f5f5f5;
  --muted: #c7c7c7;
  --accent-hover: #ffe9b3;
  --max-width: 1200px;
  --transition: 0.2s ease-in-out;
  --gold-gradient: linear-gradient(
    90deg,
    #fdf7dc 0%,
    #f1d78a 12%,
    #ddb45a 24%,
    #c89338 36%,
    #b97c28 48%,
    #c89338 60%,
    #ddb45a 72%,
    #f1d78a 84%,
    #fdf7dc 100%,
    #f1d78a 112%,
    #ddb45a 124%,
    #c89338 136%,
    #b97c28 148%,
    #c89338 160%,
    #ddb45a 172%,
    #f1d78a 184%,
    #fdf7dc 200%
  );
}

/* ============================================
   Animation Keyframes
   ============================================ */
@keyframes auroraFlowGlobal {
  0% { background-position: 0% 0%; }
  100% { background-position: -200% 0%; }
}

@keyframes auroraFlowSeamless {
  0% { background-position: 0% 50%; }
  100% { background-position: -200% 50%; }
}

@keyframes auroraFlowTrulySeamless {
  0% { background-position: 0% 50%; }
  100% { background-position: -400% 50%; }
}

@keyframes borderTravel {
  0% {
    background-position: 0% 50%, -50% 50%;
  }
  100% {
    background-position: -300% 50%, 250% 50%;
  }
}

@keyframes floater {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes glowPingPong {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: -200% 50%;
  }
}

/* ============================================
   Section Headings
   ============================================ */
section h2,
.content-section h2,
.final-cta-section h2 {
  position: relative;
  display: inline-block;
  color: var(--highlight);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: auroraFlowSeamless 8s linear infinite;
  text-shadow: 0 0 25px rgba(242, 182, 50, 0.35), 0 0 45px rgba(242, 182, 50, 0.25);
}

section {
  margin-bottom: 3.5rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--highlight);
}

/* ============================================
   Scroll Fade Animations
   ============================================ */
.scroll-fade {
  --scroll-x: 0;
  --scroll-y: 1.5rem;
  opacity: 0;
  transform: translate3d(var(--scroll-x), var(--scroll-y), 0);
  will-change: opacity, transform;
}

.scroll-fade.in-view {
  transition: opacity 1.35s cubic-bezier(0.19, 1, 0.22, 1), transform 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.scroll-fade[data-scroll="left"] {
  --scroll-x: -40vw;
  --scroll-y: 0;
}

.scroll-fade[data-scroll="right"] {
  --scroll-x: 40vw;
  --scroll-y: 0;
}

.scroll-fade.scroll-slow.in-view {
  transition: opacity 1.9s cubic-bezier(0.19, 1, 0.22, 1),
              transform 1.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.scroll-fade.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-fade {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   Border Animated Utility Class
   ============================================ */
.border-animated {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.border-animated::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px !important;
  box-sizing: content-box !important;
  border-radius: inherit;
  background-image:
    linear-gradient(
      90deg,
      #fdf7dc,
      #f1d78a,
      #ddb45a,
      #c89338,
      #b97c28,
      #c89338,
      #ddb45a,
      #f1d78a,
      #fdf7dc
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 55%,
      transparent 100%
    );
  background-size: 300% 300%, 200% 200%;
  background-position: 0% 50%, -50% 50%;
  animation: borderTravel 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   Section Background Styles
   ============================================ */
.section-with-bg {
  position: relative;
  overflow: hidden;
}

.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.section-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 13, 0.9);
  z-index: 1;
}

.section-with-bg > * {
  position: relative;
  z-index: 2;
}

#services .section-bg-image,
#services .section-bg-overlay {
  display: none;
}

#services.section-with-bg,
.why-us-section.section-with-bg,
.about-section.section-with-bg,
.how-it-works-section.section-with-bg {
  overflow: visible;
}

/* ============================================
   Service Sections (services.html)
   ============================================ */
.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.service-feature:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.service-feature:nth-child(even) .service-text {
  align-items: flex-end;
}

.service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-text h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.7rem);
  color: var(--text-light);
}

.service-text p {
  color: var(--muted);
  font-size: 1rem;
}

.service-image {
  width: 100%;
  flex: 0 0 clamp(240px, 32vw, 360px);
  height: clamp(220px, 26vw, 320px);
  position: relative;
  border-radius: 1.5rem;
  display: flex;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.service-image::before,
.service-image::after {
  display: none;
}

.service-image-frame {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
  position: relative;
  isolation: isolate;
  z-index: 1;
  box-shadow:
    0 0 25px rgba(255, 215, 128, 0.35),
    inset 0 0 20px rgba(255, 235, 195, 0.2);
  animation: floater 12s ease-in-out infinite;
}

.service-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px !important;
  box-sizing: content-box !important;
  border-radius: inherit;
  background-image:
    linear-gradient(
      90deg,
      #fdf7dc,
      #f1d78a,
      #ddb45a,
      #c89338,
      #b97c28,
      #c89338,
      #ddb45a,
      #f1d78a,
      #fdf7dc
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 55%,
      transparent 100%
    );
  background-size: 300% 300%, 200% 200%;
  background-position: 0% 50%, -50% 50%;
  animation: borderTravel 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  object-fit: cover;
}

.service-feature:nth-child(even) .service-image-frame {
  animation-delay: 6s;
  animation-direction: alternate-reverse;
}

@media (max-width: 900px) {
  .service-feature {
    flex-direction: column;
    text-align: left;
  }

  .service-feature:nth-child(even) {
    flex-direction: column;
    text-align: right;
  }

  .service-feature:nth-child(even) .service-text {
    align-items: flex-end;
  }

  .service-image {
    width: 100%;
    flex: 1 1 auto;
  }
}

@media (max-width: 600px) {
  .service-feature {
    gap: 1.25rem;
  }
}

/* ============================================
   Why Us Section (why-us.html)
   ============================================ */
.why-us-section {
  text-align: center;
}

.why-us-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.why-us-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: center;
}

.why-us-card-shell {
  display: flex;
}

.why-us-card-shell .why-us-card {
  width: 100%;
}

.why-us-card {
  background: var(--panel-dark);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  --card-image: none;
}

.why-us-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(160deg, rgba(242, 182, 50, 0.16), rgba(11, 11, 13, 0.92)),
    linear-gradient(160deg, rgba(11, 11, 13, 0.55), rgba(0, 0, 0, 0.9)),
    var(--card-image);
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  opacity: 1;
  z-index: -1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-us-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px !important;
  box-sizing: content-box !important;
  border-radius: inherit;
  background-image:
    linear-gradient(
      90deg,
      #fdf7dc,
      #f1d78a,
      #ddb45a,
      #c89338,
      #b97c28,
      #c89338,
      #ddb45a,
      #f1d78a,
      #fdf7dc
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 55%,
      transparent 100%
    );
  background-size: 300% 300%, 200% 200%;
  background-position: 0% 50%, -50% 50%;
  animation: borderTravel 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.why-us-card[data-bg="insured"] {
  --card-image: url('../../images/whyus/insured.png');
}

.why-us-card[data-bg="gps"] {
  --card-image: url('../../images/whyus/gps.png');
}

.why-us-card[data-bg="climate"] {
  --card-image: url('../../images/whyus/climate.png');
}

.why-us-card[data-bg="handlers"] {
  --card-image: url('../../images/whyus/handlers.png');
}

.why-us-card[data-bg="concierge"] {
  --card-image: url('../../images/whyus/concierge.png');
}

.why-us-card[data-bg="nationwide"] {
  --card-image: url('../../images/whyus/nationwide.png');
}

.why-us-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 182, 50, 0.4);
  box-shadow: 0 8px 20px rgba(242, 182, 50, 0.15);
}

.why-us-card:hover::before {
  opacity: 0.35;
  transform: scale(1.05);
}

.why-us-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.why-us-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us-section h2 {
    font-size: 1.8rem;
  }

  .why-us-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .why-us-card {
    padding: 1.5rem;
    min-height: 240px;
  }
}

/* ============================================
   How It Works Section (how-it-works.html)
   ============================================ */
.how-it-works-section {
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.how-it-works-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  align-items: stretch;
}

.how-step-shell {
  display: flex;
  position: relative;
  height: 100%;
}

.how-step-shell .how-step {
  width: 100%;
}

.how-step {
  background: linear-gradient(180deg,
    rgba(242, 182, 50, 0.12),
    rgba(8, 8, 10, 0.9));
  border-radius: 1rem;
  padding: 1.5rem 0.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}

.how-step::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px !important;
  box-sizing: content-box !important;
  border-radius: inherit;
  background-image:
    linear-gradient(
      90deg,
      #fdf7dc,
      #f1d78a,
      #ddb45a,
      #c89338,
      #b97c28,
      #c89338,
      #ddb45a,
      #f1d78a,
      #fdf7dc
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 55%,
      transparent 100%
    );
  background-size: 300% 300%, 200% 200%;
  background-position: 0% 50%, -50% 50%;
  animation: borderTravel 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.how-step:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 182, 50, 0.4);
  box-shadow: 0 8px 20px rgba(242, 182, 50, 0.15);
}

.how-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  background-size: 400% 400%;
  background-position: 0% 50%;
  animation: auroraFlowTrulySeamless 20s linear infinite;
  box-shadow: 0 0 20px rgba(107, 82, 32, 0.4), 0 0 35px rgba(107, 82, 32, 0.2);
  color: #0b0b0d;
  font-size: 1.3rem;
  font-family: "Audiowide", "Times New Roman", Times, serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.how-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.how-step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .how-it-works-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .how-step-shell:nth-child(3)::after {
    display: none;
  }

  .how-step {
    padding: 1.75rem 1.25rem;
  }

  .how-step h3 {
    font-size: 1.2rem;
  }

  .how-step p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .how-step-shell {
    width: 95%;
    margin: 0 auto;
  }

  .how-step-shell::after {
    display: none;
  }

  .how-it-works-section h2 {
    font-size: 1.8rem;
  }

  .how-it-works-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .how-step {
    padding: 1.35rem;
    min-height: 260px;
  }

  .how-step h3 {
    font-size: 1.25rem;
  }

  .how-step p {
    font-size: 0.95rem;
  }
}

/* ============================================
   FAQ Section (faq-general.html)
   ============================================ */
.landing-faq-section {
  text-align: center;
  margin-bottom: 4rem;
}

.landing-faq-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.landing-faq-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.landing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.landing-faq-item {
  background: linear-gradient(180deg,
    rgba(242, 182, 50, 0.12),
    rgba(8, 8, 10, 0.9));
  border-radius: 0.8rem;
  overflow: hidden;
  transition: border-color var(--transition);
  box-shadow: none;
  text-align: left;
  position: relative;
  isolation: isolate;
}

.landing-faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px !important;
  box-sizing: content-box !important;
  border-radius: inherit;
  background-image:
    linear-gradient(
      90deg,
      #fdf7dc,
      #f1d78a,
      #ddb45a,
      #c89338,
      #b97c28,
      #c89338,
      #ddb45a,
      #f1d78a,
      #fdf7dc
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 55%,
      transparent 100%
    );
  background-size: 300% 300%, 200% 200%;
  background-position: 0% 50%, -50% 50%;
  animation: borderTravel 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.landing-faq-item.active {
  border-color: rgba(242, 182, 50, 0.4);
  box-shadow: none;
}

.landing-faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  font-family: inherit;
  color: inherit;
}

.landing-faq-question > span:first-child {
  background: var(--gold-gradient);
  background-size: 200% auto;
  background-position: 50% 0%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: auroraFlowGlobal 8s linear infinite;
}

.landing-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.55)),
    var(--gold-gradient);
  background-size: 200% 200%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.landing-faq-item.active .landing-faq-icon {
  transform: rotate(45deg);
  background: var(--gold-gradient);
  background-size: 400% 400%;
  background-position: 0% 50%;
  animation: auroraFlowTrulySeamless 20s linear infinite;
  box-shadow: 0 0 20px rgba(107, 82, 32, 0.4), 0 0 35px rgba(107, 82, 32, 0.2);
  color: #0b0b0d;
}

.landing-faq-answer {
  max-height: 0 !important;
  overflow: hidden;
  padding: 0 !important;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.landing-faq-item.active .landing-faq-answer {
  max-height: 1000px !important;
  padding: 0 1.5rem 1.5rem 1.5rem !important;
}

.landing-faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.landing-faq-answer p:last-child {
  margin-bottom: 0;
}

.landing-faq-answer a {
  color: var(--highlight);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .landing-faq-section h2 {
    font-size: 1.8rem;
  }

  .landing-faq-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .landing-faq-question {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .landing-faq-answer p {
    font-size: 0.9rem;
  }
}

/* ============================================
   CTA Section (cta-box.html)
   ============================================ */
.final-cta-section {
  background-image:
    linear-gradient(165deg, rgba(11, 11, 13, 0.85) 20%, rgba(242, 182, 50, 0.25) 100%),
    url('../../images/ready/truck1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.45));
  z-index: 0;
  opacity: 0.5;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px !important;
  box-sizing: content-box !important;
  border-radius: inherit;
  background-image:
    linear-gradient(
      90deg,
      #fdf7dc,
      #f1d78a,
      #ddb45a,
      #c89338,
      #b97c28,
      #c89338,
      #ddb45a,
      #f1d78a,
      #fdf7dc
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 55%,
      transparent 100%
    );
  background-size: 300% 300%, 200% 200%;
  background-position: 0% 50%, -50% 50%;
  animation: borderTravel 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.final-cta-section > * {
  position: relative;
  z-index: 2;
}

.final-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--highlight);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: auroraFlowSeamless 8s linear infinite;
  text-shadow: 0 0 25px rgba(242, 182, 50, 0.35), 0 0 45px rgba(242, 182, 50, 0.25);
}

.final-cta-section p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  transition: transform var(--transition), filter var(--transition);
}

.cta-btn-primary {
  background: var(--gold-gradient);
  background-size: 200% auto;
  background-position: 50% 0%;
  color: #0b0b0d;
  border: none;
  animation: auroraFlowGlobal 8s linear infinite;
}

.cta-btn-secondary {
  background: rgba(242, 182, 50, 0.1);
  border: 2px solid var(--highlight);
  color: var(--highlight);
}

.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 2rem 1.5rem;
  }

  .final-cta-section h2 {
    font-size: 1.6rem;
  }

  .final-cta-section p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
