/* =================================================================
   TAILWIND CSS MODULAR RESPONSIVE SYSTEM - 2024/2025 BEST PRACTICES
   Optimized for Livewire/Blade components with Mobile-First approach
   ================================================================= */

/* =================================================================
   BREAKPOINT REFERENCE - Tailwind CSS Default Breakpoints
   ================================================================= */

/*
   Mobile-First Approach (min-width):
   - Base:  0px+     (no prefix)    - Mobile phones
   - sm:    640px+   (small)        - Large phones / Small tablets
   - md:    768px+   (medium)       - Tablets / Small laptops  
   - lg:    1024px+  (large)        - Laptops / Desktops
   - xl:    1280px+  (extra large)  - Large desktops
   - 2xl:   1536px+  (2x large)     - Extra large screens
*/

/* =================================================================
   TYPOGRAPHY RESPONSIVE SYSTEM
   ================================================================= */

/* Typography Scale - Mobile First Enhanced for Better Readability */
.responsive-text-xs {
    font-size: 14px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-text-xs {
        font-size: 16px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-text-xs {
        font-size: 18px;
        line-height: 1.6;
    }
}
.responsive-text-sm {
    font-size: 16px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-text-sm {
        font-size: 18px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-text-sm {
        font-size: 20px;
        line-height: 1.6;
    }
}
.responsive-text-base {
    font-size: 18px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-text-base {
        font-size: 20px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-text-base {
        font-size: 24px;
        line-height: 1.5;
    }
}
.responsive-text-lg {
    font-size: 20px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-text-lg {
        font-size: 24px;
        line-height: 1.5;
    }
}
@media (min-width: 768px) {
    .responsive-text-lg {
        font-size: 28px;
        line-height: 1.4;
    }
}
.responsive-text-xl {
    font-size: 24px;
    line-height: 1.5;
}
@media (min-width: 640px) {
    .responsive-text-xl {
        font-size: 28px;
        line-height: 1.4;
    }
}
@media (min-width: 768px) {
    .responsive-text-xl {
        font-size: 32px;
        line-height: 1.3;
    }
}

/* Heading Responsive Scale - Enhanced for Mobile Readability */
.responsive-h1 {
    font-size: 28px;
    line-height: 1.4;
}
@media (min-width: 640px) {
    .responsive-h1 {
        font-size: 32px;
        line-height: 1.3;
    }
}
@media (min-width: 768px) {
    .responsive-h1 {
        font-size: 36px;
        line-height: 1.2;
    }
}
@media (min-width: 1024px) {
    .responsive-h1 {
        font-size: 3.75rem;
        line-height: 1;
    }
}
@media (min-width: 1280px) {
    .responsive-h1 {
        font-size: 4.5rem;
        line-height: 1;
    }
}
.responsive-h2 {
    font-size: 24px;
    line-height: 1.5;
}
@media (min-width: 640px) {
    .responsive-h2 {
        font-size: 28px;
        line-height: 1.4;
    }
}
@media (min-width: 768px) {
    .responsive-h2 {
        font-size: 32px;
        line-height: 1.3;
    }
}
@media (min-width: 1024px) {
    .responsive-h2 {
        font-size: 36px;
        line-height: 1.2;
    }
}
@media (min-width: 1280px) {
    .responsive-h2 {
        font-size: 3.75rem;
        line-height: 1;
    }
}
.responsive-h3 {
    font-size: 20px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-h3 {
        font-size: 24px;
        line-height: 1.5;
    }
}
@media (min-width: 768px) {
    .responsive-h3 {
        font-size: 28px;
        line-height: 1.4;
    }
}
@media (min-width: 1024px) {
    .responsive-h3 {
        font-size: 32px;
        line-height: 1.3;
    }
}
@media (min-width: 1280px) {
    .responsive-h3 {
        font-size: 36px;
        line-height: 1.2;
    }
}
.responsive-h4 {
    font-size: 18px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-h4 {
        font-size: 20px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-h4 {
        font-size: 24px;
        line-height: 1.5;
    }
}
@media (min-width: 1024px) {
    .responsive-h4 {
        font-size: 28px;
        line-height: 1.4;
    }
}
@media (min-width: 1280px) {
    .responsive-h4 {
        font-size: 32px;
        line-height: 1.3;
    }
}

/* Line Heights - Responsive */
.responsive-leading {
    line-height: 1.25;
}
@media (min-width: 640px) {
    .responsive-leading {
        line-height: 1.375;
    }
}
@media (min-width: 768px) {
    .responsive-leading {
        line-height: 1.5;
    }
}
@media (min-width: 1024px) {
    .responsive-leading {
        line-height: 1.625;
    }
}

/* =================================================================
   SPACING RESPONSIVE SYSTEM  
   ================================================================= */

/* Padding Scale - Enhanced for Mobile Touch Interaction */
.responsive-p-xs {
    padding: 0.5rem;
}
@media (min-width: 640px) {
    .responsive-p-xs {
        padding: 0.75rem;
    }
}
@media (min-width: 768px) {
    .responsive-p-xs {
        padding: 1rem;
    }
}
@media (min-width: 1024px) {
    .responsive-p-xs {
        padding: 1.5rem;
    }
}
.responsive-p-sm {
    padding: 0.75rem;
}
@media (min-width: 640px) {
    .responsive-p-sm {
        padding: 1rem;
    }
}
@media (min-width: 768px) {
    .responsive-p-sm {
        padding: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .responsive-p-sm {
        padding: 2rem;
    }
}
.responsive-p-base {
    padding: 1rem;
}
@media (min-width: 640px) {
    .responsive-p-base {
        padding: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-p-base {
        padding: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-p-base {
        padding: 2.5rem;
    }
}
.responsive-p-lg {
    padding: 1.5rem;
}
@media (min-width: 640px) {
    .responsive-p-lg {
        padding: 2rem;
    }
}
@media (min-width: 768px) {
    .responsive-p-lg {
        padding: 2.5rem;
    }
}
@media (min-width: 1024px) {
    .responsive-p-lg {
        padding: 3.5rem;
    }
}
.responsive-p-xl {
    padding: 2rem;
}
@media (min-width: 640px) {
    .responsive-p-xl {
        padding: 2.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-p-xl {
        padding: 3.5rem;
    }
}
@media (min-width: 1024px) {
    .responsive-p-xl {
        padding: 4.5rem;
    }
}

/* Margin Scale */
.responsive-m-xs {
    margin: 0.25rem;
}
@media (min-width: 640px) {
    .responsive-m-xs {
        margin: 0.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-m-xs {
        margin: 0.75rem;
    }
}
@media (min-width: 1024px) {
    .responsive-m-xs {
        margin: 1rem;
    }
}
.responsive-m-sm {
    margin: 0.5rem;
}
@media (min-width: 640px) {
    .responsive-m-sm {
        margin: 0.75rem;
    }
}
@media (min-width: 768px) {
    .responsive-m-sm {
        margin: 1rem;
    }
}
@media (min-width: 1024px) {
    .responsive-m-sm {
        margin: 1.5rem;
    }
}
.responsive-m-base {
    margin: 0.75rem;
}
@media (min-width: 640px) {
    .responsive-m-base {
        margin: 1rem;
    }
}
@media (min-width: 768px) {
    .responsive-m-base {
        margin: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .responsive-m-base {
        margin: 2rem;
    }
}
.responsive-m-lg {
    margin: 1rem;
}
@media (min-width: 640px) {
    .responsive-m-lg {
        margin: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-m-lg {
        margin: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-m-lg {
        margin: 3rem;
    }
}

/* Gap Scale for Flex/Grid */
.responsive-gap-xs {
    gap: 0.25rem;
}
@media (min-width: 640px) {
    .responsive-gap-xs {
        gap: 0.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-gap-xs {
        gap: 0.75rem;
    }
}
@media (min-width: 1024px) {
    .responsive-gap-xs {
        gap: 1rem;
    }
}
.responsive-gap-sm {
    gap: 0.5rem;
}
@media (min-width: 640px) {
    .responsive-gap-sm {
        gap: 0.75rem;
    }
}
@media (min-width: 768px) {
    .responsive-gap-sm {
        gap: 1rem;
    }
}
@media (min-width: 1024px) {
    .responsive-gap-sm {
        gap: 1.5rem;
    }
}
.responsive-gap-base {
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .responsive-gap-base {
        gap: 1rem;
    }
}
@media (min-width: 768px) {
    .responsive-gap-base {
        gap: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .responsive-gap-base {
        gap: 2rem;
    }
}
.responsive-gap-lg {
    gap: 1rem;
}
@media (min-width: 640px) {
    .responsive-gap-lg {
        gap: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-gap-lg {
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-gap-lg {
        gap: 3rem;
    }
}

/* =================================================================
   LAYOUT RESPONSIVE SYSTEM
   ================================================================= */

/* Container Responsive */
.responsive-container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
@media (min-width: 640px) {
    .responsive-container {
        max-width: 24rem;
    }
}
@media (min-width: 768px) {
    .responsive-container {
        max-width: 28rem;
    }
}
@media (min-width: 1024px) {
    .responsive-container {
        max-width: 32rem;
    }
}
@media (min-width: 1280px) {
    .responsive-container {
        max-width: 36rem;
    }
}
@media (min-width: 1536px) {
    .responsive-container {
        max-width: 42rem;
    }
}
.responsive-container-wide {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
@media (min-width: 640px) {
    .responsive-container-wide {
        max-width: 36rem;
    }
}
@media (min-width: 768px) {
    .responsive-container-wide {
        max-width: 42rem;
    }
}
@media (min-width: 1024px) {
    .responsive-container-wide {
        max-width: 56rem;
    }
}
@media (min-width: 1280px) {
    .responsive-container-wide {
        max-width: 72rem;
    }
}
@media (min-width: 1536px) {
    .responsive-container-wide {
        max-width: 80rem;
    }
}

/* Width Scale */
.responsive-w-auto {
    width: 100%;
}
@media (min-width: 640px) {
    .responsive-w-auto {
        width: auto;
    }
}
@media (min-width: 768px) {
    .responsive-w-auto {
        width: auto;
    }
}
.responsive-w-half {
    width: 100%;
}
@media (min-width: 640px) {
    .responsive-w-half {
        width: 50%;
    }
}
@media (min-width: 768px) {
    .responsive-w-half {
        width: 50%;
    }
}
.responsive-w-third {
    width: 100%;
}
@media (min-width: 640px) {
    .responsive-w-third {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .responsive-w-third {
        width: 33.333333%;
    }
}
@media (min-width: 1024px) {
    .responsive-w-third {
        width: 33.333333%;
    }
}
.responsive-w-quarter {
    width: 100%;
}
@media (min-width: 640px) {
    .responsive-w-quarter {
        width: 50%;
    }
}
@media (min-width: 768px) {
    .responsive-w-quarter {
        width: 33.333333%;
    }
}
@media (min-width: 1024px) {
    .responsive-w-quarter {
        width: 25%;
    }
}
.responsive-w-two-thirds {
    width: 100%;
}
@media (min-width: 640px) {
    .responsive-w-two-thirds {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .responsive-w-two-thirds {
        width: 66.666667%;
    }
}
@media (min-width: 1024px) {
    .responsive-w-two-thirds {
        width: 66.666667%;
    }
}

/* Height Scale */
.responsive-h-auto {
    height: auto;
}
@media (min-width: 640px) {
    .responsive-h-auto {
        height: auto;
    }
}
@media (min-width: 768px) {
    .responsive-h-auto {
        height: auto;
    }
}
.responsive-h-screen {
    height: 100vh;
}
@media (min-width: 640px) {
    .responsive-h-screen {
        height: auto;
    }
}
@media (min-width: 768px) {
    .responsive-h-screen {
        height: 100vh;
    }
}
.responsive-h-half {
    height: 12rem;
}
@media (min-width: 640px) {
    .responsive-h-half {
        height: 16rem;
    }
}
@media (min-width: 768px) {
    .responsive-h-half {
        height: 20rem;
    }
}
@media (min-width: 1024px) {
    .responsive-h-half {
        height: 24rem;
    }
}

/* =================================================================
   GRID RESPONSIVE SYSTEM
   ================================================================= */

/* Responsive Grid Columns */
.responsive-grid-1 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.responsive-grid-2 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .responsive-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .responsive-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .responsive-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.responsive-grid-4 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .responsive-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .responsive-grid-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .responsive-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.responsive-grid-6 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .responsive-grid-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .responsive-grid-6 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .responsive-grid-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Auto-fit Grid */
.responsive-grid-auto {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .responsive-grid-auto {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .responsive-grid-auto {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .responsive-grid-auto {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* =================================================================
   FLEXBOX RESPONSIVE SYSTEM
   ================================================================= */

/* Flex Direction */
.responsive-flex-col {
    display: flex;
    flex-direction: column;
}
@media (min-width: 640px) {
    .responsive-flex-col {
        flex-direction: column;
    }
}
@media (min-width: 768px) {
    .responsive-flex-col {
        flex-direction: row;
    }
}
.responsive-flex-row {
    display: flex;
    flex-direction: column;
}
@media (min-width: 640px) {
    .responsive-flex-row {
        flex-direction: row;
    }
}

/* Flex Wrap */
.responsive-flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
@media (min-width: 640px) {
    .responsive-flex-wrap {
        flex-wrap: nowrap;
    }
}
@media (min-width: 768px) {
    .responsive-flex-wrap {
        flex-wrap: wrap;
    }
}

/* Justify Content */
.responsive-justify-start {
    justify-content: flex-start;
}
@media (min-width: 640px) {
    .responsive-justify-start {
        justify-content: center;
    }
}
@media (min-width: 768px) {
    .responsive-justify-start {
        justify-content: flex-start;
    }
}
.responsive-justify-center {
    justify-content: center;
}
@media (min-width: 640px) {
    .responsive-justify-center {
        justify-content: flex-start;
    }
}
@media (min-width: 768px) {
    .responsive-justify-center {
        justify-content: center;
    }
}
.responsive-justify-between {
    justify-content: flex-start;
}
@media (min-width: 640px) {
    .responsive-justify-between {
        justify-content: center;
    }
}
@media (min-width: 768px) {
    .responsive-justify-between {
        justify-content: space-between;
    }
}

/* =================================================================
   COMPONENT-SPECIFIC RESPONSIVE CLASSES
   ================================================================= */

/* Button Responsive */
.responsive-btn {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 14px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-btn {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 16px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-btn {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 18px;
        line-height: 1.6;
    }
}
.responsive-btn-small {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 12px;
    line-height: 1.5;
}
@media (min-width: 640px) {
    .responsive-btn-small {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
        font-size: 14px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-btn-small {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 16px;
        line-height: 1.6;
    }
}
.responsive-btn-large {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 16px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-btn-large {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 18px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-btn-large {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 20px;
        line-height: 1.6;
    }
}

/* Input Responsive */
.responsive-input {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 14px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-input {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 16px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-input {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 18px;
        line-height: 1.6;
    }
}

/* Card Responsive */
.responsive-card {
    border-radius: 0.125rem;
    padding: 1rem;
}
@media (min-width: 640px) {
    .responsive-card {
        border-radius: 0.25rem;
        padding: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-card {
        border-radius: 0.5rem;
        padding: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-card {
        border-radius: 1rem;
    }
}

/* Image Responsive */
.responsive-img {
    height: auto;
    width: 100%;
    border-radius: 0.125rem;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (min-width: 640px) {
    .responsive-img {
        border-radius: 0.25rem;
    }
}
@media (min-width: 768px) {
    .responsive-img {
        border-radius: 0.5rem;
    }
}

/* =================================================================
   NAVIGATION RESPONSIVE SYSTEM
   ================================================================= */

/* Navbar Responsive */
.responsive-navbar {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (min-width: 640px) {
    .responsive-navbar {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}
@media (min-width: 768px) {
    .responsive-navbar {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
.responsive-nav-item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 14px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-nav-item {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 16px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-nav-item {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

/* Menu Responsive */
.responsive-menu {
    width: 100%;
}
@media (min-width: 640px) {
    .responsive-menu {
        width: 16rem;
    }
}
@media (min-width: 768px) {
    .responsive-menu {
        width: 18rem;
    }
}
@media (min-width: 1024px) {
    .responsive-menu {
        width: 20rem;
    }
}
.responsive-menu-item {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 14px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-menu-item {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 16px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-menu-item {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* =================================================================
   VISIBILITY RESPONSIVE SYSTEM
   ================================================================= */

/* Show/Hide at Breakpoints */
.show-mobile-only {
    display: block;
}
@media (min-width: 640px) {
    .show-mobile-only {
        display: none;
    }
}
.show-tablet-up {
    display: none;
}
@media (min-width: 640px) {
    .show-tablet-up {
        display: block;
    }
}
.show-desktop-only {
    display: none;
}
@media (min-width: 768px) {
    .show-desktop-only {
        display: block;
    }
}
.hide-mobile {
    display: none;
}
@media (min-width: 640px) {
    .hide-mobile {
        display: block;
    }
}
.hide-tablet {
    display: block;
}
@media (min-width: 640px) {
    .hide-tablet {
        display: none;
    }
}
@media (min-width: 768px) {
    .hide-tablet {
        display: block;
    }
}
.hide-desktop {
    display: block;
}
@media (min-width: 768px) {
    .hide-desktop {
        display: none;
    }
}

/* =================================================================
   MODULAR COMPONENT EXAMPLES
   ================================================================= */

/* Example: Responsive Hero Section */
.responsive-hero {
    min-height: 100vh;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}
@media (min-width: 640px) {
    .responsive-hero {
        min-height: 80vh;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
        text-align: left;
    }
}
@media (min-width: 768px) {
    .responsive-hero {
        min-height: 100vh;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
        text-align: center;
    }
}
@media (min-width: 1024px) {
    .responsive-hero {
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* Example: Responsive Feature Card */
.responsive-feature-card {
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 640px) {
    .responsive-feature-card {
        border-radius: 1rem;
        padding: 1.5rem;
        text-align: left;
        --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}
@media (min-width: 768px) {
    .responsive-feature-card {
        border-radius: 1.5rem;
        padding: 2rem;
        --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}

/* Example: Responsive Form */
.responsive-form {
    width: 100%;
}
.responsive-form > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.responsive-form {
    padding: 1rem;
}
@media (min-width: 640px) {
    .responsive-form {
        max-width: 28rem;
    }
    .responsive-form > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
    }
    .responsive-form {
        padding: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-form {
        max-width: 32rem;
    }
    .responsive-form > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(2rem * var(--tw-space-y-reverse));
    }
    .responsive-form {
        padding: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-form {
        max-width: 36rem;
    }
}

/* =================================================================
   SAFE AREA RESPONSIVE INTEGRATION (Mobile Devices)
   ================================================================= */

/* Safe Area Top */
.responsive-safe-top {
    padding-top: max(1rem, env(safe-area-inset-top));
}
@media (min-width: 640px) {
    .responsive-safe-top {
        padding-top: 1rem;
    }
}
@media (min-width: 768px) {
    .responsive-safe-top {
        padding-top: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .responsive-safe-top {
        padding-top: 2rem;
    }
}

/* Safe Area Bottom */
.responsive-safe-bottom {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
}
@media (min-width: 640px) {
    .responsive-safe-bottom {
        padding-bottom: 1rem;
    }
}
@media (min-width: 768px) {
    .responsive-safe-bottom {
        padding-bottom: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .responsive-safe-bottom {
        padding-bottom: 2rem;
    }
}

/* Hero Section Fix */
.responsive-hero {
    padding-top: 2rem;
}
@media (min-width: 640px) {
    .responsive-hero {
        padding-top: 3rem;
    }
}
@media (min-width: 768px) {
    .responsive-hero {
        padding-top: 4rem;
    }
}
@media (min-width: 1024px) {
    .responsive-hero {
        padding-top: 5rem;
    }
}
.responsive-hero {
    padding-bottom: 2rem;
}
@media (min-width: 640px) {
    .responsive-hero {
        padding-bottom: 3rem;
    }
}
@media (min-width: 768px) {
    .responsive-hero {
        padding-bottom: 4rem;
    }
}
@media (min-width: 1024px) {
    .responsive-hero {
        padding-bottom: 5rem;
    }
}

/* Main Content Spacing Fix */
.responsive-main {
    min-height: 100vh;
}

/* =================================================================
   FEATURES SECTION RESPONSIVE SYSTEM
   ================================================================= */

/* Features Section Components */
.responsive-features-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 640px) {
    .responsive-features-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
@media (min-width: 768px) {
    .responsive-features-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
@media (min-width: 1024px) {
    .responsive-features-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}
@media (min-width: 1280px) {
    .responsive-features-section {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}
.responsive-features-section {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.responsive-features-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .responsive-features-container {
        max-width: 640px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media (min-width: 768px) {
    .responsive-features-container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .responsive-features-container {
        max-width: 1024px;
        padding-right: 4rem;
        padding-left: 4rem;
    }
}

@media (min-width: 1280px) {
    .responsive-features-container {
        max-width: 1280px;
        padding-right: 5rem;
        padding-left: 5rem;
    }
}

@media (min-width: 1440px) {
    .responsive-features-container {
        max-width: 1440px;
        padding-right: 6rem;
        padding-left: 6rem;
    }
}

.responsive-features-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

@media (min-width: 768px) {
    .responsive-features-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .responsive-features-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.responsive-features-container {
    max-width: 80rem;
}

.responsive-features-header {
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .responsive-features-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .responsive-features-header {
        margin-bottom: 4rem;
    }
}

.responsive-features-title {
    font-size: 24px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .responsive-features-title {
        font-size: 28px;
        line-height: 1.4;
    }
}

@media (min-width: 768px) {
    .responsive-features-title {
        font-size: 32px;
        line-height: 1.3;
    }
}

@media (min-width: 1024px) {
    .responsive-features-title {
        font-size: 36px;
        line-height: 1.2;
    }
}

.responsive-features-title {
    margin-bottom: 1rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-features-title {
        margin-bottom: 1.5rem;
    }
}

.responsive-features-description {
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-features-description {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-features-description {
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 1024px) {
    .responsive-features-description {
        font-size: 24px;
        line-height: 1.5;
    }
}

.responsive-features-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 48rem;
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

.responsive-features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .responsive-features-grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .responsive-features-grid {
        gap: 2.5rem;
    }
}

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

@media (min-width: 640px) {
    .responsive-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .responsive-features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.responsive-feature-card {
    padding: 1rem;
}

@media (min-width: 640px) {
    .responsive-feature-card {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-feature-card {
        padding: 2rem;
    }
}

.responsive-feature-card {
    border-radius: 1rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    text-align: center;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.responsive-feature-card:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-feature-card {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}

.responsive-feature-icon {
    height: 3rem;
    width: 3rem;
}

@media (min-width: 640px) {
    .responsive-feature-icon {
        height: 3.5rem;
        width: 3.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-feature-icon {
        height: 4rem;
        width: 4rem;
    }
}

.responsive-feature-icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-feature-icon {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-feature-icon {
        margin-bottom: 1.5rem;
    }
}

.responsive-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.responsive-feature-card:hover .responsive-feature-icon {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.responsive-feature-title {
    font-size: 18px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-feature-title {
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-feature-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

.responsive-feature-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-feature-title {
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .responsive-feature-title {
        margin-bottom: 1rem;
    }
}

.responsive-feature-description {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-feature-description {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-feature-description {
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-feature-description {
    line-height: 1.625;
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

/* =================================================================
   LAYOUT RESPONSIVE SYSTEM
   ================================================================= */

/* HTML & Body Responsive */
.responsive-html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.responsive-body {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    font-family: Heebo, Rubik, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
    line-height: 1.625;
}

/* Main Content Responsive */
.responsive-main {
    min-height: 100vh;
    padding-top: 0px; /* Remove default padding as navbar handles it */
}

/* Footer Responsive */
.responsive-footer {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(203 213 225 / var(--tw-text-opacity, 1));
    padding-top: 2rem;
    padding-bottom: 2rem;
}
@media (min-width: 640px) {
    .responsive-footer {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
@media (min-width: 768px) {
    .responsive-footer {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
.responsive-footer {
    margin-top: 3rem;
}
@media (min-width: 640px) {
    .responsive-footer {
        margin-top: 4rem;
    }
}
@media (min-width: 768px) {
    .responsive-footer {
        margin-top: 5rem;
    }
}

.responsive-footer-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .responsive-footer-container {
        max-width: 640px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media (min-width: 768px) {
    .responsive-footer-container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .responsive-footer-container {
        max-width: 1024px;
        padding-right: 4rem;
        padding-left: 4rem;
    }
}

@media (min-width: 1280px) {
    .responsive-footer-container {
        max-width: 1280px;
        padding-right: 5rem;
        padding-left: 5rem;
    }
}

@media (min-width: 1440px) {
    .responsive-footer-container {
        max-width: 1440px;
        padding-right: 6rem;
        padding-left: 6rem;
    }
}

.responsive-footer-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

@media (min-width: 768px) {
    .responsive-footer-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.responsive-footer-container {
    text-align: center;
}

.responsive-footer-title {
    font-size: 20px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-footer-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (min-width: 768px) {
    .responsive-footer-title {
        font-size: 28px;
        line-height: 1.4;
    }
}

.responsive-footer-title {
    margin-bottom: 0.75rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-footer-title {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-footer-title {
        margin-bottom: 1.5rem;
    }
}

.responsive-footer-description {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-footer-description {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-footer-description {
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-footer-description {
    margin-bottom: 0.75rem;
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-footer-description {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-footer-description {
        margin-bottom: 1.5rem;
    }
}

.responsive-footer-copyright {
    font-size: 12px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .responsive-footer-copyright {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-footer-copyright {
        font-size: 16px;
        line-height: 1.6;
    }
}

.responsive-footer-copyright {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

/* =================================================================
   NAVBAR RESPONSIVE SYSTEM
   ================================================================= */

/* Main Navbar */
.responsive-navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 50;
    background-color: rgb(255 255 255 / 0.95);
    --tw-backdrop-blur: blur(12px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    border-bottom-width: 1px;
    border-color: rgb(229 231 235 / 0.8);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.responsive-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

@media (min-width: 768px) {
    .responsive-navbar-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .responsive-navbar-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.responsive-navbar-container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-navbar-container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.responsive-navbar-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
}

/* Navbar Elements */
.responsive-nav-avatar {
    height: 2.5rem;
    width: 2.5rem;
}
@media (min-width: 640px) {
    .responsive-nav-avatar {
        height: 2.75rem;
        width: 2.75rem;
    }
}
@media (min-width: 768px) {
    .responsive-nav-avatar {
        height: 3rem;
        width: 3rem;
    }
}
.responsive-nav-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-size: 14px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-nav-avatar {
        font-size: 16px;
        line-height: 1.6;
    }
}
@media (min-width: 768px) {
    .responsive-nav-avatar {
        font-size: 18px;
        line-height: 1.6;
    }
}
.responsive-nav-avatar {
    cursor: pointer;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    border-width: 2px;
    border-color: rgb(255 255 255 / 0.9);
}
.responsive-nav-avatar:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.responsive-nav-avatar:active {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.responsive-nav-logo {
    display: flex;
    align-items: center;
}

.responsive-nav-logo > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

@media (min-width: 640px) {
    .responsive-nav-logo > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(0.75rem * var(--tw-space-x-reverse));
        margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
    }
}

.responsive-nav-logo {
    text-decoration-line: none;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.responsive-nav-logo:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.responsive-nav-language {
    position: relative;
}

.responsive-nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-nav-lang-btn {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (min-width: 768px) {
    .responsive-nav-lang-btn {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.responsive-nav-lang-btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-nav-lang-btn {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

.responsive-nav-lang-btn {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-radius: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-nav-lang-btn {
        border-radius: 1rem;
    }
}

.responsive-nav-lang-btn {
    font-size: 12px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .responsive-nav-lang-btn {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-nav-lang-btn {
        font-size: 16px;
        line-height: 1.6;
    }
}

.responsive-nav-lang-btn {
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
    cursor: pointer;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.responsive-nav-lang-btn:hover {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-nav-lang-btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.responsive-nav-lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .responsive-nav-lang-dropdown {
        margin-top: 0.5rem;
    }
}

.responsive-nav-lang-dropdown {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-radius: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-nav-lang-dropdown {
        border-radius: 1rem;
    }
}

.responsive-nav-lang-dropdown {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    visibility: hidden;
    --tw-translate-y: -0.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    z-index: 50;
}

.responsive-nav-lang-dropdown.open {
    visibility: visible;
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1;
}

/* Mobile Menu */
.responsive-mobile-menu {
    position: fixed;
    inset: 0px;
    z-index: 50;
    background-color: rgb(0 0 0 / 0.5);
    visibility: hidden;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.responsive-mobile-menu.open {
    visibility: visible;
    opacity: 1;
}

.responsive-menu-backdrop {
    position: absolute;
    inset: 0px;
    cursor: pointer;
}

.responsive-menu-panel {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20rem;
    max-width: 85vw;
}

@media (min-width: 640px) {
    .responsive-menu-panel {
        width: 24rem;
    }
}

.responsive-menu-panel {
    height: 100%;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    --tw-translate-x: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    overflow-y: auto;
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-mobile-menu.open .responsive-menu-panel {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* RTL Support for Menu Panel */
[dir="rtl"] .responsive-menu-panel {
    right: auto;
    left: 0px;
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

[dir="rtl"] .responsive-mobile-menu.open .responsive-menu-panel {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* =================================================================
   CHECKOUT FORMS RESPONSIVE SYSTEM
   ================================================================= */

/* 1. Checkout Header Section */
.responsive-checkout-header {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: #312e81 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(49 46 129 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgb(88 28 135 / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #581c87 var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: #9d174d var(--tw-gradient-to-position);
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    padding-top: 1rem;
    padding-bottom: 1rem;
}
@media (min-width: 640px) {
    .responsive-checkout-header {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-checkout-header {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-checkout-header {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

.responsive-checkout-header-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-checkout-header-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-checkout-header-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

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

.responsive-checkout-title {
    font-size: 20px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-checkout-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (min-width: 768px) {
    .responsive-checkout-title {
        font-size: 28px;
        line-height: 1.4;
    }
}

@media (min-width: 1024px) {
    .responsive-checkout-title {
        font-size: 32px;
        line-height: 1.3;
    }
}

.responsive-checkout-title {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .responsive-checkout-title {
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .responsive-checkout-title {
        margin-bottom: 1rem;
    }
}

.responsive-checkout-title {
    text-align: center;
}

.responsive-checkout-subtitle {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-checkout-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-checkout-subtitle {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media (min-width: 1024px) {
    .responsive-checkout-subtitle {
        font-size: 20px;
        line-height: 1.6;
    }
}

.responsive-checkout-subtitle {
    --tw-text-opacity: 1;
    color: rgb(224 231 255 / var(--tw-text-opacity, 1));
    text-align: center;
}

/* 2. Progress Steps */
.responsive-progress-container {
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .responsive-progress-container {
        margin-bottom: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-progress-container {
        margin-bottom: 2rem;
    }
}

/* Mobile Progress (Horizontal Compact) */
.responsive-progress-mobile {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .responsive-progress-mobile {
        display: none;
    }
}

.responsive-progress-step-mobile {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .responsive-progress-step-mobile {
        font-size: 14px;
        line-height: 1.6;
    }
}

.responsive-progress-step-mobile.active {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}

.responsive-progress-step-mobile.inactive {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.responsive-progress-circle-mobile {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.responsive-progress-circle-mobile.active {
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.responsive-progress-circle-mobile.inactive {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

/* Desktop Progress (Horizontal Extended) */
.responsive-progress-desktop {
    display: none;
    align-items: center;
    justify-content: center;
}
.responsive-progress-desktop > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
@media (min-width: 768px) {
    .responsive-progress-desktop {
        display: flex;
    }
}

.responsive-progress-step-desktop {
    display: flex;
    align-items: center;
}

.responsive-progress-step-desktop.active {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}

.responsive-progress-step-desktop.inactive {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.responsive-progress-circle-desktop {
    display: flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.responsive-progress-circle-desktop.active {
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.responsive-progress-circle-desktop.inactive {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.responsive-progress-line {
    height: 1px;
    flex: 1 1 0%;
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.responsive-progress-label {
    margin-right: 0.5rem;
    font-weight: 500;
}

/* 3. Main Checkout Container */
.responsive-checkout-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
@media (min-width: 640px) {
    .responsive-checkout-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-checkout-container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-checkout-container {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}
.responsive-checkout-container {
    min-height: 100vh;
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.responsive-checkout-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-checkout-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-checkout-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .responsive-checkout-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.responsive-checkout-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .responsive-checkout-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-checkout-grid {
        gap: 2rem;
    }
}

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

@media (min-width: 1024px) {
    .responsive-checkout-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 4. Main Form Section */
@media (min-width: 1024px) {
    .responsive-checkout-main {
        grid-column: span 2 / span 2;
    }
}
.responsive-checkout-main > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
@media (min-width: 640px) {
    .responsive-checkout-main > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
    }
}
@media (min-width: 768px) {
    .responsive-checkout-main > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(2rem * var(--tw-space-y-reverse));
    }
}

.responsive-form-section {
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-form-section {
        border-radius: 1rem;
    }
}

.responsive-form-section {
    padding: 1rem;
}

@media (min-width: 640px) {
    .responsive-form-section {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-form-section {
        padding: 2rem;
    }
}

.responsive-form-section {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-form-section-title {
    font-size: 18px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-form-section-title {
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-form-section-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

.responsive-form-section-title {
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .responsive-form-section-title {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-form-section-title {
        margin-bottom: 2rem;
    }
}

.responsive-form-section-title {
    display: flex;
    align-items: center;
}

.responsive-form-section-icon {
    height: 1.5rem;
    width: 1.5rem;
}

@media (min-width: 640px) {
    .responsive-form-section-icon {
        height: 1.75rem;
        width: 1.75rem;
    }
}

@media (min-width: 768px) {
    .responsive-form-section-icon {
        height: 2rem;
        width: 2rem;
    }
}

.responsive-form-section-icon {
    margin-left: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-form-section-icon {
        margin-left: 0.75rem;
    }
}

.responsive-form-section-icon {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}

/* 5. Package Summary Card */
.responsive-package-summary {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: #eef2ff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(238 242 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #faf5ff var(--tw-gradient-to-position);
    border-radius: 1rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
    padding: 1rem;
}
@media (min-width: 640px) {
    .responsive-package-summary {
        padding: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-package-summary {
        padding: 2rem;
    }
}
.responsive-package-summary {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-package-title {
    font-size: 20px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-package-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (min-width: 768px) {
    .responsive-package-title {
        font-size: 28px;
        line-height: 1.4;
    }
}

.responsive-package-title {
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(49 46 129 / var(--tw-text-opacity, 1));
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-package-title {
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .responsive-package-title {
        margin-bottom: 1rem;
    }
}

.responsive-package-description {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-package-description {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-package-description {
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-package-description {
    margin-bottom: 1rem;
    --tw-text-opacity: 1;
    color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-package-description {
        margin-bottom: 1.5rem;
    }
}

.responsive-package-price {
    font-size: 24px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .responsive-package-price {
        font-size: 28px;
        line-height: 1.4;
    }
}

@media (min-width: 768px) {
    .responsive-package-price {
        font-size: 32px;
        line-height: 1.3;
    }
}

.responsive-package-price {
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(49 46 129 / var(--tw-text-opacity, 1));
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .responsive-package-price {
        margin-bottom: 0.5rem;
    }
}

.responsive-package-period {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-package-period {
        font-size: 16px;
        line-height: 1.6;
    }
}

.responsive-package-period {
    margin-bottom: 1rem;
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-package-period {
        margin-bottom: 1.5rem;
    }
}

/* 6. Package Specifications */
.responsive-package-specs > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
@media (min-width: 640px) {
    .responsive-package-specs > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
    }
}
.responsive-package-specs {
    font-size: 14px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .responsive-package-specs {
        font-size: 16px;
        line-height: 1.6;
    }
}

.responsive-spec-item {
    display: flex;
    justify-content: space-between;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .responsive-spec-item {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.responsive-spec-label {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.responsive-spec-value {
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

/* 7. Form Grid System */
.responsive-form-grid {
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .responsive-form-grid {
        gap: 1rem;
    }
}
@media (min-width: 768px) {
    .responsive-form-grid {
        gap: 1.5rem;
    }
}

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

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

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

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

@media (min-width: 640px) {
    .responsive-form-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .responsive-form-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 8. Payment Gateway Selection */
.responsive-gateways-grid {
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .responsive-gateways-grid {
        gap: 1rem;
    }
}
@media (min-width: 768px) {
    .responsive-gateways-grid {
        gap: 1.5rem;
    }
}
.responsive-gateways-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .responsive-gateways-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .responsive-gateways-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.responsive-gateway-card {
    position: relative;
    border-radius: 0.5rem;
    border-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-gateway-card {
        border-radius: 1rem;
    }
}

.responsive-gateway-card {
    padding: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-gateway-card {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-gateway-card {
        padding: 1.5rem;
    }
}

.responsive-gateway-card {
    cursor: pointer;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.responsive-gateway-card:hover {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-gateway-card:focus-within {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
    --tw-ring-offset-width: 2px;
}

.responsive-gateway-card.selected {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-gateway-radio {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-gateway-radio {
        top: 1rem;
        left: 1rem;
    }
}

.responsive-gateway-logo {
    height: 2rem;
    width: 3rem;
}

@media (min-width: 640px) {
    .responsive-gateway-logo {
        height: 2.5rem;
        width: 4rem;
    }
}

@media (min-width: 768px) {
    .responsive-gateway-logo {
        height: 3rem;
        width: 5rem;
    }
}

.responsive-gateway-logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-gateway-logo {
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .responsive-gateway-logo {
        margin-bottom: 1rem;
    }
}

.responsive-gateway-logo {
    -o-object-fit: contain;
       object-fit: contain;
}

.responsive-gateway-name {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-gateway-name {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-gateway-name {
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-gateway-name {
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .responsive-gateway-name {
        margin-bottom: 0.5rem;
    }
}

.responsive-gateway-description {
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .responsive-gateway-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

.responsive-gateway-description {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

/* 9. Order Summary Sidebar */
@media (min-width: 1024px) {
    .responsive-order-summary {
        grid-column: span 1 / span 1;
    }
}
.responsive-order-summary {
    order: -9999;
}
@media (min-width: 1024px) {
    .responsive-order-summary {
        order: 9999;
    }
}

.responsive-summary-card {
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-summary-card {
        border-radius: 1rem;
    }
}

.responsive-summary-card {
    padding: 1rem;
}

@media (min-width: 640px) {
    .responsive-summary-card {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-summary-card {
        padding: 2rem;
    }
}

.responsive-summary-card {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    position: sticky;
    top: 1rem;
}

.responsive-summary-title {
    font-size: 18px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-summary-title {
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-summary-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

.responsive-summary-title {
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .responsive-summary-title {
        margin-bottom: 1.5rem;
    }
}

.responsive-summary-title {
    padding-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-summary-title {
        padding-bottom: 1rem;
    }
}

.responsive-summary-title {
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.responsive-summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-summary-item {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

.responsive-summary-item {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-summary-item {
        font-size: 16px;
        line-height: 1.6;
    }
}

.responsive-summary-label {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.responsive-summary-value {
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.responsive-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-summary-total {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-summary-total {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.responsive-summary-total {
    font-size: 18px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-summary-total {
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-summary-total {
        font-size: 24px;
        line-height: 1.5;
    }
}

.responsive-summary-total {
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    border-top-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .responsive-summary-total {
        margin-top: 1.5rem;
    }
}

/* 10. Coupon Input Section */
.responsive-coupon-section {
    margin-top: 1rem;
}
@media (min-width: 640px) {
    .responsive-coupon-section {
        margin-top: 1.5rem;
    }
}
.responsive-coupon-section {
    padding-top: 1rem;
}
@media (min-width: 640px) {
    .responsive-coupon-section {
        padding-top: 1.5rem;
    }
}
.responsive-coupon-section {
    border-top-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.responsive-coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-coupon-input-group {
        gap: 0.75rem;
    }
}

.responsive-coupon-input {
    flex: 1 1 0%;
}

.responsive-coupon-button {
    flex-shrink: 0;
}

/* 11. Alert/Notification Components */
.responsive-alert {
    border-radius: 0.5rem;
}
@media (min-width: 640px) {
    .responsive-alert {
        border-radius: 1rem;
    }
}
.responsive-alert {
    padding: 0.75rem;
}
@media (min-width: 640px) {
    .responsive-alert {
        padding: 1rem;
    }
}
@media (min-width: 768px) {
    .responsive-alert {
        padding: 1.5rem;
    }
}
.responsive-alert {
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .responsive-alert {
        margin-bottom: 1.5rem;
    }
}
.responsive-alert {
    border-width: 1px;
}

.responsive-alert-info {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.responsive-alert-success {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.responsive-alert-warning {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}

.responsive-alert-error {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

/* 12. Guest Account Creation */
.responsive-guest-account {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: #eef2ff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(238 242 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #faf5ff var(--tw-gradient-to-position);
    border-radius: 1rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
    padding: 1rem;
}
@media (min-width: 640px) {
    .responsive-guest-account {
        padding: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-guest-account {
        padding: 2rem;
    }
}
.responsive-guest-account {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-guest-header {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .responsive-guest-header {
        margin-bottom: 1.5rem;
    }
}

.responsive-guest-icon-container {
    height: 2.5rem;
    width: 2.5rem;
}

@media (min-width: 640px) {
    .responsive-guest-icon-container {
        height: 3rem;
        width: 3rem;
    }
}

.responsive-guest-icon-container {
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
    margin-left: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsive-guest-title {
    font-size: 18px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-guest-title {
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-guest-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

.responsive-guest-title {
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(49 46 129 / var(--tw-text-opacity, 1));
}

.responsive-guest-subtitle {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-guest-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
}

.responsive-guest-subtitle {
    --tw-text-opacity: 1;
    color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}

/* 13. Action Buttons */
.responsive-checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .responsive-checkout-actions {
        flex-direction: row;
        gap: 1rem;
    }
}
.responsive-checkout-actions {
    margin-top: 1.5rem;
}
@media (min-width: 640px) {
    .responsive-checkout-actions {
        margin-top: 2rem;
    }
}
@media (min-width: 768px) {
    .responsive-checkout-actions {
        margin-top: 2.5rem;
    }
}

.responsive-action-button-primary {
    width: 100%;
}

@media (min-width: 640px) {
    .responsive-action-button-primary {
        flex: 1 1 0%;
    }
}

.responsive-action-button-primary {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: #4f46e5 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}

.responsive-action-button-primary:hover {
    --tw-gradient-from: #4338ca var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(67 56 202 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #7e22ce var(--tw-gradient-to-position);
}

.responsive-action-button-primary {
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 640px) {
    .responsive-action-button-primary {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 768px) {
    .responsive-action-button-primary {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.responsive-action-button-primary {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-action-button-primary {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-action-button-primary {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

.responsive-action-button-primary {
    border-radius: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-action-button-primary {
        border-radius: 1rem;
    }
}

.responsive-action-button-primary {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-action-button-primary:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.responsive-action-button-primary {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-action-button-primary {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-action-button-primary {
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-action-button-secondary {
    width: 100%;
}

@media (min-width: 640px) {
    .responsive-action-button-secondary {
        width: auto;
    }
}

.responsive-action-button-secondary {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.responsive-action-button-secondary:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.responsive-action-button-secondary {
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.responsive-action-button-secondary:hover {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}

.responsive-action-button-secondary {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 640px) {
    .responsive-action-button-secondary {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.responsive-action-button-secondary {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-action-button-secondary {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.responsive-action-button-secondary {
    border-radius: 0.5rem;
}

@media (min-width: 640px) {
    .responsive-action-button-secondary {
        border-radius: 1rem;
    }
}

.responsive-action-button-secondary {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-action-button-secondary {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Safe Area Sides */
.responsive-safe-x {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}
@media (min-width: 640px) {
    .responsive-safe-x {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-safe-x {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-safe-x {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* =================================================================
   TOUCH TARGET RESPONSIVE SYSTEM (Accessibility)
   ================================================================= */

/* Minimum Touch Targets (44px/44px) */
.responsive-touch-target {
    display: flex;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}
@media (min-width: 640px) {
    .responsive-touch-target {
        min-height: 48px;
        min-width: 48px;
    }
}
@media (min-width: 768px) {
    .responsive-touch-target {
        min-height: 52px;
        min-width: 52px;
    }
}

/* =================================================================
   HOMEPAGE SPECIFIC RESPONSIVE COMPONENTS
   ================================================================= */

/* Hero Section */
.responsive-hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .responsive-hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (min-width: 768px) {
    .responsive-hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media (min-width: 1024px) {
    .responsive-hero {
        padding-top: 5rem;
        padding-bottom: 5rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media (min-width: 1280px) {
    .responsive-hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.responsive-prose {
    color: var(--tw-prose-body);
    max-width: 65ch;
}

.responsive-prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.responsive-prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-lead);
    font-size: 1.25em;
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
}

.responsive-prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-links);
    text-decoration: underline;
    font-weight: 500;
}

.responsive-prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-bold);
    font-weight: 600;
}

.responsive-prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}

.responsive-prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}

.responsive-prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}

.responsive-prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
}

.responsive-prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-alpha;
}

.responsive-prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-alpha;
}

.responsive-prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-alpha;
}

.responsive-prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-alpha;
}

.responsive-prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-roman;
}

.responsive-prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-roman;
}

.responsive-prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-roman;
}

.responsive-prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-roman;
}

.responsive-prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: decimal;
}

.responsive-prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
}

.responsive-prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
    font-weight: 400;
    color: var(--tw-prose-counters);
}

.responsive-prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
    color: var(--tw-prose-bullets);
}

.responsive-prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.25em;
}

.responsive-prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-color: var(--tw-prose-hr);
    border-top-width: 1px;
    margin-top: 3em;
    margin-bottom: 3em;
}

.responsive-prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 500;
    font-style: italic;
    color: var(--tw-prose-quotes);
    border-inline-start-width: 0.25rem;
    border-inline-start-color: var(--tw-prose-quote-borders);
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-inline-start: 1em;
}

.responsive-prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: open-quote;
}

.responsive-prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: close-quote;
}

.responsive-prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
}

.responsive-prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 900;
    color: inherit;
}

.responsive-prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
}

.responsive-prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 800;
    color: inherit;
}

.responsive-prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;
}

.responsive-prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 700;
    color: inherit;
}

.responsive-prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
}

.responsive-prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 700;
    color: inherit;
}

.responsive-prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
}

.responsive-prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    display: block;
    margin-top: 2em;
    margin-bottom: 2em;
}

.responsive-prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
}

.responsive-prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 500;
    font-family: inherit;
    color: var(--tw-prose-kbd);
    box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
    font-size: 0.875em;
    border-radius: 0.3125rem;
    padding-top: 0.1875em;
    padding-inline-end: 0.375em;
    padding-bottom: 0.1875em;
    padding-inline-start: 0.375em;
}

.responsive-prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-code);
    font-weight: 600;
    font-size: 0.875em;
}

.responsive-prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: "`";
}

.responsive-prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: "`";
}

.responsive-prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}

.responsive-prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}

.responsive-prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.875em;
}

.responsive-prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.9em;
}

.responsive-prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}

.responsive-prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}

.responsive-prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
}

.responsive-prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-pre-code);
    background-color: var(--tw-prose-pre-bg);
    overflow-x: auto;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-inline-end: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-inline-start: 1.1428571em;
}

.responsive-prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}

.responsive-prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: none;
}

.responsive-prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: none;
}

.responsive-prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    width: 100%;
    table-layout: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;
}

.responsive-prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-th-borders);
}

.responsive-prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    vertical-align: bottom;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
}

.responsive-prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-td-borders);
}

.responsive-prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 0;
}

.responsive-prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    vertical-align: baseline;
}

.responsive-prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-top-width: 1px;
    border-top-color: var(--tw-prose-th-borders);
}

.responsive-prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    vertical-align: top;
}

.responsive-prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    text-align: start;
}

.responsive-prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
}

.responsive-prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-captions);
    font-size: 0.875em;
    line-height: 1.4285714;
    margin-top: 0.8571429em;
}

.responsive-prose {
    --tw-prose-body: #374151;
    --tw-prose-headings: #111827;
    --tw-prose-lead: #4b5563;
    --tw-prose-links: #111827;
    --tw-prose-bold: #111827;
    --tw-prose-counters: #6b7280;
    --tw-prose-bullets: #d1d5db;
    --tw-prose-hr: #e5e7eb;
    --tw-prose-quotes: #111827;
    --tw-prose-quote-borders: #e5e7eb;
    --tw-prose-captions: #6b7280;
    --tw-prose-kbd: #111827;
    --tw-prose-kbd-shadows: 17 24 39;
    --tw-prose-code: #111827;
    --tw-prose-pre-code: #e5e7eb;
    --tw-prose-pre-bg: #1f2937;
    --tw-prose-th-borders: #d1d5db;
    --tw-prose-td-borders: #e5e7eb;
    --tw-prose-invert-body: #d1d5db;
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: #9ca3af;
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: #9ca3af;
    --tw-prose-invert-bullets: #4b5563;
    --tw-prose-invert-hr: #374151;
    --tw-prose-invert-quotes: #f3f4f6;
    --tw-prose-invert-quote-borders: #374151;
    --tw-prose-invert-captions: #9ca3af;
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: 255 255 255;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: #d1d5db;
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: #4b5563;
    --tw-prose-invert-td-borders: #374151;
    font-size: 1rem;
    line-height: 1.75;
}

.responsive-prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
}

.responsive-prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.responsive-prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.375em;
}

.responsive-prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.375em;
}

.responsive-prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}

.responsive-prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
}

.responsive-prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.25em;
}

.responsive-prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
}

.responsive-prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.25em;
}

.responsive-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}

.responsive-prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.responsive-prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5em;
    padding-inline-start: 1.625em;
}

.responsive-prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
}

.responsive-prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
}

.responsive-prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-top: 0.5714286em;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
}

.responsive-prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
}

.responsive-prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
}

.responsive-prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
}

.responsive-prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;
}

.responsive-prose {
    font-size: 0.875rem;
    line-height: 1.7142857;
}

.responsive-prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
}

.responsive-prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.2857143em;
    line-height: 1.5555556;
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;
}

.responsive-prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
    padding-inline-start: 1.1111111em;
}

.responsive-prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 2.1428571em;
    margin-top: 0;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.responsive-prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.4285714em;
    margin-top: 1.6em;
    margin-bottom: 0.8em;
    line-height: 1.4;
}

.responsive-prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.2857143em;
    margin-top: 1.5555556em;
    margin-bottom: 0.4444444em;
    line-height: 1.5555556;
}

.responsive-prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.4285714em;
    margin-bottom: 0.5714286em;
    line-height: 1.4285714;
}

.responsive-prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
}

.responsive-prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
}

.responsive-prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
}

.responsive-prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
}

.responsive-prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8571429em;
    border-radius: 0.3125rem;
    padding-top: 0.1428571em;
    padding-inline-end: 0.3571429em;
    padding-bottom: 0.1428571em;
    padding-inline-start: 0.3571429em;
}

.responsive-prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8571429em;
}

.responsive-prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.9em;
}

.responsive-prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
}

.responsive-prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8571429em;
    line-height: 1.6666667;
    margin-top: 1.6666667em;
    margin-bottom: 1.6666667em;
    border-radius: 0.25rem;
    padding-top: 0.6666667em;
    padding-inline-end: 1em;
    padding-bottom: 0.6666667em;
    padding-inline-start: 1em;
}

.responsive-prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
    padding-inline-start: 1.5714286em;
}

.responsive-prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
    padding-inline-start: 1.5714286em;
}

.responsive-prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.2857143em;
    margin-bottom: 0.2857143em;
}

.responsive-prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.4285714em;
}

.responsive-prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.4285714em;
}

.responsive-prose :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5714286em;
    margin-bottom: 0.5714286em;
}

.responsive-prose :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.1428571em;
}

.responsive-prose :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.1428571em;
}

.responsive-prose :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.1428571em;
}

.responsive-prose :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.1428571em;
}

.responsive-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5714286em;
    margin-bottom: 0.5714286em;
}

.responsive-prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
}

.responsive-prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.1428571em;
}

.responsive-prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.2857143em;
    padding-inline-start: 1.5714286em;
}

.responsive-prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2.8571429em;
    margin-bottom: 2.8571429em;
}

.responsive-prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8571429em;
    line-height: 1.5;
}

.responsive-prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 1em;
    padding-bottom: 0.6666667em;
    padding-inline-start: 1em;
}

.responsive-prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
}

.responsive-prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
}

.responsive-prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-top: 0.6666667em;
    padding-inline-end: 1em;
    padding-bottom: 0.6666667em;
    padding-inline-start: 1em;
}

.responsive-prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
}

.responsive-prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
}

.responsive-prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
}

.responsive-prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
}

.responsive-prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8571429em;
    line-height: 1.3333333;
    margin-top: 0.6666667em;
}

.responsive-prose :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
}

.responsive-prose :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;
}

.responsive-prose {
    --tw-prose-body: #334155;
    --tw-prose-headings: #0f172a;
    --tw-prose-lead: #475569;
    --tw-prose-links: #0f172a;
    --tw-prose-bold: #0f172a;
    --tw-prose-counters: #64748b;
    --tw-prose-bullets: #cbd5e1;
    --tw-prose-hr: #e2e8f0;
    --tw-prose-quotes: #0f172a;
    --tw-prose-quote-borders: #e2e8f0;
    --tw-prose-captions: #64748b;
    --tw-prose-kbd: #0f172a;
    --tw-prose-kbd-shadows: 15 23 42;
    --tw-prose-code: #0f172a;
    --tw-prose-pre-code: #e2e8f0;
    --tw-prose-pre-bg: #1e293b;
    --tw-prose-th-borders: #cbd5e1;
    --tw-prose-td-borders: #e2e8f0;
    --tw-prose-invert-body: #cbd5e1;
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: #94a3b8;
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: #94a3b8;
    --tw-prose-invert-bullets: #475569;
    --tw-prose-invert-hr: #334155;
    --tw-prose-invert-quotes: #f1f5f9;
    --tw-prose-invert-quote-borders: #334155;
    --tw-prose-invert-captions: #94a3b8;
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: 255 255 255;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: #cbd5e1;
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: #475569;
    --tw-prose-invert-td-borders: #334155;
    max-width: none;
}

@media (min-width: 640px) {
    .responsive-prose {
        font-size: 1rem;
        line-height: 1.75;
    }
    .responsive-prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.25em;
        margin-bottom: 1.25em;
    }
    .responsive-prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.25em;
        line-height: 1.6;
        margin-top: 1.2em;
        margin-bottom: 1.2em;
    }
    .responsive-prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.6em;
        margin-bottom: 1.6em;
        padding-inline-start: 1em;
    }
    .responsive-prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 2.25em;
        margin-top: 0;
        margin-bottom: 0.8888889em;
        line-height: 1.1111111;
    }
    .responsive-prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.5em;
        margin-top: 2em;
        margin-bottom: 1em;
        line-height: 1.3333333;
    }
    .responsive-prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.25em;
        margin-top: 1.6em;
        margin-bottom: 0.6em;
        line-height: 1.6;
    }
    .responsive-prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.5em;
        margin-bottom: 0.5em;
        line-height: 1.5;
    }
    .responsive-prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .responsive-prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .responsive-prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
        margin-bottom: 0;
    }
    .responsive-prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .responsive-prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.875em;
        border-radius: 0.3125rem;
        padding-top: 0.1875em;
        padding-inline-end: 0.375em;
        padding-bottom: 0.1875em;
        padding-inline-start: 0.375em;
    }
    .responsive-prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.875em;
    }
    .responsive-prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.875em;
    }
    .responsive-prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.9em;
    }
    .responsive-prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.875em;
        line-height: 1.7142857;
        margin-top: 1.7142857em;
        margin-bottom: 1.7142857em;
        border-radius: 0.375rem;
        padding-top: 0.8571429em;
        padding-inline-end: 1.1428571em;
        padding-bottom: 0.8571429em;
        padding-inline-start: 1.1428571em;
    }
    .responsive-prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.25em;
        margin-bottom: 1.25em;
        padding-inline-start: 1.625em;
    }
    .responsive-prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.25em;
        margin-bottom: 1.25em;
        padding-inline-start: 1.625em;
    }
    .responsive-prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    .responsive-prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0.375em;
    }
    .responsive-prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0.375em;
    }
    .responsive-prose :where(.sm\:prose-base > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.75em;
        margin-bottom: 0.75em;
    }
    .responsive-prose :where(.sm\:prose-base > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.25em;
    }
    .responsive-prose :where(.sm\:prose-base > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 1.25em;
    }
    .responsive-prose :where(.sm\:prose-base > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.25em;
    }
    .responsive-prose :where(.sm\:prose-base > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 1.25em;
    }
    .responsive-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.75em;
        margin-bottom: 0.75em;
    }
    .responsive-prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.25em;
        margin-bottom: 1.25em;
    }
    .responsive-prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.25em;
    }
    .responsive-prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.5em;
        padding-inline-start: 1.625em;
    }
    .responsive-prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 3em;
        margin-bottom: 3em;
    }
    .responsive-prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.875em;
        line-height: 1.7142857;
    }
    .responsive-prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0.5714286em;
        padding-bottom: 0.5714286em;
        padding-inline-start: 0.5714286em;
    }
    .responsive-prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0;
    }
    .responsive-prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0;
    }
    .responsive-prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-top: 0.5714286em;
        padding-inline-end: 0.5714286em;
        padding-bottom: 0.5714286em;
        padding-inline-start: 0.5714286em;
    }
    .responsive-prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0;
    }
    .responsive-prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0;
    }
    .responsive-prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .responsive-prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
        margin-bottom: 0;
    }
    .responsive-prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.875em;
        line-height: 1.4285714;
        margin-top: 0.8571429em;
    }
    .responsive-prose :where(.sm\:prose-base > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(.sm\:prose-base > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .responsive-prose {
        font-size: 1.125rem;
        line-height: 1.7777778;
    }
    .responsive-prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.3333333em;
        margin-bottom: 1.3333333em;
    }
    .responsive-prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.2222222em;
        line-height: 1.4545455;
        margin-top: 1.0909091em;
        margin-bottom: 1.0909091em;
    }
    .responsive-prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.6666667em;
        margin-bottom: 1.6666667em;
        padding-inline-start: 1em;
    }
    .responsive-prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 2.6666667em;
        margin-top: 0;
        margin-bottom: 0.8333333em;
        line-height: 1;
    }
    .responsive-prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.6666667em;
        margin-top: 1.8666667em;
        margin-bottom: 1.0666667em;
        line-height: 1.3333333;
    }
    .responsive-prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.3333333em;
        margin-top: 1.6666667em;
        margin-bottom: 0.6666667em;
        line-height: 1.5;
    }
    .responsive-prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.7777778em;
        margin-bottom: 0.4444444em;
        line-height: 1.5555556;
    }
    .responsive-prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.7777778em;
        margin-bottom: 1.7777778em;
    }
    .responsive-prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.7777778em;
        margin-bottom: 1.7777778em;
    }
    .responsive-prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
        margin-bottom: 0;
    }
    .responsive-prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.7777778em;
        margin-bottom: 1.7777778em;
    }
    .responsive-prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.8888889em;
        border-radius: 0.3125rem;
        padding-top: 0.2222222em;
        padding-inline-end: 0.4444444em;
        padding-bottom: 0.2222222em;
        padding-inline-start: 0.4444444em;
    }
    .responsive-prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.8888889em;
    }
    .responsive-prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.8666667em;
    }
    .responsive-prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.875em;
    }
    .responsive-prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.8888889em;
        line-height: 1.75;
        margin-top: 2em;
        margin-bottom: 2em;
        border-radius: 0.375rem;
        padding-top: 1em;
        padding-inline-end: 1.5em;
        padding-bottom: 1em;
        padding-inline-start: 1.5em;
    }
    .responsive-prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.3333333em;
        margin-bottom: 1.3333333em;
        padding-inline-start: 1.5555556em;
    }
    .responsive-prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.3333333em;
        margin-bottom: 1.3333333em;
        padding-inline-start: 1.5555556em;
    }
    .responsive-prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.6666667em;
        margin-bottom: 0.6666667em;
    }
    .responsive-prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0.4444444em;
    }
    .responsive-prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0.4444444em;
    }
    .responsive-prose :where(.md\:prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.8888889em;
        margin-bottom: 0.8888889em;
    }
    .responsive-prose :where(.md\:prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.3333333em;
    }
    .responsive-prose :where(.md\:prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 1.3333333em;
    }
    .responsive-prose :where(.md\:prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.3333333em;
    }
    .responsive-prose :where(.md\:prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 1.3333333em;
    }
    .responsive-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.8888889em;
        margin-bottom: 0.8888889em;
    }
    .responsive-prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.3333333em;
        margin-bottom: 1.3333333em;
    }
    .responsive-prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.3333333em;
    }
    .responsive-prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.6666667em;
        padding-inline-start: 1.5555556em;
    }
    .responsive-prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 3.1111111em;
        margin-bottom: 3.1111111em;
    }
    .responsive-prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.8888889em;
        line-height: 1.5;
    }
    .responsive-prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0.75em;
        padding-bottom: 0.75em;
        padding-inline-start: 0.75em;
    }
    .responsive-prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0;
    }
    .responsive-prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0;
    }
    .responsive-prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-top: 0.75em;
        padding-inline-end: 0.75em;
        padding-bottom: 0.75em;
        padding-inline-start: 0.75em;
    }
    .responsive-prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0;
    }
    .responsive-prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0;
    }
    .responsive-prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.7777778em;
        margin-bottom: 1.7777778em;
    }
    .responsive-prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
        margin-bottom: 0;
    }
    .responsive-prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.8888889em;
        line-height: 1.5;
        margin-top: 1em;
    }
    .responsive-prose :where(.md\:prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(.md\:prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .responsive-prose {
        font-size: 1.25rem;
        line-height: 1.8;
    }
    .responsive-prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.2em;
        margin-bottom: 1.2em;
    }
    .responsive-prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.2em;
        line-height: 1.5;
        margin-top: 1em;
        margin-bottom: 1em;
    }
    .responsive-prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.6em;
        margin-bottom: 1.6em;
        padding-inline-start: 1.0666667em;
    }
    .responsive-prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 2.8em;
        margin-top: 0;
        margin-bottom: 0.8571429em;
        line-height: 1;
    }
    .responsive-prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.8em;
        margin-top: 1.5555556em;
        margin-bottom: 0.8888889em;
        line-height: 1.1111111;
    }
    .responsive-prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 1.5em;
        margin-top: 1.6em;
        margin-bottom: 0.6666667em;
        line-height: 1.3333333;
    }
    .responsive-prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.8em;
        margin-bottom: 0.6em;
        line-height: 1.6;
    }
    .responsive-prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .responsive-prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .responsive-prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
        margin-bottom: 0;
    }
    .responsive-prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .responsive-prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.9em;
        border-radius: 0.3125rem;
        padding-top: 0.25em;
        padding-inline-end: 0.4em;
        padding-bottom: 0.25em;
        padding-inline-start: 0.4em;
    }
    .responsive-prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.9em;
    }
    .responsive-prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.8611111em;
    }
    .responsive-prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.9em;
    }
    .responsive-prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.9em;
        line-height: 1.7777778;
        margin-top: 2em;
        margin-bottom: 2em;
        border-radius: 0.5rem;
        padding-top: 1.1111111em;
        padding-inline-end: 1.3333333em;
        padding-bottom: 1.1111111em;
        padding-inline-start: 1.3333333em;
    }
    .responsive-prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.2em;
        margin-bottom: 1.2em;
        padding-inline-start: 1.6em;
    }
    .responsive-prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.2em;
        margin-bottom: 1.2em;
        padding-inline-start: 1.6em;
    }
    .responsive-prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.6em;
        margin-bottom: 0.6em;
    }
    .responsive-prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0.4em;
    }
    .responsive-prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0.4em;
    }
    .responsive-prose :where(.lg\:prose-xl > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.8em;
        margin-bottom: 0.8em;
    }
    .responsive-prose :where(.lg\:prose-xl > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.2em;
    }
    .responsive-prose :where(.lg\:prose-xl > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 1.2em;
    }
    .responsive-prose :where(.lg\:prose-xl > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.2em;
    }
    .responsive-prose :where(.lg\:prose-xl > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 1.2em;
    }
    .responsive-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.8em;
        margin-bottom: 0.8em;
    }
    .responsive-prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.2em;
        margin-bottom: 1.2em;
    }
    .responsive-prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 1.2em;
    }
    .responsive-prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0.6em;
        padding-inline-start: 1.6em;
    }
    .responsive-prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2.8em;
        margin-bottom: 2.8em;
    }
    .responsive-prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.9em;
        line-height: 1.5555556;
    }
    .responsive-prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0.6666667em;
        padding-bottom: 0.8888889em;
        padding-inline-start: 0.6666667em;
    }
    .responsive-prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0;
    }
    .responsive-prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0;
    }
    .responsive-prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-top: 0.8888889em;
        padding-inline-end: 0.6666667em;
        padding-bottom: 0.8888889em;
        padding-inline-start: 0.6666667em;
    }
    .responsive-prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-start: 0;
    }
    .responsive-prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        padding-inline-end: 0;
    }
    .responsive-prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .responsive-prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
        margin-bottom: 0;
    }
    .responsive-prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        font-size: 0.9em;
        line-height: 1.5555556;
        margin-top: 1em;
    }
    .responsive-prose :where(.lg\:prose-xl > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-top: 0;
    }
    .responsive-prose :where(.lg\:prose-xl > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
        margin-bottom: 0;
    }
}

/* Package Cards System */
.responsive-package-card {
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 1rem;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.responsive-package-card:hover {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 640px) {
    .responsive-package-card {
        border-radius: 1rem;
        padding: 1.5rem;
        --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}
@media (min-width: 768px) {
    .responsive-package-card {
        border-radius: 1.5rem;
        padding: 2rem;
        --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}

.responsive-package-header {
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .responsive-package-header {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-package-header {
        margin-bottom: 2rem;
    }
}

.responsive-package-title {
    margin-bottom: 0.5rem;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-package-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (min-width: 768px) {
    .responsive-package-title {
        font-size: 28px;
        line-height: 1.4;
    }
}

.responsive-package-description {
    display: flex;
    height: 3rem;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.6;
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-package-description {
        height: 4rem;
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-package-description {
        height: 5rem;
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-package-price {
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .responsive-package-price {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-package-price {
        margin-bottom: 2rem;
    }
}

.responsive-price-amount {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 800;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-price-amount {
        font-size: 32px;
        line-height: 1.3;
    }
}

@media (min-width: 768px) {
    .responsive-price-amount {
        font-size: 36px;
        line-height: 1.2;
    }
}

.responsive-price-cycle {
    margin-right: 0.5rem;
    font-size: 14px;
    line-height: 1.6;
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-price-cycle {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-price-cycle {
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-feature-list {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.responsive-feature-list > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.responsive-feature-list {
    text-align: right;
}

@media (min-width: 640px) {
    .responsive-feature-list {
        margin-bottom: 2rem;
    }
    .responsive-feature-list > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }
}

@media (min-width: 768px) {
    .responsive-feature-list {
        margin-bottom: 2.5rem;
    }
    .responsive-feature-list > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
    }
}

.responsive-feature-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .responsive-feature-item {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-feature-item {
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-feature-icon {
    margin-left: 0.5rem;
    height: 1rem;
    width: 1rem;
    flex-shrink: 0;
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-feature-icon {
        margin-left: 0.75rem;
        height: 1.25rem;
        width: 1.25rem;
    }
}

@media (min-width: 768px) {
    .responsive-feature-icon {
        margin-left: 1rem;
        height: 1.5rem;
        width: 1.5rem;
    }
}

.responsive-button-group > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

@media (min-width: 640px) {
    .responsive-button-group > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
    }
}

@media (min-width: 768px) {
    .responsive-button-group > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }
}

/* Stats Section */
.responsive-stats-section {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 640px) {
    .responsive-stats-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
@media (min-width: 768px) {
    .responsive-stats-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.responsive-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 640px) {
    .responsive-stats-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }
}

.responsive-stat-card {
    text-align: center;
}

.responsive-stat-number {
    margin-bottom: 0.5rem;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-stat-number {
        font-size: 28px;
        line-height: 1.4;
    }
}

@media (min-width: 768px) {
    .responsive-stat-number {
        font-size: 32px;
        line-height: 1.3;
    }
}

@media (min-width: 1024px) {
    .responsive-stat-number {
        font-size: 36px;
        line-height: 1.2;
    }
}

.responsive-stat-label {
    font-size: 14px;
    line-height: 1.6;
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-stat-label {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-stat-label {
        font-size: 18px;
        line-height: 1.6;
    }
}

/* Features Section */
.responsive-features-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 640px) {
    .responsive-features-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
@media (min-width: 768px) {
    .responsive-features-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.responsive-features-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .responsive-features-grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .responsive-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .responsive-features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.responsive-feature-card {
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 1rem;
    text-align: center;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.responsive-feature-card:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 640px) {
    .responsive-feature-card {
        border-radius: 1rem;
        padding: 1.5rem;
        --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}

@media (min-width: 768px) {
    .responsive-feature-card {
        border-radius: 1.5rem;
        padding: 2rem;
        --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}

.responsive-feature-icon-container {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
}

@media (min-width: 640px) {
    .responsive-feature-icon-container {
        margin-bottom: 1rem;
        height: 3.5rem;
        width: 3.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-feature-icon-container {
        margin-bottom: 1.5rem;
        height: 4rem;
        width: 4rem;
    }
}

.responsive-feature-icon-svg {
    height: 1.5rem;
    width: 1.5rem;
}

@media (min-width: 640px) {
    .responsive-feature-icon-svg {
        height: 1.75rem;
        width: 1.75rem;
    }
}

@media (min-width: 768px) {
    .responsive-feature-icon-svg {
        height: 2rem;
        width: 2rem;
    }
}

.responsive-feature-title {
    margin-bottom: 0.5rem;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-feature-title {
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-feature-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

.responsive-feature-description {
    font-size: 14px;
    line-height: 1.6;
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-feature-description {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-feature-description {
        font-size: 18px;
        line-height: 1.6;
    }
}

/* CTA Section */
.responsive-cta-section {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #4338ca var(--tw-gradient-to-position);
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 640px) {
    .responsive-cta-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
@media (min-width: 768px) {
    .responsive-cta-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.responsive-cta-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .responsive-cta-container {
        max-width: 640px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media (min-width: 768px) {
    .responsive-cta-container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .responsive-cta-container {
        max-width: 1024px;
        padding-right: 4rem;
        padding-left: 4rem;
    }
}

@media (min-width: 1280px) {
    .responsive-cta-container {
        max-width: 1280px;
        padding-right: 5rem;
        padding-left: 5rem;
    }
}

@media (min-width: 1440px) {
    .responsive-cta-container {
        max-width: 1440px;
        padding-right: 6rem;
        padding-left: 6rem;
    }
}

.responsive-cta-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

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

@media (min-width: 768px) {
    .responsive-cta-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.responsive-cta-title {
    margin-bottom: 0.75rem;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-cta-title {
        margin-bottom: 1rem;
        font-size: 28px;
        line-height: 1.4;
    }
}

@media (min-width: 768px) {
    .responsive-cta-title {
        margin-bottom: 1.5rem;
        font-size: 32px;
        line-height: 1.3;
    }
}

.responsive-cta-description {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    font-size: 18px;
    line-height: 1.6;
    --tw-text-opacity: 1;
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-cta-description {
        margin-bottom: 2rem;
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-cta-description {
        margin-bottom: 2.5rem;
        font-size: 24px;
        line-height: 1.5;
    }
}

.responsive-cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .responsive-cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .responsive-cta-buttons {
        gap: 1.5rem;
    }
}

.responsive-cta-btn-primary {
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.responsive-cta-btn-primary:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-cta-btn-primary {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-cta-btn-primary {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        font-size: 18px;
        line-height: 1.6;
    }
}

.responsive-cta-btn-secondary {
    border-radius: 0.5rem;
    border-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.responsive-cta-btn-secondary:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
    .responsive-cta-btn-secondary {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-cta-btn-secondary {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        font-size: 18px;
        line-height: 1.6;
    }
}

/* =================================================================
   PERFORMANCE OPTIMIZATIONS
   ================================================================= */

/* GPU Acceleration for Animations */
.responsive-accelerated {
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    will-change: transform;
}

/* Optimize Images */
.responsive-img-optimized {
    height: auto;
    width: 100%;
    border-radius: 0.125rem;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (min-width: 640px) {
    .responsive-img-optimized {
        border-radius: 0.25rem;
    }
}
@media (min-width: 768px) {
    .responsive-img-optimized {
        border-radius: 0.5rem;
    }
}
.responsive-img-optimized {

    loading: lazy;
}

/* =================================================================
   DEVICE-SPECIFIC MOBILE BREAKPOINTS 
   Enhanced for popular mobile devices (2024/2025)
   ================================================================= */

/* Galaxy S24 (360px) - Ultra compact */
@media (width <= 360px) {
    .responsive-text-compact {
        font-size: 14px;
        line-height: 1.6;
        line-height: 1.25rem;
    }
    .responsive-h1-compact {
        font-size: 24px;
        line-height: 1.5;
        line-height: 2rem;
    }
    .responsive-h2-compact {
        font-size: 20px;
        line-height: 1.6;
        line-height: 1.75rem;
    }
    .responsive-p-compact {
        padding: 0.75rem;
    }
    .responsive-container-compact {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Galaxy S24+ / iPhone 14 (384px-390px) - Intermediate */
@media (width >= 361px) and (width <= 390px) {
    .responsive-text-intermediate {
        font-size: 16px;
        line-height: 1.6;
        line-height: 1.5rem;
    }
    .responsive-h1-intermediate {
        font-size: 28px;
        line-height: 1.4;
        line-height: 2.25rem;
    }
    .responsive-h2-intermediate {
        font-size: 24px;
        line-height: 1.5;
        line-height: 2rem;
    }
    .responsive-p-intermediate {
        padding: 1rem;
    }
    .responsive-container-intermediate {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* iPhone 15 Pro Max (430px) - Large mobile */
@media (width >= 391px) and (width <= 430px) {
    .responsive-text-large-mobile {
        font-size: 18px;
        line-height: 1.6;
        line-height: 1.75rem;
    }
    .responsive-h1-large-mobile {
        font-size: 32px;
        line-height: 1.3;
        line-height: 2.5rem;
    }
    .responsive-h2-large-mobile {
        font-size: 28px;
        line-height: 1.4;
        line-height: 2.25rem;
    }
    .responsive-p-large-mobile {
        padding: 1.25rem;
    }
    .responsive-container-large-mobile {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Safe Area Support for Modern Devices */
.responsive-safe-area {
    padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

/* Enhanced Safe Area Support */
.responsive-safe-area-top {
    padding-top: max(1rem, env(safe-area-inset-top));
}

.responsive-safe-area-bottom {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

/* iPhone Notch/Dynamic Island Support */
@supports (padding: max(0px)) {
    .responsive-safe-top {
        padding-top: max(1rem, env(safe-area-inset-top));
    }
    
    .responsive-navbar-safe {
        padding-top: max(0.5rem, env(safe-area-inset-top));
    }
    
    .responsive-footer-safe {
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    }
}

/* Enhanced Touch Targets for All Devices */
.responsive-touch-target {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Optimize for touch */
}

/* High DPI (Retina) Support */
@media (min-device-pixel-ratio: 2), (resolution >= 192dpi) {
    .responsive-image-hd {
        /* Use 2x images for high DPI displays */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .responsive-icon-hd {
        /* Optimize icons for retina displays */
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

@media (min-device-pixel-ratio: 3), (resolution >= 288dpi) {
    .responsive-image-3x {
        /* Use 3x images for very high DPI displays */
        image-rendering: pixelated;
    }
}

/* Mobile-Optimized Button Variants */
.responsive-btn-mobile {
    min-height: 48px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    border-radius: 0.5rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.responsive-btn-mobile-large {
    min-height: 56px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    border-radius: 1rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

/* Tablet Transition Improvements (768px breakpoint) */
@media (width >= 768px) {
    /* Smooth grid transitions */
    .responsive-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
    
    /* Typography scaling for tablet */
    .responsive-text-tablet {
        font-size: 20px;
        line-height: 1.6;
        line-height: 2rem;
    }
    
    .responsive-h1-tablet {
        font-size: 36px;
        line-height: 1.25;
    }
    
    /* Button scaling for tablet */
    .responsive-btn-tablet {
        min-height: 52px;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 18px;
        line-height: 1.6;
        font-weight: 600;
    }
    
    /* Container improvements for tablet */
    .responsive-container-tablet {
        max-width: 56rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}