/* Custom Styles for IONEX */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Common Header Styles */
header {
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.8), rgba(10, 10, 15, 0.6));
}

/* Hero Carousel Styles (for index.html) */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out;
}

/* Первый слайд видим сразу без перехода и моргания */
.hero-slide:first-child {
    opacity: 1;
    transition: none !important;
}

/* Активный слайд */
.hero-slide.active {
    opacity: 1;
}

/* Убираем transition для первого слайда даже с классом active */
.hero-slide:first-child.active {
    transition: none !important;
}

/* Анимация Ken Burns только после инициализации */
.hero-carousel.initialized .hero-slide.active {
    animation: kenburns 12s ease-in-out;
}

/* Но не для первого слайда при загрузке */
.hero-carousel:not(.initialized) .hero-slide:first-child.active {
    animation: none;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Content Animation - плавное появление всего блока */
.hero-content {
    animation: heroFadeIn 1.2s ease-out both;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Pulse Badge Animation */
.pulse-badge {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 128, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 128, 255, 0.5);
    }
}

/* Logo Image */
.logo-image {
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Logo styling - version with white background */
img[src*="VDkYEIbs"] {
    background: transparent !important;
    /* Remove white background using CSS blend mode */
    mix-blend-mode: multiply;
}

/* Alternative approach for header/footer on dark background */
header img[src*="VDkYEIbs"],
footer img[src*="VDkYEIbs"] {
    /* Screen mode works better for logos on dark backgrounds */
    mix-blend-mode: screen;
}

/* Add subtle glow effect on hover */
img[src*="VDkYEIbs"]:hover {
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.4));
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Button */
.glow-button {
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.glow-button:hover::before {
    left: 100%;
}

.glow-button:hover {
    box-shadow: 0 0 40px rgba(0, 128, 255, 0.6), 0 0 60px rgba(0, 212, 170, 0.4);
    transform: translateY(-2px);
}

/* Outline Button */
.outline-button {
    background: transparent;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#0A0A0F, #0A0A0F),
        linear-gradient(135deg, #0080FF, #00D4AA);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.outline-button:hover {
    background-image:
        linear-gradient(135deg, rgba(0, 128, 255, 0.1), rgba(0, 212, 170, 0.1)),
        linear-gradient(135deg, #0080FF, #00D4AA);
    box-shadow: 0 0 30px rgba(0, 128, 255, 0.3);
    transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
    background: rgba(21, 21, 29, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(0, 128, 255, 0.3);
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 128, 255, 0.3);
}

/* Floating Spheres Background */
.floating-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0080FF, transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00D4AA, transparent);
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.sphere-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #0080FF, transparent);
    bottom: 10%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Floating Image */
.floating-image {
    animation: floatingImage 6s infinite ease-in-out;
    position: relative;
}

.floating-image .glow-effect {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.2), rgba(0, 212, 170, 0.2));
    border-radius: 2rem;
    filter: blur(40px);
    z-index: -1;
}

@keyframes floatingImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Icon Gradient */
.icon-gradient {
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.3);
}

/* Category Card */
.category-card {
    background: rgba(21, 21, 29, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 128, 255, 0.3);
    border-color: rgba(0, 128, 255, 0.3);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.9), rgba(0, 212, 170, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

/* Project Card */
.project-card {
    background: rgba(21, 21, 29, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 128, 255, 0.3);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Timeline Steps */
.timeline-step {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.4);
    position: relative;
    z-index: 10;
}

/* Enhanced Timeline Steps */
.timeline-step-enhanced {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow:
        0 10px 30px rgba(0, 128, 255, 0.4),
        0 0 40px rgba(0, 212, 170, 0.3);
    position: relative;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step-enhanced:hover {
    transform: scale(1.1);
    box-shadow:
        0 15px 40px rgba(0, 128, 255, 0.6),
        0 0 60px rgba(0, 212, 170, 0.5);
}

.timeline-step-enhanced .step-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.3), transparent 70%);
    animation: stepGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes stepGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Calculator Styles */
.step-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1C1C26;
    border: 2px solid #1C1C26;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6B6B7B;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.5);
}

.step-indicator.completed {
    background: #00D4AA;
    border-color: transparent;
    color: white;
}

/* Option Card */
.option-card {
    background: rgba(21, 21, 29, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-card:hover {
    border-color: rgba(0, 128, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.3);
    transform: translateY(-4px);
}

.option-card.selected {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.2), rgba(0, 212, 170, 0.2));
    border-color: #0080FF;
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.5);
}

/* Range Slider */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #0080FF, #00D4AA);
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
    border: none;
}

/* Service Checkbox */
.service-checkbox {
    display: block;
    background: rgba(21, 21, 29, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-checkbox:hover {
    border-color: rgba(0, 128, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.2);
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.service-checkbox input[type="checkbox"]:checked + .service-content {
    border-left: 4px solid #0080FF;
    padding-left: 1rem;
}

.service-content {
    display: flex;
    justify-content: between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0A0B0;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 128, 255, 0.3);
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.floating-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 128, 255, 0.7);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 128, 255, 0.5);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 128, 255, 0.8), 0 0 60px rgba(0, 212, 170, 0.6);
    }
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: #6B6B7B;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    width: 30px;
    border-radius: 5px;
}

/* Target Audience Cards */
.audience-card {
    min-height: 320px;
    perspective: 1000px;
}

.audience-card .glass-card {
    background: rgba(21, 21, 29, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 107, 123, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

.audience-card:hover .glass-card {
    border-color: rgba(0, 128, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 128, 255, 0.2), 0 0 40px rgba(0, 212, 170, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .audience-card {
        min-height: 280px;
    }

    .audience-card .glass-card {
        padding: 1.5rem !important;
    }

    .audience-card h3 {
        font-size: 1.25rem !important;
    }
}

/* Range Slider Styles */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right,
        rgba(0, 128, 255, 0.8) 0%,
        rgba(0, 212, 170, 0.8) 100%
    );
    outline: none;
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-track {
    height: 8px;
    border-radius: 4px;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.4);
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0, 128, 255, 0.6);
}

.range-slider::-webkit-slider-thumb:active {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 128, 255, 0.8);
}

/* Firefox */
.range-slider::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right,
        rgba(0, 128, 255, 0.8) 0%,
        rgba(0, 212, 170, 0.8) 100%
    );
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.4);
    transition: all 0.3s ease;
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0, 128, 255, 0.6);
}

.range-slider::-moz-range-thumb:active {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 128, 255, 0.8);
}

/* Filter Radio & Checkbox Styles */
.filter-radio,
.filter-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #6B6B7B;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-radio {
    border-radius: 50%;
}

.filter-checkbox {
    border-radius: 4px;
}

.filter-radio.active,
.filter-checkbox.active {
    border-color: #0080FF;
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.4);
}

.filter-radio.active::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    margin: 4px auto;
}

.filter-checkbox.active::after {
    content: '✓';
    display: block;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 16px;
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: rgba(21, 21, 29, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 107, 123, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 42rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(21, 21, 29, 0.5);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0090FF, #00E4BA);
}

/* Outline button for modal */
.outline-button {
    background: transparent;
    border: 2px solid rgba(107, 107, 123, 0.5);
    transition: all 0.3s ease;
}

.outline-button:hover {
    border-color: #0080FF;
    background: rgba(0, 128, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.2);
}

/* Hero Zoom Animation */
@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Journey Map Station Animation */
@keyframes stationFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.journey-station {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-station:hover {
    transform: translateY(-5px) !important;
    z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-sphere {
        filter: blur(60px);
        opacity: 0.2;
    }

    .sphere-1 {
        width: 250px;
        height: 250px;
    }

    .sphere-2 {
        width: 300px;
        height: 300px;
    }

    .sphere-3 {
        width: 200px;
        height: 200px;
    }

    .floating-call-button {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
}

/* Alpine.js Transitions */
[x-cloak] {
    display: none !important;
}

/* Collapse Animation */
[x-collapse] {
    transition: height 0.3s ease;
}

/* Particles Canvas */
#particlesCanvas {
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A0A0F;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0080FF, #00D4AA);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0099FF, #00F0C0);
}

/* Selection */
::selection {
    background: rgba(0, 128, 255, 0.3);
    color: white;
}

/* Focus Styles */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(0, 128, 255, 0.5);
    outline-offset: 2px;
}

/* Filter Radio Button */
.filter-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #6B6B7B;
    position: relative;
    transition: all 0.3s ease;
}

.filter-radio.active {
    border-color: #0080FF;
    background: linear-gradient(135deg, #0080FF, #00D4AA);
}

.filter-radio.active::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Filter Checkbox */
.filter-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #6B6B7B;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-checkbox.active {
    border-color: #0080FF;
    background: linear-gradient(135deg, #0080FF, #00D4AA);
}

.filter-checkbox.active::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Product Card */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: rgba(0, 128, 255, 0.5);
}

/* Badge Styles */
.badge-new {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #0080FF, #00D4AA);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.4);
}

.badge-discount {
    padding: 0.25rem 0.75rem;
    background: #FF3B30;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
}
.faq-p {
    margin-top: 10px;
}
