/* ============================================
   Global Animations
   ============================================ */

/* LP2-style shine sweep animation for all buttons */
@keyframes btn-shine {
  0%   { left: -100px; }
  60%  { left: 100%; }
  100% { left: 100%; }
}

/* ============================================
   Unified Button Shine Effect
   Applies to ALL primary/CTA/submit buttons
   ============================================ */
.btn-cta-primary,
.btn-cta-primary-banner,
.btn-consultation-primary,
.btn-dream-primary,
.btn-platform-primary,
.btn-package-primary,
.btn-package-bottom-primary,
.btn-path-primary,
.btn-success-gradient,
.btn-testimonial-cta,
.btn-form-submit,
.bds-btn-primary,
.bsc-cta,
.cf-btn-primary,
.gyb-btn-primary,
.gyb-submit-btn,
.hs-btn-primary,
.editing-btn-primary,
.rts-btn,
.modern-submit-btn,
.simple-submit-btn,
.wop-cta,
.btn-primary-gradient {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* Shine pseudo-element */
.btn-cta-primary::before,
.btn-cta-primary-banner::before,
.btn-consultation-primary::before,
.btn-dream-primary::before,
.btn-platform-primary::before,
.btn-package-primary::before,
.btn-package-bottom-primary::before,
.btn-path-primary::before,
.btn-success-gradient::before,
.btn-testimonial-cta::before,
.btn-form-submit::before,
.bds-btn-primary::before,
.bsc-cta::before,
.cf-btn-primary::before,
.gyb-btn-primary::before,
.gyb-submit-btn::before,
.hs-btn-primary::before,
.editing-btn-primary::before,
.rts-btn::before,
.modern-submit-btn::before,
.simple-submit-btn::before,
.wop-cta::before,
.btn-primary-gradient::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

/* Shine on hover */
.btn-cta-primary:hover::before,
.btn-cta-primary-banner:hover::before,
.btn-consultation-primary:hover::before,
.btn-dream-primary:hover::before,
.btn-platform-primary:hover::before,
.btn-package-primary:hover::before,
.btn-package-bottom-primary:hover::before,
.btn-path-primary:hover::before,
.btn-success-gradient:hover::before,
.btn-testimonial-cta:hover::before,
.btn-form-submit:hover:not(:disabled)::before,
.bds-btn-primary:hover::before,
.bsc-cta:hover::before,
.cf-btn-primary:hover::before,
.gyb-btn-primary:hover::before,
.gyb-submit-btn:hover::before,
.hs-btn-primary:hover::before,
.editing-btn-primary:hover::before,
.rts-btn:hover::before,
.modern-submit-btn:hover::before,
.simple-submit-btn:hover::before,
.wop-cta:hover::before,
.btn-primary-gradient:hover::before {
  animation: btn-shine 1.5s ease-out infinite;
}

/* Button content stays above the shine */
.btn-cta-primary > *,
.btn-cta-primary-banner > *,
.btn-consultation-primary > *,
.btn-dream-primary > *,
.btn-platform-primary > *,
.btn-package-primary > *,
.btn-package-bottom-primary > *,
.btn-path-primary > *,
.btn-success-gradient > *,
.btn-testimonial-cta > *,
.btn-form-submit > *,
.bds-btn-primary > *,
.bsc-cta > *,
.cf-btn-primary > *,
.gyb-btn-primary > *,
.gyb-submit-btn > *,
.hs-btn-primary > *,
.editing-btn-primary > *,
.rts-btn > *,
.modern-submit-btn > *,
.simple-submit-btn > *,
.wop-cta > *,
.btn-primary-gradient > * {
  position: relative;
  z-index: 2;
}

/* Arrow/icon shift on hover for buttons with icons */
.btn-cta-primary:hover i,
.btn-cta-primary:hover .icon,
.btn-cta-primary-banner:hover i,
.btn-consultation-primary:hover i,
.btn-consultation-primary:hover .icon,
.btn-dream-primary:hover i,
.btn-platform-primary:hover i,
.btn-package-primary:hover i,
.btn-form-submit:hover:not(:disabled) .arrow,
.btn-form-submit:hover:not(:disabled) i {
  transform: translateX(4px);
  transition: transform 0.3s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
}

/* Enhanced transitions for all interactive elements */
a, button, input, textarea, select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth page load animation */
body {
    animation: fadeIn 0.5s ease-in;
}

/* Performance optimizations for animations */
.animate-on-scroll,
section,
.card,
img {
    will-change: transform, opacity;
}

/* Prevent layout shift during animations */
section {
    min-height: 1px;
}

/* Smooth transitions for all animated elements */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   Global Container Styles
   ============================================ */

.container,
section .container,
.hero-section .container,
.authors-section .container,
.publishing-path-section .container {
    max-width: 1320px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (max-width: 576px) {
    .container,
    section .container,
    .hero-section .container,
    .authors-section .container,
    .publishing-path-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ============================================
   Hero Section Styles
   ============================================ */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 50%, #f0f8ff 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-section .row.justify-content-center {
    overflow: visible;
}

.hero-section .col-lg-10 {
    overflow: visible;
    position: relative;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0;
    }
}

/* Section Title */
.section-title {
    color: #012B7F;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 44.28px;
    font-style: normal;
    font-weight: 600;
    line-height: 53.1px; /* 119.919% */
    letter-spacing: -1.163px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 38px;
        line-height: 46px;
        letter-spacing: -1px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.7px;
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -0.5px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
}

/* Main Card */
.main-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, opacity 0.6s ease;
    margin: 0 auto;
    z-index: 1;
}

.hero-carousel .owl-item.active .main-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-carousel .owl-item.active .main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18), 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-carousel .owl-item:not(.active) .main-card {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    opacity: 0.6;
    transform: scale(0.9);
}

/* Ensure carousel items are visible */
.hero-carousel .owl-item {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-carousel .owl-item.active {
    opacity: 1 !important;
}

.hero-carousel .main-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Smooth transitions for all carousel items */
.hero-carousel .owl-item {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Ensure smooth animation */
.hero-carousel .owl-stage {
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
    -webkit-transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Number Section */
.number-section {
    background: #f8f9fa;
    padding: 60px 40px;
    min-height: 500px;
}

.number-container {
    text-align: center;
    width: 100%;
}

.step-number {
    font-size: 192px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: -5px;
}

.number-underline {
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    margin: 20px auto 0;
    border-radius: 3px;
}

@media (max-width: 992px) {
    .number-section {
        min-height: 400px;
        padding: 50px 30px;
    }
    
    .step-number {
        font-size: 128px;
        letter-spacing: -3px;
    }
    
    .number-underline {
        width: 100px;
        height: 5px;
    }
}

@media (max-width: 767px) {
    .number-section {
        min-height: 250px;
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 80px;
        letter-spacing: -2px;
    }
    
    .number-underline {
        width: 70px;
        height: 4px;
        margin: 15px auto 0;
    }
}

@media (max-width: 576px) {
    .number-section {
        min-height: 200px;
        padding: 25px 15px;
    }
    
    .step-number {
        font-size: 64px;
        letter-spacing: -1.5px;
    }
    
    .number-underline {
        width: 60px;
        height: 3px;
        margin: 12px auto 0;
    }
}

/* Content Section */
.content-section {
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.content-wrapper {
    width: 100%;
}

.content-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.content-heading {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-text {
    font-size: 17.6px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

@media (max-width: 992px) {
    .content-section {
        padding: 50px 40px;
    }
    
    .content-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .content-text {
        font-size: 16.8px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .content-section {
        padding: 35px 25px;
    }
    
    .content-tag {
        padding: 6px 16px;
        font-size: 11.2px;
        margin-bottom: 20px;
    }
    
    .content-heading {
        font-size: 24px;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .content-text {
        font-size: 15.2px;
        line-height: 1.7;
        margin-bottom: 28px;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 25px 20px;
    }
    
    .content-tag {
        padding: 5px 14px;
        font-size: 10.4px;
        margin-bottom: 16px;
    }
    
    .content-heading {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .content-text {
        font-size: 14.4px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
}

/* Call-to-Action Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

.btn-primary-gradient:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-primary-gradient:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-primary-gradient:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.btn-outline-gradient {
    background: #ffffff;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-outline-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-outline-gradient * {
    position: relative;
    z-index: 1;
}

.btn-outline-gradient:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline-gradient:hover::before {
    left: 0;
}

.btn-outline-gradient:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-outline-gradient:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.btn-outline-gradient .arrow {
    font-size: 16px;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-outline-gradient:hover .arrow {
    transform: translateX(6px);
}

@media (max-width: 767px) {
    .cta-buttons {
        gap: 12px;
    }
    
    .btn-primary-gradient,
    .btn-outline-gradient {
        padding: 12px 28px;
        font-size: 15.2px;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary-gradient,
    .btn-outline-gradient {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14.4px;
    }
}

/* ============================================
   Owl Carousel Customization
   ============================================ */

.hero-carousel {
    position: relative;
    padding: 0 80px;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible;
}

@media (max-width: 992px) {
    .hero-carousel {
        padding: 0 70px;
    }
    
    .hero-carousel .owl-nav {
        width: calc(100% + 140px);
        left: -70px;
    }
}

@media (max-width: 767px) {
    .hero-carousel {
        padding: 0 60px;
    }
    
    .hero-carousel .owl-nav {
        width: calc(100% + 120px);
        left: -60px;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        padding: 0 20px;
    }
}

.hero-carousel .owl-item {
    padding: 10px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel .owl-stage-outer {
    padding: 20px 0;
    overflow: visible;
    position: relative;
}

.hero-carousel .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.hero-carousel.owl-carousel.center .owl-item {
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.hero-carousel.owl-carousel.center .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-carousel .owl-item {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-carousel .owl-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-carousel .owl-item:not(.active) {
    opacity: 0.6;
    transform: scale(0.9);
    z-index: 1;
}

/* Custom Navigation Arrows */
.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 160px);
    left: -80px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    pointer-events: none;
    z-index: 100;
}

.hero-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: #374151;
    margin: 0;
    padding: 0;
    position: absolute;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero-carousel .owl-nav button:active {
    transform: scale(1.05);
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
    position: absolute;
}

.hero-carousel .owl-nav button.owl-prev {
    left: 0;
    position: absolute;
}

.hero-carousel .owl-nav button.owl-next {
    right: 0;
    position: absolute;
}

.hero-carousel .owl-nav button span {
    font-size: 0;
    display: none;
}

/* Disable default Owl dots */
.hero-carousel .owl-dots {
    display: none;
}

/* ============================================
   Modern Status Bar
   ============================================ */

.slider-status-bar {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.status-bar-container {
    width: 100%;
    max-width: 600px;
}

.status-indicators {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.status-item {
    position: relative;
    width: 60px;
    height: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .slider-status-bar {
        margin-top: 35px;
    }
    
    .status-item {
        width: 50px;
    }
    
    .status-indicators {
        gap: 14px;
    }
}

.status-border {
    width: 100%;
    height: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 2px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.status-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.status-item.active .status-border {
    border-color: #3b82f6;
    border-width: 2px;
}

.status-item.active .status-fill {
    width: 100%;
}

.status-item:hover .status-border {
    border-color: #8b5cf6;
}

@media (max-width: 767px) {
    .slider-status-bar {
        margin-top: 30px;
    }
    
    .status-item {
        width: 40px;
        height: 3px;
    }
    
    .status-indicators {
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .slider-status-bar {
        margin-top: 25px;
    }
    
    .status-item {
        width: 35px;
        height: 3px;
    }
    
    .status-indicators {
        gap: 10px;
    }
}

/* ============================================
   Dream to Global Phenomenon Section
   ============================================ */

.dream-phenomenon-section {
    background: linear-gradient(180deg, #E0F7FA 0%, #F0F9FF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dream-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #012B7F;
    line-height: 1.2;
    margin-bottom: 60px;
    text-align: center;
}

.dream-card-wrapper {
    position: relative;
    padding: 0 80px;
}

.dream-main-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: dreamCardFadeIn 0.6s ease-in-out;
}

@keyframes dreamCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dream-fade-in {
    animation: dreamContentFadeIn 0.8s ease-in-out;
}

@keyframes dreamContentFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dream-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dream-number-section {
    background: #f8f9fa;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.dream-number-container {
    text-align: center;
}

.dream-step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    font-weight: 700;
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.dream-number-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.dream-content-section {
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.dream-content-wrapper {
    width: 100%;
}

.dream-content-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.dream-content-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A2744;
    margin-bottom: 20px;
    line-height: 1.3;
}

.dream-content-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 32px;
}

.dream-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dream-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.btn-dream-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 104, 238, 0.4);
}

.btn-dream-outline {
    padding: 14px 32px;
    background: #ffffff;
    color: #6DD5ED;
    border: 2px solid #6DD5ED;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dream-outline:hover {
    background: #6DD5ED;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(109, 213, 237, 0.3);
}

.dream-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-dream-outline:hover .dream-arrow {
    transform: translateX(4px);
}

.dream-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    font-size: 18px;
}

.dream-nav-btn:hover {
    background: #ffffff;
    border-color: #6DD5ED;
    color: #6DD5ED;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dream-nav-prev {
    left: 0;
}

.dream-nav-next {
    right: 0;
}

.dream-status-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dream-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.dream-status-dot.active {
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    border-color: transparent;
    width: 32px;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dream-status-dot:hover {
    border-color: #6DD5ED;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .dream-phenomenon-section {
        padding: 80px 0;
    }
    
    .dream-section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .dream-card-wrapper {
        padding: 0 70px;
    }
    
    .dream-number-section {
        padding: 50px 30px;
        min-height: 350px;
    }
    
    .dream-step-number {
        font-size: 100px;
    }
    
    .dream-content-section {
        padding: 50px 40px;
    }
    
    .dream-content-heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .dream-phenomenon-section {
        padding: 60px 0;
    }
    
    .dream-section-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .dream-card-wrapper {
        padding: 0 60px;
    }
    
    .dream-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .dream-number-section {
        padding: 40px 20px;
        min-height: 300px;
    }
    
    .dream-step-number {
        font-size: 80px;
    }
    
    .dream-content-section {
        padding: 40px 30px;
    }
    
    .dream-content-heading {
        font-size: 24px;
    }
    
    .dream-content-text {
        font-size: 15px;
    }
    
    .dream-cta-buttons {
        flex-direction: column;
    }
    
    .btn-dream-primary,
    .btn-dream-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .dream-card-wrapper {
        padding: 0 50px;
    }
    
    .dream-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .dream-number-section {
        padding: 30px 15px;
        min-height: 250px;
    }
    
    .dream-step-number {
        font-size: 60px;
    }
    
    .dream-content-section {
        padding: 30px 20px;
    }
    
    .dream-content-heading {
        font-size: 20px;
    }
    
    .dream-content-text {
        font-size: 14px;
    }
    
    .btn-dream-primary,
    .btn-dream-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .hero-carousel .owl-nav button {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 767px) {
    .hero-carousel .owl-nav button {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-carousel .owl-nav {
        position: relative;
        top: auto;
        transform: none;
        margin-top: 30px;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-carousel .owl-nav button {
        width: 42px;
        height: 42px;
    }
    
    .hero-carousel .owl-nav button.owl-prev,
    .hero-carousel .owl-nav button.owl-next {
        position: relative;
        left: auto;
        right: auto;
    }
    
    .hero-carousel .owl-nav button svg {
        width: 20px;
        height: 20px;
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 992px) {
    .main-card {
        border-radius: 20px;
    }
    
    .main-card .row {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .main-card {
        border-radius: 16px;
    }
    
    .hero-carousel .owl-item {
        padding: 5px;
    }
    
    .hero-carousel .owl-stage-outer {
        padding: 15px 0;
    }
}

@media (max-width: 576px) {
    .main-card {
        border-radius: 50px;
    }
    
    .hero-carousel .owl-item {
        padding: 0;
    }
    
    .hero-carousel .owl-stage-outer {
        padding: 10px 0;
    }
}

/* ============================================
   Authors Section
   ============================================ */

.authors-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 50%, #f0f8ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


/* Section Title */
.authors-title {
    color: #012B7F;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 44.28px;
    font-style: normal;
    font-weight: 600;
    line-height: 53.1px;
    letter-spacing: -1.163px;
    margin-bottom: 24px;
}

.authors-subtitle {
    color: #6b7280;
    font-size: 17.6px;
    font-family: Poppins, sans-serif;
    margin-bottom: 60px;
    line-height: 1.6;
}

.hover-hint {
    color: #3b82f6;
    font-weight: 600;
    cursor: pointer;
}

/* Author Grid */
.authors-grid {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* C P Decorative Text */
.cp-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    font-weight: 900;
    color: rgba(123, 104, 238, 0.08);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -20px;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.author-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #6DD5ED;
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: block;
}

.author-circle:hover {
    transform: scale(1.15);
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: #7B68EE;
}

.author-circle:hover .author-img {
    transform: scale(1.05);
}

/* Scattered cluster positioning - cloud-like formation matching the image */
/* Note: nth-child starts from 2 because CP text is first child */
.authors-grid .author-circle:nth-child(2) {
    top: 8%;
    left: 52%;
    z-index: 19;
}

.authors-grid .author-circle:nth-child(3) {
    top: 15%;
    left: 38%;
    z-index: 18;
}

.authors-grid .author-circle:nth-child(4) {
    top: 12%;
    left: 60%;
    z-index: 17;
}

.authors-grid .author-circle:nth-child(5) {
    top: 10%;
    left: 72%;
    z-index: 16;
}

.authors-grid .author-circle:nth-child(6) {
    top: 18%;
    left: 78%;
    z-index: 15;
}

.authors-grid .author-circle:nth-child(7) {
    top: 22%;
    left: 65%;
    z-index: 14;
}

.authors-grid .author-circle:nth-child(8) {
    top: 28%;
    left: 45%;
    z-index: 13;
}

.authors-grid .author-circle:nth-child(9) {
    top: 32%;
    left: 58%;
    z-index: 12;
}

.authors-grid .author-circle:nth-child(10) {
    top: 35%;
    left: 70%;
    z-index: 11;
}

.authors-grid .author-circle:nth-child(11) {
    top: 38%;
    left: 82%;
    z-index: 10;
}

.authors-grid .author-circle:nth-child(12) {
    top: 42%;
    left: 50%;
    z-index: 9;
}

.authors-grid .author-circle:nth-child(13) {
    top: 45%;
    left: 62%;
    z-index: 8;
}

.authors-grid .author-circle:nth-child(14) {
    top: 48%;
    left: 75%;
    z-index: 7;
}

.authors-grid .author-circle:nth-child(15) {
    top: 52%;
    left: 55%;
    z-index: 6;
}

.authors-grid .author-circle:nth-child(16) {
    top: 58%;
    left: 42%;
    z-index: 5;
}

.authors-grid .author-circle:nth-child(17) {
    top: 62%;
    left: 58%;
    z-index: 4;
}

.authors-grid .author-circle:nth-child(18) {
    top: 65%;
    left: 70%;
    z-index: 3;
}

.authors-grid .author-circle:nth-child(19) {
    top: 68%;
    left: 78%;
    z-index: 2;
}

.authors-grid .author-circle:nth-child(20) {
    top: 72%;
    left: 50%;
    z-index: 1;
}

.authors-grid .author-circle:nth-child(21) {
    top: 75%;
    left: 62%;
    z-index: 1;
}

/* Publishing Achievement Section */
.publishing-achievement {
    margin: 0;
    padding: 0;
    background: transparent;
}

.achievement-number {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.achievement-question {
    color: #012B7F;
    font-size: 36px;
    font-family: Poppins, sans-serif;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.achievement-question .highlight-word {
    color: #00BCD4;
    font-weight: 500;
}

.btn-cta-primary {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
    display: inline-block;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(103, 58, 183, 0.5);
}

.btn-cta-primary:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-cta-primary:active {
    transform: translateY(-1px) scale(0.97);
    transition: all 0.1s ease;
}

.btn-cta-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.3);
}

/* Statistics Section */
.statistics-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.stat-number {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.stat-label {
    color: #6b7280;
    font-size: 14.4px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Styles for Authors Section */
@media (max-width: 1200px) {
    .authors-grid {
        max-width: 800px;
        min-height: 550px;
        padding: 50px 30px;
    }
    
    .author-circle {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 992px) {
    .authors-section {
        padding: 80px 0;
    }
    
    .authors-title {
        font-size: 38px;
        line-height: 46px;
    }
    
    .authors-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .authors-grid {
        max-width: 700px;
        min-height: 500px;
        padding: 40px 25px;
        margin-bottom: 60px;
    }
    
    .cp-text {
        font-size: 300px;
        letter-spacing: -15px;
    }
    
    .author-circle {
        width: 80px;
        height: 80px;
    }
    
    .achievement-number {
        font-size: 42px;
    }
    
    .achievement-question {
        font-size: 32px;
    }
    
    .statistics-section {
        gap: 60px;
        padding: 50px 0;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .authors-section {
        padding: 60px 0;
    }
    
    .authors-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    
    .authors-subtitle {
        font-size: 15.2px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .authors-grid {
        max-width: 100%;
        min-height: 450px;
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .cp-text {
        font-size: 200px;
        letter-spacing: -10px;
    }
    
    .author-circle {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }
    
    .publishing-achievement {
        margin: 0;
    }
    
    .achievement-number {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .achievement-question {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .btn-cta-primary {
        padding: 14px 40px;
        font-size: 16px;
    }
    
    .statistics-section {
        gap: 40px;
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 13.6px;
    }
}

@media (max-width: 576px) {
    .authors-section {
        padding: 40px 0;
    }
    
    .authors-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    
    .authors-subtitle {
        font-size: 14.4px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .authors-grid {
        max-width: 100%;
        min-height: 400px;
        margin-bottom: 40px;
        padding: 20px 15px;
    }
    
    .cp-text {
        font-size: 150px;
        letter-spacing: -8px;
    }
    
    .author-circle {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .publishing-achievement {
        margin: 0;
    }
    
    .achievement-number {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .achievement-question {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .btn-cta-primary {
        padding: 12px 32px;
        font-size: 15.2px;
        width: 100%;
        max-width: 300px;
    }
    
    .statistics-section {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }
    
    .stat-item {
        min-width: auto;
        max-width: none;
    }
    
    .stat-number {
        font-size: 35.2px;
    }
    
    .stat-label {
        font-size: 12.8px;
    }
}

/* ============================================
   Publishing Path Section
   ============================================ */

.publishing-path-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #0a1628;
}

.publishing-path-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.publishing-path-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(274deg, rgba(0, 0, 0, 0.00) 30.12%, rgba(123, 104, 238, 0.35) 70.52%, #2D4A7C 110.93%), linear-gradient(270deg, rgba(38, 98, 189, 0.00) -1.08%, rgba(38, 98, 189, 0.63) 48.14%, #2662BD 98.53%);
    z-index: 1;
}

.publishing-path-section::before {
    display: none;
}

.publishing-path-section .container {
    position: relative;
    z-index: 2;
}

.publishing-path-section .row {
    min-height: 600px;
}

/* Content Overlay */
.publishing-path-content {
    background: transparent;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.path-content-wrapper {
    max-width: 100%;
    width: 100%;
}

.path-title-main {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 4px;
    letter-spacing: -0.5px;
}

.path-title-sub {
    font-family: Poppins, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 28px;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.path-description {
    color: rgba(255, 255, 255, 0.88);
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
    font-weight: 400;
}

.path-description:last-of-type {
    margin-bottom: 32px;
}

.path-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-path-primary {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 2px 8px rgba(103, 58, 183, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-path-primary::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-path-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4);
    color: #ffffff;
}

.btn-path-primary:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-path-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-path-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.3);
}

.btn-path-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-path-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-path-outline span,
.btn-path-outline .arrow {
    position: relative;
    z-index: 1;
}

.btn-path-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px) scale(1.02);
    color: #ffffff;
}

.btn-path-outline:hover::before {
    left: 0;
}

.btn-path-outline:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-path-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.btn-path-outline .arrow {
    font-size: 15.2px;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-path-outline:hover .arrow {
    transform: translateX(6px);
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .path-title-main {
        font-size: 36px;
    }
    .path-title-sub {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .publishing-path-content {
        padding: 60px 40px;
    }
    
    .path-title-main {
        font-size: 30px;
    }

    .path-title-sub {
        font-size: 24px;
        margin-bottom: 22px;
    }
    
    .path-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .path-description:last-of-type {
        margin-bottom: 28px;
    }
    
    .publishing-path-section {
        min-height: 500px;
    }
    
    .publishing-path-section .row {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .publishing-path-content {
        padding: 50px 30px;
    }
    
    .path-title-main {
        font-size: 26px;
    }

    .path-title-sub {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .path-description {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .path-description:last-of-type {
        margin-bottom: 24px;
    }
    
    .path-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-path-primary,
    .btn-path-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 28px;
    }
    
    .publishing-path-section {
        min-height: 400px;
    }
    
    .publishing-path-section .row {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .publishing-path-content {
        padding: 40px 20px;
    }
    
    .path-title-main {
        font-size: 22px;
    }

    .path-title-sub {
        font-size: 18px;
    }
    
    .path-description {
        font-size: 12.5px;
        line-height: 1.65;
        margin-bottom: 10px;
    }
    
    .path-description:last-of-type {
        margin-bottom: 22px;
    }
    
    .path-buttons {
        gap: 10px;
    }
    
    .btn-path-primary,
    .btn-path-outline {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .publishing-path-section {
        min-height: 350px;
    }
    
    .publishing-path-section .row {
        min-height: 350px;
    }
}

/* ============================================
   Consultation Section
   ============================================ */

.consultation-section {
    background: linear-gradient(170deg, #f8faff 0%, #eef6fb 40%, #f3f0ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,188,212,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.consultation-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(103,58,183,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.consultation-content {
    padding-right: 40px;
}

.consultation-eyebrow {
    display: inline-block;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #673AB7, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.consultation-headline {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.consultation-subheadline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.subheadline-line {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #00BCD4 0%, #3b82f6 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.subheadline-text {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Statistics Cards */
.statistics-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    border-radius: 50px;
    padding: 18px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    border: 1px solid rgba(0,188,212,0.08);
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,188,212,0.18);
    background: linear-gradient(135deg, #d4f4f8 0%, #a6e7ef 100%);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BCD4;
    font-size: 22px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.12);
}

.stat-icon i {
    font-size: 24px;
}

.stat-card .stat-number {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.stat-card .stat-label {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 13.6px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

/* Company Description Box */
.company-description-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.company-description-box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.company-description-box p {
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

.highlight-text {
    color: #00BCD4;
    font-weight: 600;
    font-style: italic;
}

/* Testimonial Box */
.testimonial-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 22px 22px 34px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
    display: block;
    width: 100%;
    border-left: 3px dotted #00BCD4;
    margin-left: 8px;
    border: 1px solid rgba(0,0,0,0.04);
    border-left: 3px dotted #00BCD4;
    transition: box-shadow 0.3s ease;
}

.testimonial-box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.quote-mark {
    color: #00BCD4;
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.7;
    display: inline-block;
    vertical-align: baseline;
}

.quote-start {
    display: inline-block;
    margin-right: 8px;
    vertical-align: top;
}

.quote-end {
    display: inline-block;
    margin-left: 8px;
    vertical-align: bottom;
}

.testimonial-box p {
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-style: italic;
}

/* Consultation Buttons */
.consultation-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-consultation-primary {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-consultation-primary::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-consultation-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(103, 58, 183, 0.45);
    color: #ffffff;
}

.btn-consultation-primary:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-consultation-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-consultation-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.3);
}

.btn-consultation-primary .arrow,
.btn-package-bottom-primary .arrow,
.btn-path-primary .arrow,
.btn-platform-primary .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-consultation-primary:hover .arrow,
.btn-package-bottom-primary:hover .arrow,
.btn-path-primary:hover .arrow,
.btn-platform-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-consultation-outline {
    background: transparent;
    color: #012B7F;
    border: 1.5px solid #00BCD4;
    padding: 12px 28px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-consultation-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.05) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-consultation-outline * {
    position: relative;
    z-index: 1;
}

.btn-consultation-outline:hover {
    background: #f0f9ff;
    border-color: #00BCD4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
    color: #012B7F;
}

.btn-consultation-outline:hover::before {
    left: 0;
}

.btn-consultation-outline:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-consultation-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

.btn-consultation-outline .arrow {
    font-size: 15.2px;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-consultation-outline:hover .arrow {
    transform: translateX(6px);
}

/* Outline button on dark backgrounds */
.btn-consultation-outline.wcu-outline-dark,
.btn-consultation-outline.seoc-btn {
    border-color: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    background: transparent;
}

.btn-consultation-outline.wcu-outline-dark:hover,
.btn-consultation-outline.seoc-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Solid white button on dark backgrounds */
.btn-consultation-primary.wcu-btn-white,
.btn-consultation-primary.seoc-btn-white {
    background: #ffffff;
    color: #673AB7;
}

.btn-consultation-primary.wcu-btn-white:hover,
.btn-consultation-primary.seoc-btn-white:hover {
    background: #f8f9fa;
    color: #512da8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Consultation Form */
.consultation-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.consultation-form-wrapper:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.form-header {
    background: linear-gradient(135deg, #673AB7 0%, #4A148C 30%, #00897B 70%, #00BCD4 100%);
    padding: 30px 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.form-title {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.form-intro {
    color: rgba(255, 255, 255, 0.95);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.phone-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8;
    color: #ffffff;
}

.consultation-form {
    padding: 24px 28px;
}

.form-group {
    position: relative;
    margin-bottom: 14px;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.form-group-half {
    flex: 1;
    margin-bottom: 0;
}

.form-label {
    display: block;
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-label .required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 20px;
}

.input-icon i {
    font-size: 18px;
    color: #6b7280;
}

.form-group .input-icon {
    top: 22px;
}

.form-control {
    width: 100%;
    padding: 10px 14px 10px 44px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    color: #374151;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #00BCD4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.12), 0 2px 8px rgba(0,188,212,0.08);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-textarea {
    padding: 10px 14px 10px 44px;
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

.form-group:has(.form-textarea) .input-icon {
    top: 34px;
    align-items: flex-start;
}

.btn-form-submit {
    width: 100%;
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
}

.btn-form-submit::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-form-submit * {
    position: relative;
    z-index: 1;
}

.btn-form-submit:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 25px rgba(103, 58, 183, 0.5);
    color: #ffffff;
}

.btn-form-submit:hover:not(:disabled)::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-form-submit:active:not(:disabled) {
    transform: translateY(-1px) scale(0.99);
    transition: all 0.1s ease;
}

.btn-form-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.3);
}

.btn-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-form-submit:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
}

.btn-form-submit:disabled:hover::before {
    animation: none;
}

.btn-form-submit .arrow {
    font-size: 15.2px;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-form-submit:hover:not(:disabled) .arrow {
    transform: translateX(6px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 15.2px;
    font-weight: 500;
}

.trust-badge i {
    flex-shrink: 0;
    font-size: 18px;
    color: #10B981;
}

/* Remove old SVG styles */
.trust-badge svg {
    display: none;
}

/* Responsive Styles for Consultation Section */
@media (max-width: 1200px) {
    .consultation-headline {
        font-size: 42px;
    }
    
    .consultation-content {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .consultation-section {
        padding: 80px 0;
    }
    
    .consultation-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .consultation-headline {
        font-size: 36px;
    }
    
    .subheadline-text {
        font-size: 18px;
    }
    
    .statistics-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-card .stat-number {
        font-size: 24px;
    }
    
    /* Form responsive - Tablet */
    .consultation-form-wrapper {
        border-radius: 12px;
    }
    
    .form-header {
        padding: 32px 28px;
    }
    
    .form-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .form-intro {
        font-size: 15px;
    }
    
    .consultation-form {
        padding: 28px;
    }
    
    .form-label {
        font-size: 14.4px;
    }
    
    .form-control {
        font-size: 15px;
        padding: 10px 14px 10px 44px;
    }
    
    .input-icon {
        left: 14px;
        font-size: 16px;
    }
    
    .input-icon i {
        font-size: 16px;
    }
    
    .btn-form-submit {
        padding: 14px 28px;
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .trust-badge {
        font-size: 14.4px;
    }
    
    .trust-badge i {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .consultation-section {
        padding: 60px 0;
    }
    
    .consultation-headline {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .consultation-subheadline {
        margin-bottom: 30px;
    }
    
    .subheadline-line {
        height: 50px;
        width: 3px;
    }
    
    .subheadline-text {
        font-size: 16px;
    }
    
    .statistics-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: left;
        padding: 20px;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .company-description-box,
    .testimonial-box {
        padding: 20px 20px 20px 32px;
        border-radius: 12px;
        margin-bottom: 30px;
        margin-left: 6px;
    }
    
    .testimonial-box p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .quote-mark {
        font-size: 18px;
    }
    
    .quote-start {
        margin-right: 8px;
    }
    
    .quote-end {
        margin-left: 8px;
    }
    
    /* Consultation buttons - 2 columns on mobile */
    .consultation-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .btn-consultation-primary,
    .btn-consultation-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Form responsive - Mobile */
    .consultation-form-wrapper {
        border-radius: 10px;
    }
    
    .form-header {
        padding: 24px 20px;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .form-intro {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .consultation-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .form-group-half {
        margin-bottom: 16px;
        flex: none;
        width: 100%;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-control {
        font-size: 14px;
        padding: 10px 12px 10px 40px;
        border-width: 1.5px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 15px;
        width: 18px;
    }
    
    .input-icon i {
        font-size: 15px;
    }
    
    .form-group .input-icon {
        top: 20px;
    }
    
    .form-group:has(.form-textarea) .input-icon {
        top: 28px;
    }
    
    .form-textarea {
        padding: 10px 12px 10px 40px;
        min-height: 100px;
        font-size: 14px;
    }
    
    .btn-form-submit {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 4px;
        margin-bottom: 18px;
    }
    
    .trust-badges {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .trust-badge {
        font-size: 13px;
        gap: 8px;
    }
    
    .trust-badge i {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .consultation-section {
        padding: 40px 0;
    }
    
    .consultation-headline {
        font-size: 28px;
    }
    
    .subheadline-line {
        height: 40px;
    }
    
    .subheadline-text {
        font-size: 15px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    
    .testimonial-box {
        padding: 18px 18px 18px 28px;
        border-radius: 10px;
        margin-bottom: 24px;
        margin-left: 4px;
    }
    
    .testimonial-box p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .quote-mark {
        font-size: 16px;
    }
    
    .quote-start {
        margin-right: 6px;
    }
    
    .quote-end {
        margin-left: 6px;
    }
    
    .consultation-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .btn-consultation-primary,
    .btn-consultation-outline {
        width: 100%;
        justify-content: center;
        padding: 11px 16px;
        font-size: 13px;
    }
    
    /* Form responsive - Small Mobile */
    .consultation-form-wrapper {
        border-radius: 8px;
    }
    
    .form-header {
        padding: 20px 16px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .form-intro {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .phone-link {
        font-size: 13px;
    }
    
    .consultation-form {
        padding: 16px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-group-half {
        margin-bottom: 14px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .form-control {
        font-size: 13px;
        padding: 9px 10px 9px 36px;
        border-radius: 6px;
    }
    
    .input-icon {
        left: 10px;
        font-size: 14px;
        width: 16px;
    }
    
    .input-icon i {
        font-size: 14px;
    }
    
    .form-group .input-icon {
        top: 18px;
    }
    
    .form-group:has(.form-textarea) .input-icon {
        top: 24px;
    }
    
    .form-textarea {
        padding: 9px 10px 9px 36px;
        min-height: 90px;
        font-size: 13px;
    }
    
    .btn-form-submit {
        padding: 11px 20px;
        font-size: 13px;
        border-radius: 40px;
        margin-bottom: 16px;
    }
    
    .btn-form-submit .arrow {
        font-size: 13px;
    }
    
    .trust-badges {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-badge {
        font-size: 12px;
        gap: 6px;
    }
    
    .trust-badge i {
        font-size: 14px;
    }
}

/* ============================================
   Package Section
   ============================================ */
.package-section {
    background: #ffffff;
    padding: 100px 0;
}

.package-main-title {
    color: #012B7F;
    text-align: left;
    font-family: Poppins, sans-serif;
    font-size: 44.28px;
    font-weight: 600;
    line-height: 53.1px;
    letter-spacing: -1.163px;
    margin-bottom: 30px;
}

.package-intro {
    margin-bottom: 12px;
}

.package-intro-text {
    color: #4b5563;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.package-intro-text:last-child {
    margin-bottom: 0;
}

.package-top-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-package-primary {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 2px 8px rgba(103, 58, 183, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-package-primary::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-package-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4);
    color: #ffffff;
}

.btn-package-primary:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-package-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-package-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.3);
}

.btn-package-outline {
    background: #ffffff;
    color: #012B7F;
    border: 2px solid #00BCD4;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-package-outline:hover {
    background: #f0f9ff;
    color: #012B7F;
    border-color: #00BCD4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.2);
}

.btn-package-outline:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-package-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
}

.package-content-row {
    margin-bottom: 60px;
}

.package-services-title {
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Icon-box list for PackageSection */
.pkg-package-label {
    display: inline-block;
    background: linear-gradient(90deg, #7b6fee 0%, #6fd3ec 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    margin: 0 0 18px;
    font-family: 'Poppins', sans-serif;
}

.pkg-list-wrap {
    margin-bottom: 10px;
}

.pkg-list-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #e8edf3;
}

.pkg-list-row:last-child {
    border-bottom: none;
}

.pkg-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
}

.pkg-list-label {
    font-size: 14px;
    color: #2c2c2c;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.package-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22.4px;
    flex-shrink: 0;
    border-radius: 50px;
    background-color: #add8e6;
    transition: transform 0.3s ease;
}

.service-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Different background colors for each service icon */
.service-item:nth-child(1) .service-icon {
    background-color: #add8e6; /* Light blue */
}

.service-item:nth-child(2) .service-icon {
    background-color: #40e0d0; /* Light teal */
}

.service-item:nth-child(3) .service-icon {
    background-color: #ffb347; /* Light orange */
}

.service-item:nth-child(4) .service-icon {
    background-color: #ffb6c1; /* Light pink */
}

.service-item:nth-child(5) .service-icon {
    background-color: #87ceeb; /* Light sky blue */
}

.service-item:nth-child(6) .service-icon {
    background-color: #add8e6; /* Light blue */
}

.service-item:nth-child(7) .service-icon {
    background-color: #ffb347; /* Light orange */
}

.service-item:nth-child(8) .service-icon {
    background-color: #ffb347; /* Light orange */
}

.service-text {
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    flex: 1;
    display: flex;
    align-items: center;
}

.package-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.package-bottom-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn-package-bottom-primary {
    background: linear-gradient(90deg, #7B68EE 0%, #6DD5ED 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 4.894px 7.341px -1.223px rgba(0, 0, 0, 0.10), 0 2.447px 4.894px -2.447px rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-package-bottom-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(123, 104, 238, 0.4);
    color: #ffffff;
}

.btn-package-bottom-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-package-bottom-outline {
    background: #ffffff;
    color: #673AB7;
    border: 1px solid #673AB7;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-package-bottom-outline:hover {
    background: #673AB7;
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.3);
    border-color: #673AB7;
}

.btn-package-bottom-outline:hover .arrow {
    transform: translateX(5px);
}

.btn-package-bottom-outline:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Responsive Styles for Package Section */
@media (max-width: 992px) {
    .package-section {
        padding: 80px 0;
    }

    .package-main-title {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 25px;
    }

    .package-intro {
        margin-bottom: 35px;
    }

    .package-top-buttons {
        margin-bottom: 50px;
    }

    .package-content-row {
        margin-bottom: 50px;
    }

    .package-services-title {
        font-size: 20.8px;
        margin-bottom: 25px;
    }

    .package-bottom-buttons {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .package-section {
        padding: 60px 0;
    }

    .package-main-title {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        margin-bottom: 20px;
    }

    .package-intro-text {
        font-size: 15.2px;
        text-align: center;
    }

    .package-top-buttons {
        justify-content: center;
        margin-bottom: 40px;
    }

    .btn-package-primary,
    .btn-package-outline {
        padding: 12px 28px;
        font-size: 15.2px;
    }

    .package-services-title {
        font-size: 19.2px;
        text-align: center;
        margin-bottom: 20px;
    }

    .service-item {
        padding: 15px 0;
        gap: 15px;
    }

    .service-text {
        font-size: 15.2px;
    }

    .package-bottom-buttons {
        gap: 15px;
        margin-top: 30px;
    }

    .btn-package-bottom-primary,
    .btn-package-bottom-outline {
        padding: 12px 28px;
        font-size: 15.2px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .package-section {
        padding: 40px 0;
    }

    .package-main-title {
        font-size: 28px;
        line-height: 36px;
        padding: 0 10px;
    }

    .package-intro-text {
        font-size: 14.4px;
        line-height: 1.7;
    }

    .package-top-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-package-primary,
    .btn-package-outline {
        width: 100%;
        padding: 12px 24px;
    }

    .package-services-title {
        font-size: 17.6px;
    }

    .service-item {
        padding: 12px 0;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20.8px;
    }

    .service-text {
        font-size: 14.4px;
    }

    .package-bottom-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-package-bottom-primary,
    .btn-package-bottom-outline {
        width: 100%;
        padding: 12px 24px;
    }
}

/* ============================================
   Success Stories Section
   ============================================ */
.success-stories-section {
    background: #ffffff;
    padding: 100px 0;
}

.success-stories-title {
    color: #012B7F;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 44.28px;
    font-weight: 600;
    line-height: 53.1px;
    letter-spacing: -1.163px;
    margin-bottom: 24px;
}

.success-stories-description {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 17.6px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Book Carousel */
.book-carousel {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 50px;
}

.book-carousel .swiper-wrapper {
    align-items: stretch;
}

.book-carousel .swiper-slide {
    height: auto;
    padding: 10px;
}

.book-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px);
}

.book-cover-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.book-cover {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.book-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-bestseller {
    background: #fbbf24;
    color: #1f2937;
}

.badge-top10 {
    background: #10b981;
    color: #ffffff;
}

.badge-award {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

.book-title {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 17.6px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.book-author {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 15.2px;
    margin: 0;
}

/* Book Carousel Navigation */
.book-carousel .owl-nav {
    display: none;
}

.book-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
}

.book-carousel.owl-carousel .owl-dots {
    display: flex !important;
}

.book-carousel .owl-dots button.owl-dot {
    width: 32px;
    height: 8px;
    border-radius: 20px;
    background: #e5e7eb;
    margin: 0 -4px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 1;
}

.book-carousel .owl-dots button.owl-dot:first-child {
    margin-left: 0;
}

.book-carousel .owl-dots button.owl-dot:last-child {
    margin-right: 0;
}

.book-carousel .owl-dots button.owl-dot:hover {
    background: #d1d5db;
    transform: scale(1.1);
}

.book-carousel .owl-dots button.owl-dot.active {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    width: 48px;
    height: 8px;
    border-radius: 20px;
    z-index: 2;
    margin: 0 -4px;
    transform: scale(1);
}

/* Swiper Pagination Styles */
.book-carousel .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.book-carousel .swiper-pagination-bullet {
    width: 32px;
    height: 8px;
    border-radius: 20px;
    background: #e5e7eb;
    margin: 0 -4px !important;
    transition: all 0.4s ease;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.book-carousel .swiper-pagination-bullet:first-child {
    margin-left: 0 !important;
}

.book-carousel .swiper-pagination-bullet:last-child {
    margin-right: 0 !important;
}

.book-carousel .swiper-pagination-bullet:hover {
    background: #d1d5db;
    transform: scale(1.1);
}

.book-carousel .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%) !important;
    width: 48px !important;
    height: 8px;
    border-radius: 15px;
    z-index: 2;
}

/* Statistics Banner */
.success-statistics-banner {
    border-radius: 14.49px;
    background: linear-gradient(90deg, #7B68EE 0%, #6DD5ED 97.33%);
    box-shadow: 0 18.112px 22.64px -4.528px rgba(0, 0, 0, 0.10), 0 7.245px 9.056px -5.434px rgba(0, 0, 0, 0.10);
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item-stat {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number-stat {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.stat-label-stat {
    color: #ffffff;
    font-size: 17.6px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    opacity: 0.95;
}

/* CTA Buttons */
.success-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-success-primary {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 2px 8px rgba(103, 58, 183, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-success-primary::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-success-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4);
    color: #ffffff;
}

.btn-success-primary:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-success-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-success-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.3);
}

.btn-success-outline {
    background: #ffffff;
    color: #012B7F;
    border: 2px solid #00BCD4;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-success-outline:hover {
    background: #f0f9ff;
    border-color: #00BCD4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
    color: #012B7F;
}

.btn-success-outline:hover .arrow {
    transform: translateX(5px);
}

.btn-success-outline:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-success-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
}

/* ============================================
   First-Time Author Section
   ============================================ */

.first-time-author-section {
    background: #faf9f6;
    padding: 100px 0;
    position: relative;
}

.first-time-content {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.first-time-title {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.first-time-text {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 17.6px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.first-time-text:last-of-type {
    margin-bottom: 0;
}

.first-time-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.first-time-list li {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 17.6px;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.first-time-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #673AB7;
}

.first-time-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first-time-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 20px;
}

/* ============================================
   Multi-Platform Publishing Section
   ============================================ */

.multi-platform-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.multi-platform-content {
    padding-right: 40px;
}

.multi-platform-title {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

/* Accordion Styles */
.platform-accordion {
    margin-bottom: 40px;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: #00BCD4;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    gap: 20px;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: #f0f9ff;
}

.accordion-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    background: #e5e7eb;
    color: #6b7280;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-number {
    background: linear-gradient(135deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
}

.accordion-title {
    flex: 1;
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-title {
    color: #012B7F;
}

.accordion-icon {
    color: #9ca3af;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    color: #00BCD4;
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.accordion-description {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding-top: 20px;
}

/* Platform CTA Buttons */
.platform-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-platform-primary {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(103, 58, 183, 0.2);
}

.btn-platform-primary::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-platform-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4);
    color: #ffffff;
}

.btn-platform-primary:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-platform-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-platform-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.3);
}

.btn-platform-outline {
    background: #ffffff;
    color: #00BCD4;
    border: 2px solid #00BCD4;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-platform-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.05) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-platform-outline * {
    position: relative;
    z-index: 1;
}

.btn-platform-outline:hover {
    background: #f0f9ff;
    border-color: #00BCD4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
    color: #00BCD4;
}

.btn-platform-outline:hover::before {
    left: 0;
}

.btn-platform-outline:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-platform-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

.btn-platform-outline .arrow {
    font-size: 15.2px;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-platform-outline:hover .arrow {
    transform: translateX(6px);
}

/* Platform Image Wrapper */
.platform-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.platform-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Overlay Card */
.platform-overlay-card {
    position: absolute;
    bottom: 60px;
    left: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

.overlay-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #673AB7 0%, #00BCD4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.overlay-content {
    display: flex;
    flex-direction: column;
}

.overlay-number {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.overlay-label {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* Slider Indicators */
.platform-slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.platform-slider-indicators .indicator {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.platform-slider-indicators .indicator.active {
    width: 48px;
    background: #ffffff;
}

/* Responsive Styles for Multi-Platform Section */
@media (max-width: 992px) {
    .multi-platform-section {
        padding: 80px 0;
    }

    .multi-platform-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .multi-platform-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .accordion-title {
        font-size: 18px;
    }

    .platform-cta-buttons {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .multi-platform-section {
        padding: 60px 0;
    }

    .multi-platform-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .accordion-header {
        padding: 20px;
    }

    .accordion-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-description {
        font-size: 15px;
    }

    .platform-overlay-card {
        bottom: 40px;
        left: 20px;
        padding: 16px 20px;
        min-width: 180px;
    }

    .overlay-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .overlay-number {
        font-size: 24px;
    }

    .platform-cta-buttons {
        flex-direction: column;
    }

    .btn-platform-primary,
    .btn-platform-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .multi-platform-section {
        padding: 50px 0;
    }

    .multi-platform-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .accordion-header {
        padding: 16px;
        gap: 12px;
    }

    .accordion-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .accordion-title {
        font-size: 15px;
    }

    .accordion-description {
        font-size: 14px;
        padding-top: 16px;
    }

    .platform-overlay-card {
        bottom: 30px;
        left: 15px;
        padding: 12px 16px;
        min-width: 160px;
    }

    .overlay-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .overlay-number {
        font-size: 20px;
    }

    .overlay-label {
        font-size: 12px;
    }
}

/* ============================================
   Success Partner Section
   ============================================ */

.success-partner-section {
    background: linear-gradient(180deg, #2D4A7C 0%, #1A2744 50%, #0F1728 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.success-partner-content {
    padding-right: 40px;
    min-width: 0;
}

/* Success Badge */
.success-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    max-width: 100%;
}

.badge-icon {
    color: #ff9800;
    font-size: 14px;
}

.badge-text {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Headline */
.success-headline {
    font-family: Poppins, sans-serif;
    line-height: 1.08;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.headline-white {
    color: #ffffff;
    font-size: clamp(22px, 4.5vw, 36px);
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}

.headline-gradient {
    display: block;
    font-size: clamp(2rem, 8vw + 0.75rem, 5.125rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #9c27b0 0%, #00bcd4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Description */
.success-description {
    color: rgba(255, 255, 255, 0.9);
    font-family: Poppins, sans-serif;
    font-size: clamp(15px, 2vw + 0.65rem, 18px);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 38rem;
}

/* CTA Buttons */
.success-cta-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-success-gradient {
    background: linear-gradient(90deg, #00bcd4 0%, #9c27b0 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.btn-success-gradient::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-success-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.5);
}

.btn-success-gradient:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-success-gradient i {
    font-size: 14px;
}

.btn-success-outline-dark {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-success-outline-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-success-outline-dark:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px) scale(1.02);
}

.btn-success-outline-dark:hover::before {
    left: 0;
}

.btn-success-outline-dark:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Service Cards Grid */
.service-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 0.697px solid rgba(255, 255, 255, 0.10);
    border-radius: 16.738px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-card:hover {
    background: rgba(26, 35, 126, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-title {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-family: Poppins, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Styles for Success Partner Section */
@media (max-width: 992px) {
    .success-partner-section {
        padding: 7rem 0 5rem;
    }

    .success-partner-content {
        padding-right: 0;
        margin-bottom: 48px;
    }

    .success-headline {
        margin-bottom: 28px;
    }

    .success-badge {
        margin-bottom: 24px;
    }

    .service-cards-grid {
        gap: 16px;
    }

    .service-card {
        padding: 28px 20px;
    }
}

@media (max-width: 767px) {
    .success-partner-section {
        padding: 5.25rem 0 4rem;
    }

    .success-headline {
        margin-bottom: 24px;
    }

    .success-description {
        margin-bottom: 28px;
    }

    .service-cards-grid {
        gap: 14px;
    }

    .success-cta-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .success-cta-wrapper .connect-btn,
    .success-cta-wrapper .connect-btn--noicon {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
        justify-content: center;
    }

    .btn-success-gradient,
    .btn-success-outline-dark {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .success-partner-section {
        padding: 4.5rem 0 3.25rem;
    }

    .success-headline {
        margin-bottom: 20px;
    }

    .success-badge {
        padding: 8px 14px;
        margin-bottom: 20px;
    }

    .badge-text {
        letter-spacing: 0.06em;
        font-size: 11px;
    }

    .service-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 14px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 24px;
    }

    .service-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .service-description {
        font-size: 14px;
    }
}

/* ============================================
   Text Slider Section
   ============================================ */

.text-slider-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    overflow: hidden;
    position: relative;
}

.text-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.text-slider-row {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    display: flex;
}

.text-slider-content,
.text-slider-content-clone {
    font-family: Poppins, sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #012B7F;
    white-space: nowrap;
    text-align: center;
    letter-spacing: -2px;
    line-height: 1.2;
    flex-shrink: 0;
    display: inline-block;
}

@media (max-width: 992px) {
    .text-slider-section {
        padding: 80px 0;
    }

    .text-slider-content {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .text-slider-section {
        padding: 60px 0;
    }

    .text-slider-content {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .text-slider-row {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .text-slider-section {
        padding: 50px 0;
    }

    .text-slider-content {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .text-slider-row {
        padding: 15px 0;
    }
}

/* ============================================
   Continuous Text Slider Banner Section
   ============================================ */

/* ============================================
   Scrubbed Bento Gallery Section
   ============================================ */

.bento-gallery-section {
    position: relative;
    width: 100%;
}

.gallery-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 992px) {
    .gallery-wrap {
        height: auto;
        min-height: 100vh;
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .gallery-wrap {
        height: auto;
        min-height: auto;
        padding: 20px 10px;
    }
}

.gallery {
    position: relative;
    width: 100%;
    height: 100%;
    flex: none;
}

.gallery__item {
    background-position: 50% 50%;
    background-size: cover;
    flex: none;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.gallery__item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.gallery--bento {
    display: grid;
    gap: 1vh;
    grid-template-columns: repeat(3, 32.5vw);
    grid-template-rows: repeat(4, 23vh);
    justify-content: center;
    align-content: center;
    padding: 2vh;
    will-change: transform;
}

.gallery--final.gallery--bento {
    grid-template-columns: repeat(3, 100vw);
    grid-template-rows: repeat(4, 49.5vh);
    gap: 1vh;
}

/* Smooth transitions for grid changes */
.gallery--bento,
.gallery--bento .gallery__item {
    transition: none;
}

.gallery--bento .gallery__item:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
}

.gallery--bento .gallery__item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.gallery--bento .gallery__item:nth-child(3) {
    grid-area: 2 / 2 / 4 / 3;
}

.gallery--bento .gallery__item:nth-child(4) {
    grid-area: 1 / 3 / 3 / 3;
}

.gallery--bento .gallery__item:nth-child(5) {
    grid-area: 3 / 1 / 4 / 2;
}

.gallery--bento .gallery__item:nth-child(6) {
    grid-area: 3 / 3 / 5 / 4;
}

.gallery--bento .gallery__item:nth-child(7) {
    grid-area: 4 / 1 / 5 / 2;
}

.gallery--bento .gallery__item:nth-child(8) {
    grid-area: 4 / 2 / 5 / 3;
}

@media (max-width: 1200px) {
    .gallery--bento {
        grid-template-columns: repeat(3, 33vw);
        gap: 0.8vh;
    }
}

@media (max-width: 992px) {
    .gallery-wrap {
        height: auto;
        min-height: 100vh;
        padding: 40px 20px;
    }
    
    .gallery--bento {
        grid-template-columns: repeat(3, 32vw);
        grid-template-rows: repeat(4, 20vh);
        gap: 1vh;
        padding: 1vh;
    }
    
    .gallery--final.gallery--bento {
        grid-template-columns: repeat(3, 100vw);
        grid-template-rows: repeat(4, 45vh);
    }
}

@media (max-width: 767px) {
    .gallery-wrap {
        padding: 30px 15px;
        min-height: auto;
    }
    
    .gallery--bento {
        grid-template-columns: repeat(2, 48vw);
        grid-template-rows: repeat(5, 18vh);
        gap: 1vh;
        padding: 1vh;
    }
    
    .gallery--final.gallery--bento {
        grid-template-columns: repeat(2, 100vw);
        grid-template-rows: repeat(5, 40vh);
    }
    
    .gallery--bento .gallery__item:nth-child(1) {
        grid-area: 1 / 1 / 3 / 2;
    }
    
    .gallery--bento .gallery__item:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }
    
    .gallery--bento .gallery__item:nth-child(3) {
        grid-area: 2 / 2 / 4 / 3;
    }
    
    .gallery--bento .gallery__item:nth-child(4) {
        grid-area: 3 / 1 / 4 / 2;
    }
    
    .gallery--bento .gallery__item:nth-child(5) {
        grid-area: 4 / 1 / 5 / 2;
    }
    
    .gallery--bento .gallery__item:nth-child(6) {
        grid-area: 4 / 2 / 6 / 3;
    }
    
    .gallery--bento .gallery__item:nth-child(7) {
        grid-area: 5 / 1 / 6 / 2;
    }
    
    .gallery--bento .gallery__item:nth-child(8) {
        grid-area: 3 / 2 / 4 / 3;
    }
}

@media (max-width: 576px) {
    .gallery-wrap {
        padding: 20px 10px;
        height: auto;
    }
    
    .gallery--bento {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 25vh);
        gap: 1vh;
        padding: 1vh;
    }
    
    .gallery--final.gallery--bento {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 50vh);
    }
    
    .gallery--bento .gallery__item {
        grid-area: auto !important;
    }
    
    .gallery--bento .gallery__item:nth-child(1),
    .gallery--bento .gallery__item:nth-child(2),
    .gallery--bento .gallery__item:nth-child(3),
    .gallery--bento .gallery__item:nth-child(4),
    .gallery--bento .gallery__item:nth-child(5),
    .gallery--bento .gallery__item:nth-child(6),
    .gallery--bento .gallery__item:nth-child(7),
    .gallery--bento .gallery__item:nth-child(8) {
        grid-area: auto;
    }
}

@media (max-width: 480px) {
    .gallery-wrap {
        padding: 15px 5px;
    }
    
    .gallery--bento {
        grid-template-rows: repeat(8, 22vh);
        gap: 0.8vh;
    }
    
    .gallery--final.gallery--bento {
        grid-template-rows: repeat(8, 45vh);
    }
}

/* ============================================
   Parallax Reveal Section
   ============================================ */

.parallax-reveal-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.parallax-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.parallax-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    color: #ffffff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.parallax-title {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 30px;
}

.parallax-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.parallax-title .title-line.highlight {
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.parallax-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}

.parallax-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.parallax-card {
    position: relative;
    height: 400px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(100px) rotateX(20deg);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.parallax-card:hover .card-inner {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(123, 104, 238, 0.5);
    box-shadow: 0 20px 60px rgba(123, 104, 238, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #ffffff;
    transform: scale(0);
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transform: translate(20px, -20px);
}

.parallax-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.btn-parallax-primary,
.btn-parallax-outline {
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-parallax-primary {
    background: linear-gradient(135deg, #7B68EE 0%, #6DD5ED 100%);
    color: #ffffff;
}

.btn-parallax-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.4);
}

.btn-parallax-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-parallax-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.parallax-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.1) 0%, rgba(109, 213, 237, 0.1) 100%);
    filter: blur(80px);
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -300px;
}

.circle-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
    .parallax-reveal-section {
        padding: 100px 0;
    }

    .parallax-title {
        font-size: 48px;
    }

    .parallax-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .parallax-card {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .parallax-reveal-section {
        padding: 80px 0;
    }

    .parallax-header {
        margin-bottom: 60px;
    }

    .parallax-title {
        font-size: 36px;
    }

    .parallax-subtitle {
        font-size: 16px;
    }

    .parallax-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .parallax-card {
        height: 320px;
    }

    .card-inner {
        padding: 30px;
    }

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

    .card-description {
        font-size: 14px;
    }

    .parallax-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-parallax-primary,
    .btn-parallax-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .parallax-title {
        font-size: 28px;
    }

    .parallax-card {
        height: 300px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .card-number {
        font-size: 80px;
    }
}

.continuous-slider-section {
    padding: 0;
    background: #F5F5F5;
    overflow: hidden;
    position: relative;
    z-index: 11;
}

.continuous-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.continuous-slider-track {
    display: flex;
    gap: 50px;
    width: fit-content;
    will-change: transform;
}

.slider-text-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.slider-text-bold {
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #374151;
}

.slider-emoji {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    flex-shrink: 0;
    min-width: 20px;
}

.slider-emoji-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.slider-text-regular {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #374151;
}

@media (max-width: 992px) {
    .slider-text-bold,
    .slider-emoji {
        font-size: 18px;
    }
    
    .slider-text-regular {
        font-size: 16px;
    }
    
    .slider-emoji-img {
        width: 18px;
        height: 18px;
    }

    .continuous-slider-track {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .slider-text-bold,
    .slider-emoji {
        font-size: 16px;
    }
    
    .slider-text-regular {
        font-size: 14px;
    }
    
    .slider-emoji-img {
        width: 16px;
        height: 16px;
    }

    .continuous-slider-track {
        gap: 30px;
    }

    .slider-text-item {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .slider-text-bold,
    .slider-emoji {
        font-size: 14px;
    }
    
    .slider-text-regular {
        font-size: 13px;
    }
    
    .slider-emoji-img {
        width: 14px;
        height: 14px;
    }

    .continuous-slider-track {
        gap: 30px;
    }

    .slider-text-item {
        gap: 8px;
    }

    .continuous-slider-wrapper {
        padding: 15px 0;
    }
}

/* ============================================
   Your Story Is Our Mission Section
   ============================================ */

.mission-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Mission Title */
.mission-title {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.mission-subtitle {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mission-hover-text {
    color: #3b82f6;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mission-hover-text:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

/* Author Cluster */
.author-cluster-wrapper {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.author-cluster {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 550px;
    margin: 0 auto;
}

.author-portrait {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.author-portrait:hover {
    transform: scale(1.15) translateY(-5px);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-color: #3b82f6;
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Book Tooltip */
.author-book-tooltip {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.author-portrait:hover .author-book-tooltip {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    top: -200px;
}

.tooltip-book {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

/* Organic Cluster Positioning - Overlapping Scattered Pattern */
.author-cluster .author-portrait:nth-child(1) {
    top: 5%;
    left: 12%;
    z-index: 2;
}

.author-cluster .author-portrait:nth-child(2) {
    top: 8%;
    left: 28%;
    z-index: 3;
    margin-left: -15px;
}

.author-cluster .author-portrait:nth-child(3) {
    top: 3%;
    left: 45%;
    z-index: 1;
    margin-left: -10px;
}

.author-cluster .author-portrait:nth-child(4) {
    top: 12%;
    left: 62%;
    z-index: 4;
    margin-left: -20px;
}

.author-cluster .author-portrait:nth-child(5) {
    top: 6%;
    left: 78%;
    z-index: 2;
    margin-left: -15px;
}

.author-cluster .author-portrait:nth-child(6) {
    top: 22%;
    left: 8%;
    z-index: 3;
}

.author-cluster .author-portrait:nth-child(7) {
    top: 28%;
    left: 24%;
    z-index: 5;
    margin-left: -25px;
    margin-top: -10px;
}

.author-cluster .author-portrait:nth-child(8) {
    top: 32%;
    left: 42%;
    z-index: 2;
    margin-left: -18px;
}

.author-cluster .author-portrait:nth-child(9) {
    top: 26%;
    left: 58%;
    z-index: 4;
    margin-left: -22px;
    margin-top: -8px;
}

.author-cluster .author-portrait:nth-child(10) {
    top: 30%;
    left: 74%;
    z-index: 3;
    margin-left: -20px;
}

.author-cluster .author-portrait:nth-child(11) {
    top: 20%;
    left: 88%;
    z-index: 2;
    margin-left: -15px;
}

.author-cluster .author-portrait:nth-child(12) {
    top: 48%;
    left: 15%;
    z-index: 4;
    margin-top: -12px;
}

.author-cluster .author-portrait:nth-child(13) {
    top: 52%;
    left: 32%;
    z-index: 6;
    margin-left: -28px;
    margin-top: -15px;
}

.author-cluster .author-portrait:nth-child(14) {
    top: 56%;
    left: 50%;
    z-index: 3;
    margin-left: -20px;
}

.author-cluster .author-portrait:nth-child(15) {
    top: 50%;
    left: 66%;
    z-index: 5;
    margin-left: -24px;
    margin-top: -10px;
}

.author-cluster .author-portrait:nth-child(16) {
    top: 54%;
    left: 82%;
    z-index: 4;
    margin-left: -22px;
}

.author-cluster .author-portrait:nth-child(17) {
    top: 72%;
    left: 20%;
    z-index: 3;
    margin-top: -8px;
}

.author-cluster .author-portrait:nth-child(18) {
    top: 76%;
    left: 38%;
    z-index: 5;
    margin-left: -26px;
    margin-top: -12px;
}

/* Publishing Achievement */
.publishing-achievement-mission {
    margin: 80px 0 100px;
    padding: 0;
    background: transparent;
}

.achievement-number-mission {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.achievement-question-mission {
    color: #012B7F;
    font-size: 36px;
    font-family: Poppins, sans-serif;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.highlight-word-mission {
    color: #00BCD4;
    font-weight: 500;
}

.btn-mission-cta {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
    display: inline-block;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-mission-cta::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.btn-mission-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(103, 58, 183, 0.5);
}

.btn-mission-cta:hover::before {
    animation: btn-shine 1.5s ease-out infinite;
}

.btn-mission-cta:active {
    transform: translateY(-1px) scale(0.97);
    transition: all 0.1s ease;
}

.btn-mission-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.3);
}

/* Mission Statistics */
.mission-statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 100px;
    padding: 60px 0;
}

.mission-stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.mission-stat-number {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.mission-stat-label {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Styles for Mission Section */
@media (max-width: 992px) {
    .mission-section {
        padding: 100px 0;
    }

    .mission-title {
        font-size: 42px;
    }

    .author-cluster {
        max-width: 700px;
        height: 400px;
    }

    .author-portrait {
        width: 100px;
        height: 100px;
    }

    .achievement-number-mission {
        font-size: 42px;
    }

    .achievement-question-mission {
        font-size: 32px;
    }

    .mission-statistics {
        gap: 60px;
        margin-top: 80px;
    }

    .mission-stat-number {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .mission-section {
        padding: 80px 0;
    }

    .mission-title {
        font-size: 36px;
    }

    .mission-subtitle {
        font-size: 16px;
    }

    .author-cluster-wrapper {
        min-height: 400px;
        margin-bottom: 60px;
    }

    .author-cluster {
        max-width: 100%;
        height: 450px;
    }

    .author-portrait {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .author-book-tooltip {
        top: -150px;
    }

    .author-portrait:hover .author-book-tooltip {
        top: -170px;
    }

    .tooltip-book {
        width: 100px;
    }

    .achievement-number-mission {
        font-size: 36px;
    }

    .achievement-question-mission {
        font-size: 28px;
    }

    .mission-statistics {
        gap: 40px;
        margin-top: 60px;
        padding: 40px 0;
    }

    .mission-stat-number {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-title {
        font-size: 28px;
    }

    .mission-subtitle {
        font-size: 15px;
    }

    .mission-hover-text {
        font-size: 14px;
    }

    .author-cluster-wrapper {
        min-height: 300px;
        margin-bottom: 40px;
    }

    .author-cluster {
        height: 400px;
    }

    .author-portrait {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }

    .author-book-tooltip {
        top: -120px;
    }

    .author-portrait:hover .author-book-tooltip {
        top: -140px;
    }

    .tooltip-book {
        width: 80px;
    }

    .achievement-number-mission {
        font-size: 32px;
    }

    .achievement-question-mission {
        font-size: 24px;
    }

    .mission-statistics {
        flex-direction: column;
        gap: 30px;
        margin-top: 50px;
        padding: 30px 0;
    }

    .mission-stat-number {
        font-size: 36px;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    background: linear-gradient(180deg, #2D4A7C 0%, #7B68EE 50%, #6DD5ED 100%);
    padding: 120px 0;
    position: relative;
    overflow: visible;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-title {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.testimonials-intro {
    color: rgba(255, 255, 255, 0.9);
    font-family: Poppins, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonial Carousel */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 100px;
    padding: 0 80px;
}

.testimonial-carousel-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
    display: block;
}

.testimonial-card {
    border-radius: 30px;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFF 100%);
    content-visibility: auto;
    padding: 50px;
    box-shadow: none;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card img,
.video-testimonial-card img {
    will-change: auto;
}

.testimonial-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Profile Section */
.testimonial-profile {
    flex: 0 0 280px;
    text-align: center;
}

.profile-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.profile-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #673AB7 0%, #9C27B0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(103, 58, 183, 0.3);
}

.client-name {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.client-title {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
}

.client-quote {
    color: #673AB7;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    letter-spacing: 0;
    justify-content: center;
}

.stars .star {
    font-size: 24px;
    color: #FFA500;
    display: inline-block;
    line-height: 1;
}

.stars .star.filled {
    color: #FFA500;
}

.stars .star.partial {
    background: linear-gradient(90deg, #FFA500 0%, #FFA500 75%, rgba(255, 165, 0, 0.3) 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.rating-number {
    color: #059669;
    font-family: Poppins, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    text-align: center;
}

.review-count-text {
    color: #34d399;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Testimonial Text Section */
.testimonial-text {
    flex: 1;
    position: relative;
}

.quote-icon {
    font-size: 120px;
    color: #e5e7eb;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 0;
}

.testimonial-paragraph {
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.cta-box {
    border-radius: 14.759px;
    border-left: 3.69px solid #7B68EE;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.05) 0%, rgba(109, 213, 237, 0.05) 50%, rgba(255, 154, 60, 0.05) 100%);
    padding: 24px 32px;
    position: relative;
    z-index: 1;
}

.cta-question {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-description {
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-testimonial-cta {
    background: linear-gradient(90deg, #673AB7 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
}

.btn-testimonial-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(103, 58, 183, 0.5);
}

.btn-testimonial-cta i {
    font-size: 14px;
}

/* Testimonial Slider (Swiper) */
.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto 100px;
    padding: 0;
    overflow: visible;
}

@media (max-width: 1400px) {
    .testimonial-slider-wrapper {
        padding: 0;
    }

    .testimonialSwiper .swiper-button-prev {
        left: 0;
    }

    .testimonialSwiper .swiper-button-next {
        right: 0;
    }
}

@media (max-width: 1200px) {
    .testimonial-slider-wrapper {
        padding: 0;
    }
    
    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        width: 44px;
        height: 44px;
    }
    
    .testimonialSwiper .swiper-button-next:after,
    .testimonialSwiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .testimonialSwiper .swiper-button-prev {
        left: 0;
    }

    .testimonialSwiper .swiper-button-next {
        right: 0;
    }
}

.testimonialSwiper {
    width: 100%;
    position: relative;
}

.testimonialSwiper .swiper-slide {
    width: 100%;
    display: block;
}

/* Swiper Navigation Buttons */
.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.testimonialSwiper .swiper-button-next:after,
.testimonialSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonialSwiper .swiper-button-prev {
    left: 0;
}

.testimonialSwiper .swiper-button-next {
    right: 0;
}

/* Swiper Pagination */
.testimonialSwiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #673AB7;
    transform: scale(1.2);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

@media (max-width: 1200px) {
    .carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .carousel-prev {
        left: -50px;
    }

    .carousel-next {
        right: -50px;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
}

/* Video Testimonials Section */
.video-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-testimonials-title {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.video-testimonials-intro {
    color: rgba(255, 255, 255, 0.9);
    font-family: Poppins, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Video Testimonials Grid */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.video-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #e5e7eb;
}

.thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-testimonial-card:hover .play-button {
    background: rgba(59, 130, 246, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.video-content {
    padding: 24px;
}

.video-client-name {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.video-client-title {
    color: #6b7280;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
}

.video-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.video-quote {
    color: #374151;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.video-btn {
    width: 100%;
    background: transparent;
    border: 2px solid #673AB7;
    color: #673AB7;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-btn:hover {
    background: #673AB7;
    color: #ffffff;
    transform: translateY(-2px);
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
}

.btn-view-all {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-view-all:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-view-all i {
    font-size: 18px;
}

/* Responsive Styles for Testimonials Section */
@media (max-width: 1200px) {
    .testimonial-carousel-wrapper,
    .testimonial-slider-wrapper {
        padding: 0;
    }

    .carousel-prev,
    .slider-prev {
        left: -50px;
    }

    .carousel-next,
    .slider-next {
        right: -50px;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 100px 0;
    }

    .testimonials-title {
        font-size: 42px;
    }

    .testimonial-carousel-wrapper,
    .testimonial-slider-wrapper {
        padding: 0;
        width: 100%;
    }

    .testimonial-content {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-profile {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-text {
        width: 100%;
    }

    .testimonial-card {
        padding: 40px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .testimonialSwiper .swiper-button-next:after,
    .testimonialSwiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .testimonialSwiper .swiper-button-prev {
        left: 0;
    }

    .testimonialSwiper .swiper-button-next {
        right: 0;
    }

    .video-testimonials-title {
        font-size: 38px;
    }

    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-intro {
        font-size: 16px;
    }

    .testimonial-carousel-wrapper,
    .testimonial-slider-wrapper {
        padding: 0;
        width: 100%;
    }

    .testimonial-card {
        padding: 35px;
    }

    .testimonial-content {
        gap: 30px;
    }

    .testimonial-profile {
        gap: 15px;
    }

    .client-name {
        font-size: 22px;
    }

    .client-title {
        font-size: 14px;
    }

    .client-quote {
        font-size: 16px;
    }

    .testimonial-paragraph {
        font-size: 15px;
    }

    .carousel-nav,
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        width: 38px;
        height: 38px;
    }

    .testimonialSwiper .swiper-button-next:after,
    .testimonialSwiper .swiper-button-prev:after {
        font-size: 14px;
    }

    .testimonialSwiper .swiper-button-prev {
        left: 0;
    }

    .testimonialSwiper .swiper-button-next {
        right: 0;
    }

    .video-testimonials-title {
        font-size: 32px;
    }

    .video-testimonials-intro {
        font-size: 16px;
    }

    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-intro {
        font-size: 15px;
    }

    .testimonial-carousel-wrapper,
    .testimonial-slider-wrapper {
        padding: 0;
        width: 100%;
        margin-bottom: 60px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-content {
        gap: 25px;
    }

    .testimonial-profile {
        gap: 12px;
    }

    .profile-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .client-name {
        font-size: 20px;
    }

    .client-title {
        font-size: 13px;
    }

    .client-quote {
        font-size: 15px;
    }

    .stars {
        font-size: 20px;
    }

    .rating-number {
        font-size: 28px;
    }

    .review-count-text {
        font-size: 14px;
    }

    .testimonial-paragraph {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 20px;
    }

    .quote-icon {
        font-size: 80px;
        top: -10px;
        left: -5px;
    }

    .cta-box {
        padding: 20px;
    }

    .cta-question {
        font-size: 18px;
    }

    .cta-description {
        font-size: 14px;
    }

    .btn-testimonial-cta {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .profile-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .testimonialSwiper .swiper-button-next:after,
    .testimonialSwiper .swiper-button-prev:after {
        font-size: 12px;
    }

    .testimonialSwiper .swiper-button-prev {
        left: 0;
    }

    .testimonialSwiper .swiper-button-next {
        right: 0;
    }

    .video-testimonials-title {
        font-size: 28px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .testimonial-slider-wrapper {
        padding: 0;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-content {
        gap: 20px;
    }

    .profile-image-wrapper {
        width: 100px;
        height: 100px;
    }

    .client-name {
        font-size: 18px;
    }

    .client-title {
        font-size: 12px;
    }

    .client-quote {
        font-size: 14px;
    }

    .testimonial-paragraph {
        font-size: 13px;
        padding-left: 15px;
    }

    .quote-icon {
        font-size: 70px;
        top: -5px;
        left: 0;
    }

    .cta-box {
        padding: 18px;
    }

    .cta-question {
        font-size: 16px;
    }

    .cta-description {
        font-size: 13px;
    }

    .btn-testimonial-cta {
        padding: 12px 20px;
        font-size: 13px;
    }

    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .testimonialSwiper .swiper-button-next:after,
    .testimonialSwiper .swiper-button-prev:after {
        font-size: 12px;
    }

    .testimonialSwiper .swiper-button-prev {
        left: 0;
    }

    .testimonialSwiper .swiper-button-next {
        right: 0;
    }
}

/* Responsive Styles for First-Time Author Section */
@media (max-width: 992px) {
    .first-time-author-section {
        padding: 80px 0;
    }

    .first-time-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .first-time-title {
        font-size: 38.4px;
        margin-bottom: 35px;
    }

    .first-time-text,
    .first-time-list li {
        font-size: 16px;
    }
    
    .first-time-list {
        margin-top: 35px;
    }

    .first-time-image-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .first-time-author-section {
        padding: 60px 0;
    }

    .first-time-title {
        font-size: 30.4px;
        margin-bottom: 30px;
    }

    .first-time-text {
        font-size: 15.2px;
        margin-bottom: 18px;
    }

    .first-time-list {
        margin-top: 30px;
    }

    .first-time-list li {
        font-size: 15.2px;
        margin-bottom: 12px;
    }

    .first-time-image-wrapper {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .first-time-author-section {
        padding: 50px 0;
    }

    .first-time-title {
        font-size: 25.6px;
        line-height: 1.3;
    }

    .first-time-text,
    .first-time-list li {
        font-size: 14.4px;
    }
}

/* Responsive Styles for Success Stories Section */
@media (max-width: 992px) {
    .success-stories-section {
        padding: 80px 0;
    }

    .success-stories-title {
        font-size: 38px;
        line-height: 46px;
    }

    .success-stories-description {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .success-statistics-banner {
        padding: 50px 30px;
        gap: 30px;
    }

    .stat-number-stat {
        font-size: 48px;
    }

    .stat-label-stat {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .success-stories-section {
        padding: 60px 0;
    }

    .success-stories-title {
        font-size: 32px;
        line-height: 40px;
    }

    .success-stories-description {
        font-size: 15.2px;
        margin-bottom: 40px;
    }

    .book-cover {
        max-width: 180px;
    }

    .success-statistics-banner {
        padding: 40px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .stat-item-stat {
        min-width: 100%;
    }

    .stat-number-stat {
        font-size: 40px;
    }

    .stat-label-stat {
        font-size: 15.2px;
    }

    .success-cta-buttons {
        gap: 15px;
    }

    .btn-success-primary,
    .btn-success-outline {
        padding: 12px 28px;
        font-size: 15.2px;
    }
}

@media (max-width: 576px) {
    .success-stories-section {
        padding: 40px 0;
    }

    .success-stories-title {
        font-size: 28px;
        line-height: 36px;
        padding: 0 10px;
    }

    .success-stories-description {
        font-size: 14.4px;
        padding: 0 15px;
    }

    .book-cover {
        max-width: 150px;
    }

    .book-title {
        font-size: 16px;
    }

    .book-author {
        font-size: 14.4px;
    }

    .success-statistics-banner {
        padding: 30px 15px;
        border-radius: 16px;
    }

    .stat-number-stat {
        font-size: 32px;
    }

    .stat-label-stat {
        font-size: 14.4px;
    }

    .success-cta-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }

    .btn-success-primary,
    .btn-success-outline {
        width: 100%;
        padding: 12px 24px;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subtitle-line {
    color: #6b7280;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.subtitle-text {
    color: #6b7280;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.faq-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    will-change: transform;
    transform-origin: center;
}

.faq-header {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f9fafb;
    will-change: background-color;
}

.faq-item.active .faq-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-icon {
    font-size: 16px;
    color: #6b7280;
    flex-shrink: 0;
    will-change: transform, scale;
    transform-origin: center;
}

.faq-content {
    overflow: hidden;
    background: #ffffff;
    height: 0;
    opacity: 0;
}

.faq-item.active .faq-content {
    padding: 0 28px 24px 28px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    padding-top: 20px;
    font-family: 'Poppins', sans-serif;
    will-change: opacity, transform;
}

/* FAQ Responsive Styles */
@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .faq-question {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-subtitle {
        flex-direction: column;
        gap: 5px;
    }
    
    .subtitle-line,
    .subtitle-text {
        font-size: 16px;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .faq-header {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-content {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer {
        font-size: 15px;
        padding-top: 15px;
    }
    
    .faq-accordion {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .subtitle-line,
    .subtitle-text {
        font-size: 14px;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-header {
        padding: 18px;
    }
    
    .faq-question {
        font-size: 15px;
        padding-right: 12px;
    }
    
    .faq-icon {
        font-size: 14px;
    }
    
    .faq-item.active .faq-content {
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}

/* CTA Banner Section */
.cta-banner-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.cta-banner-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.back-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-content-box {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #7B68EE 0%, #6DD5ED 100%);
    border-radius: 40px;
    padding: 70px 60px;
    overflow: visible;
    box-shadow: 0 25px 70px rgba(123, 104, 238, 0.25);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-content-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative;
    width: 100%;
}

.cta-left-content {
    flex: 0 0 65%;
    max-width: 65%;
    z-index: 3;
    padding-right: 40px;
}

.cta-headline {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 45px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 320px;
}

.btn-cta-primary-banner {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-cta-primary-banner:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary-banner i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-cta-primary-banner:hover i {
    transform: translateX(5px);
}

.btn-cta-secondary-banner {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cta-secondary-banner:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-right-content {
    flex: 0 0 35%;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: -80px;
}

.cta-girl-image {
    max-width: 550px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 6;
    object-fit: contain;
}

/* Decorative Elements */
.cta-decorative-lines {
    position: absolute;
    right: 200px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 250px;
    z-index: 2;
    opacity: 0.5;
}

.cta-decorative-lines::before,
.cta-decorative-lines::after,
.cta-decorative-lines {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}

.cta-decorative-lines::before {
    width: 5px;
    height: 140px;
    top: 20px;
    right: 60px;
    transform: rotate(-20deg);
}

.cta-decorative-lines::after {
    width: 5px;
    height: 110px;
    top: 60px;
    right: 90px;
    transform: rotate(-35deg);
}

.cta-decorative-circles {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 100px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.6;
}

.cta-decorative-circles::before,
.cta-decorative-circles::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.cta-decorative-circles::before {
    top: 0;
}

.cta-decorative-circles::after {
    bottom: 0;
}

/* CTA Banner Responsive Styles */
@media (max-width: 1200px) {
    .cta-right-content {
        margin-right: -40px;
    }
    
    .cta-girl-image {
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .cta-banner-section {
        padding: 80px 0;
    }
    
    .cta-content-box {
        padding: 60px 50px;
        border-radius: 35px;
        min-height: 350px;
    }
    
    .cta-left-content {
        flex: 0 0 60%;
        max-width: 60%;
        padding-right: 30px;
    }
    
    .cta-headline {
        font-size: 38px;
        margin-bottom: 40px;
    }
    
    .cta-right-content {
        margin-right: -30px;
    }
    
    .cta-girl-image {
        max-width: 400px;
    }
    
    .cta-decorative-lines {
        right: 150px;
        opacity: 0.3;
    }
    
    .cta-decorative-circles {
        right: 100px;
        opacity: 0.4;
    }
}

@media (max-width: 767px) {
    .cta-banner-section {
        padding: 60px 0;
    }
    
    .cta-content-box {
        padding: 50px 40px;
        border-radius: 25px;
        min-height: auto;
    }
    
    .cta-content-inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .cta-left-content {
        flex: 1;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .cta-headline {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .cta-buttons-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .cta-right-content {
        flex: 1;
        width: 100%;
        margin-right: 0;
        display: flex;
        justify-content: center;
    }
    
    .cta-girl-image {
        max-width: 350px;
    }
    
    .cta-decorative-lines,
    .cta-decorative-circles {
        display: none;
    }
}

@media (max-width: 576px) {
    .cta-banner-section {
        padding: 50px 0;
    }
    
    .cta-banner-wrapper {
        padding: 0 15px;
    }
    
    .cta-content-box {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .cta-headline {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .btn-cta-primary-banner,
    .btn-cta-secondary-banner {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .cta-girl-image {
        max-width: 280px;
    }
}

/* Footer Section */
.footer-section {
    background: radial-gradient(64.21% 79.7% at 50% 50%, rgba(123, 104, 238, 0.30) 0.08%, rgba(0, 0, 0, 0.00) 0%);
    background-color: #1A2744;
    padding: 80px 0 0;
    color: #ffffff;
    position: relative;
}

.footer-section .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.footer-row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .footer-row > [class*="col-lg-"] {
        margin-bottom: 0;
    }
    
    .footer-row > .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-heading + .footer-contact {
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 18px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-item:nth-child(1):hover .contact-icon {
    box-shadow: 0 4px 15px rgba(109, 213, 237, 0.5);
    border-color: rgba(109, 213, 237, 0.6);
}

.contact-item:nth-child(2):hover .contact-icon {
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.5);
    border-color: rgba(123, 104, 238, 0.6);
}

.contact-item:nth-child(3):hover .contact-icon {
    box-shadow: 0 4px 15px rgba(255, 154, 60, 0.5);
    border-color: rgba(255, 154, 60, 0.6);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #1A2744;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Phone icon - Light blue/cyan */
.contact-item:nth-child(1) .contact-icon {
    color: #6DD5ED;
    border-color: rgba(109, 213, 237, 0.3);
}

/* Envelope icon - Purple */
.contact-item:nth-child(2) .contact-icon {
    color: #7B68EE;
    border-color: rgba(123, 104, 238, 0.3);
}

/* Location pin icon - Orange */
.contact-item:nth-child(3) .contact-icon {
    color: #FF9A3C;
    border-color: rgba(255, 154, 60, 0.3);
}


.contact-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    flex: 1;
    padding-top: 2px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-text {
    color: #6DD5ED;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #6DD5ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: #6DD5ED;
    border-color: #6DD5ED;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.footer-links a:hover {
    color: #6DD5ED;
    padding-left: 5px;
}

.footer-image-row {
    width: 100vw;
    margin: 40px calc(-50vw + 50%) 0;
    text-align: center;
}

.footer-image-part {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.footer-bottom {
    background: #1A2744;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 16px;
    margin-top: 0;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom .container {
    max-width: 1200px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    line-height: 1.5;
}

.footer-policies {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.policy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.policy-link:hover {
    color: #6DD5ED;
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-row > [class*="col-"] {
        margin-bottom: 35px;
    }
    
    .footer-logo {
        max-width: 200px;
    }
    
    .footer-tagline {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .footer-brand {
        margin-bottom: 25px;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 18px;
        margin-top: 0;
    }
    
    .footer-contact {
        margin-bottom: 20px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding: 24px 16px;
    }

    .copyright-text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-row > [class*="col-"] {
        margin-bottom: 30px;
    }
    
    .footer-logo {
        max-width: 180px;
        margin-bottom: 15px;
    }
    
    .footer-tagline {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .footer-brand {
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 16px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .contact-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 16px;
        margin-top: 0;
    }
    
    .footer-contact {
        margin-bottom: 18px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-image-row {
        margin: 30px 0 25px 0;
    }
    
    .footer-bottom {
        margin-top: 25px;
        padding: 22px 14px;
    }

    .copyright-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-row > [class*="col-"] {
        margin-bottom: 25px;
    }
    
    .footer-logo {
        max-width: 150px;
        margin-bottom: 12px;
    }
    
    .footer-tagline {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-description {
        font-size: 12px;
        margin-bottom: 18px;
        line-height: 1.6;
    }
    
    .footer-brand {
        margin-bottom: 18px;
    }
    
    .contact-item {
        margin-bottom: 14px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .contact-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .footer-heading {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .footer-contact {
        margin-bottom: 16px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-image-row {
        margin: 25px 0 20px 0;
    }
    
    .footer-bottom {
        margin-top: 20px;
        padding: 20px 12px;
    }

    .copyright-text {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* ============================================
   BBB Trust Section (clean trust strip — white bg)
   ============================================ */

/* Outer band: background + borders. Vertical spacing lives on __inner so it isn’t lost to section resets. */
.bbb-trust-section {
    background: #ffffff;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    margin: 0;
}

.bbb-trust-section__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

@media (min-width: 576px) {
    .bbb-trust-section__inner {
        padding-top: 88px !important;
        padding-bottom: 88px !important;
    }
}

@media (min-width: 992px) {
    .bbb-trust-section__inner {
        padding-top: 112px !important;
        padding-bottom: 112px !important;
    }
}

@media (min-width: 1200px) {
    .bbb-trust-section__inner {
        padding-top: 128px !important;
        padding-bottom: 128px !important;
    }
}

.bbb-trust-content {
    max-width: 640px;
}

@media (min-width: 992px) {
    .bbb-trust-content {
        padding-right: 16px;
    }
}

.bbb-trust-eyebrow {
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #64748b;
    margin: 0 0 10px;
}

.bbb-trust-headline {
    color: #012B7F;
    font-family: Poppins, sans-serif;
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.35px;
}

.bbb-trust-lead {
    color: #475569;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    margin: 0 0 20px;
}

.bbb-trust-inline-rating {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #334155;
}

.bbb-trust-inline-rating__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    margin-top: 2px;
}

.bbb-trust-inline-rating__text strong {
    font-weight: 700;
    color: #0f172a;
}

.bbb-trust-seal-card {
    margin: 0 auto;
    max-width: 280px;
    padding: 24px 20px 22px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    text-align: center;
}

@media (max-width: 991.98px) {
    .bbb-trust-seal-card {
        margin-top: 8px;
    }
}

.bbb-trust-seal-label {
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    margin: 0 0 14px;
    letter-spacing: 0.04em;
}

.bbb-trust-seal-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90px;
}

.bbb-trust-seal-frame iframe {
    display: block;
    max-width: 100%;
}

/* ============================================
   Home — Here's Why Authors Choose Us (polished)
   ============================================ */

.authors-why-section {
    background: linear-gradient(170deg, #f8faff 0%, #eef6fb 38%, #f1f4ff 72%, #f3f0ff 100%);
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.authors-why-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.07) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.authors-why-section::after {
    content: '';
    position: absolute;
    bottom: -110px;
    left: -90px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.055) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.authors-why-section .container {
    position: relative;
    z-index: 1;
}

.authors-why-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 20px;
}

.authors-why-kicker {
    display: inline-block;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #673AB7, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 14px;
}

.authors-why-title {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: #012B7F;
    line-height: 1.18;
    letter-spacing: -0.45px;
}

.authors-why-rule {
    height: 3px;
    max-width: 560px;
    margin: 0 auto 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 188, 212, 0.35) 22%, #673AB7 50%, rgba(0, 188, 212, 0.35) 78%, transparent 100%);
    opacity: 0.95;
}

.authors-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 22px;
    max-width: 1220px;
    margin: 0 auto;
    padding-top: 28px;
}

.authors-why-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 55%, rgba(255, 255, 255, 0.99) 100%);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 18px;
    padding: 24px 22px 26px 28px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.03),
        0 8px 24px -6px rgba(15, 23, 42, 0.06),
        0 18px 48px -16px rgba(103, 58, 183, 0.09);
    transition:
        transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
}

.authors-why-card__sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.65) 0%, transparent 42%, transparent 100%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.authors-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.22);
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.04),
        0 16px 36px -8px rgba(15, 23, 42, 0.08),
        0 28px 56px -18px rgba(103, 58, 183, 0.13);
}

.authors-why-card__accent {
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 0 5px 5px 0;
    background: linear-gradient(180deg, #673AB7 0%, #00BCD4 48%, #3b82f6 100%);
    box-shadow: 2px 0 12px rgba(0, 188, 212, 0.15);
    z-index: 1;
}

.authors-why-num-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(103, 58, 183, 0.09) 0%, rgba(0, 188, 212, 0.08) 100%);
    border: 1px solid rgba(0, 188, 212, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 12px -4px rgba(103, 58, 183, 0.12);
}

.authors-why-num {
    font-family: Poppins, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #673AB7 0%, #00BCD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #012B7F;
}

.authors-why-item-title {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    font-family: Poppins, sans-serif;
    font-size: clamp(16px, 1.45vw, 18px);
    font-weight: 700;
    color: #012B7F;
    line-height: 1.38;
    letter-spacing: -0.025em;
    transition: color 0.25s ease;
}

.authors-why-card:hover .authors-why-item-title {
    color: #011d5c;
}

.authors-why-item-text {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #526077;
    line-height: 1.68;
    flex: 1 1 auto;
}

@media (prefers-reduced-motion: reduce) {
    .authors-why-card {
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .authors-why-card:hover {
        transform: none;
    }
}

@media (max-width: 991.98px) {
    .authors-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        padding-top: 22px;
    }
}

@media (max-width: 767.98px) {
    .authors-why-section {
        padding: 64px 0 76px;
    }

    .authors-why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 20px;
    }

    .authors-why-card {
        padding: 22px 20px 24px 26px;
    }

    .authors-why-item-text {
        font-size: 15px;
        line-height: 1.65;
    }
}

