/* Custom styles for the Refotoback theme header */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(135deg, #1c82c5db 0%, #436582 50%, #4f5b6d 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header-logo {
    flex: 1;
}

.header-logo img {
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.header-logo a:hover img {
    opacity: 0.8;
}

.premium-image-wrapper {
    position: relative;
    padding: 10px;
    /* Space for the animated border */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    overflow: hidden;
    /* Clips the rotating gradient */
    z-index: 1;
}

/* The Rotating Animated Border */
.premium-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            #4facfe,
            #00f2fe,
            transparent 30%);
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

/* Inner cover to create the border look */
.premium-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 4px;
    /* Border thickness */
    background: #ffffff;
    border-radius: 37px;
    z-index: -1;
}

/* ==========================================================================
   Unique Counter Section
   ========================================================================== */
/* ==========================================================================
   Unique Feature Boxes Section (White Background)
   ========================================================================== */
.about-unique-feature-boxes {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.parallax-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 2px, transparent 2px);
    background-size: 50px 50px;
    z-index: 1;
    opacity: 0.5;
}

.features-display-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.feature-box-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box-item::before,
.feature-box-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid #4facfe;
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

/* Top Left Corner */
.feature-box-item::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

/* Bottom Right Corner */
.feature-box-item::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

.feature-box-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #fdfdfd;
}

/* Expanding Corner Animation on Hover */
.feature-box-item:hover::before,
.feature-box-item:hover::after {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 22px;
    border-color: #2f83bb;
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4facfe;
    margin-bottom: 30px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.feature-box-item:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0b1830;
    letter-spacing: -0.5px;
}

.feature-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1200px) {
    .features-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-display-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .counter-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 576px) {
    .counter-display-grid {
        grid-template-columns: 1fr;
    }

    .stat-count {
        font-size: 2.8rem;
    }
}

.premium-image-wrapper img {
    position: relative;
    z-index: 10;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.premium-image-wrapper:hover img {
    transform: scale(1.02);
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header-menu {
    flex: 2;
}

.header-menu ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.header-menu a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-menu a:hover,
.header-menu li.active a,
.header-menu li.current-menu-item a {
    color: #ffea00;
}

.footer-nav li.active a {
    color: #ffea00 !important;
}

.header-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-gallery {
    background: transparent;
    color: #fff;
    padding: 0.7rem 1.4rem;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 1px solid rgb(255 255 255);
}

.btn-gallery:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Mission, Vision, & Goals Section
   ========================================================================== */
.mission-vision-goals-section {
    padding: 140px 0;
    background: #0b1830;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.section-glow-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.mvg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.mvg-card {
    position: relative;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    z-index: 1;
    border: 2px dashed transparent;
    background-clip: padding-box;
}

/* Animated Dashed Border Implementation */
.mvg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: repeating-linear-gradient(-45deg,
            #4facfe 0%, #4facfe 10px,
            transparent 10px, transparent 20px);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    animation: marchingAnts 1s linear infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mvg-card.highlight::before {
    opacity: 1;
}

.mvg-card:hover::before {
    opacity: 1;
}

@keyframes marchingAnts {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 40px;
    }
}

.mvg-card.highlight {
    border: none;
    box-shadow: 0 20px 45px rgba(26, 132, 201, 0.15);
}

.mvg-icon-plate {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 auto 35px;
}

.mvg-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #0b1830;
}

.mvg-card p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .mvg-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mvg-card.highlight {
        transform: scale(1);
    }

    .mvg-card.highlight:hover {
        transform: translateY(-15px) scale(1);
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
    height: 450px;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&q=80&w=2000') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 24, 48, 0.9), rgba(11, 24, 48, 0.7));
}

.contact-hero .content-wrap {
    position: relative;
    z-index: 10;
}

.contact-hero .page-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-hero .page-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.contact-form-card .card-header {
    margin-bottom: 40px;
}

.contact-form-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 15px;
}

.contact-form-card p {
    color: #64748b;
    font-size: 1.1rem;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.input-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0b1830;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input,
.input-group textarea {
    padding: 18px 25px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.input-group input:focus,
.input-group textarea:focus {
    background: #fff;
    border-color: #4facfe;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.1);
    outline: none;
}

.form-submit-btn {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background: #4facfe;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.form-submit-btn:hover {
    background: #0b1830;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 24, 48, 0.2);
}

/* Sidebar Styles */
.info-details-box {
    background: #0b1830;
    padding: 50px;
    border-radius: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4facfe;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.info-text p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.stylized-map-wrap {
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.stylized-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.stylized-map-wrap:hover img {
    filter: grayscale(0);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 24, 48, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    cursor: pointer;
    transition: background 0.3s;
}

.stylized-map-wrap:hover .map-overlay {
    background: rgba(11, 24, 48, 0.1);
}

.social-connect-wrap {
    text-align: center;
}

.social-connect-wrap h4 {
    color: #0b1830;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(11, 24, 48, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1830;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4facfe;
    color: #fff;
    border-color: #4facfe;
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero .page-title {
        font-size: 3rem;
    }

    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 40px 25px;
    }
}

/* ==========================================================================
   Pricing V2 (Modern Design)
   ========================================================================== */
.pricing-page-main {
    background: #ffffff;
}

.pricing-header-v2 {
    padding: 60px 0;
    background: #f0f9ff;
}

.pricing-v2-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 20px;
}

.pricing-v2-title span {
    font-style: italic;
    font-family: serif;
    font-weight: 400;
}

.pricing-template-v3 .container-1200 {
    max-width: 1400px;
}

.pricing-v2-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Unique Pricing Category Tabs */
.pricing-category-tabs {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #0b1830 0%, #1a3c6d 100%);
    padding: 8px;
    width: fit-content;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(11, 24, 48, 0.2);
    position: relative;
    gap: 10px;
}

.tab-btn {
    padding: 14px 45px;
    border: none;
    background: transparent;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn.active {
    background: #4facfe;
    color: #fff;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.tab-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

.tab-btn[data-category="personal"]::before {
    content: "\f007";
}

.tab-btn[data-category="photographer"]::before {
    content: "\f030";
}

/* Billing Toggle */
.billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 0.85rem;
    font-weight: 900;
    color: #94a3b8;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-label.active {
    color: #0b1830;
    transform: scale(1.1);
}

/* Save Badge Design */
.save-badge {
    background: #ffd600;
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
}

.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0b1830;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background: #4facfe;
}

input:checked+.slider:before {
    transform: translateX(32px);
}

/* Pricing Grid */
.pricing-v2-grid-section {

    background: #ffffff;
    position: relative;
}

.pricing-v2-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
    /* Allow different heights */
}

/* Segmented Flat Design (Image Based) */
.pricing-template-v3 {
    background: #ffffff;
}

.pricing-header-v2 {
    background: #ffffff;
}

.p-card {
    background: #ffffff;
    border: 1px solid #e1e8f0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 90%;
    min-height: 720px;
    /* Force uniform height across all plans */
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: scale(0.85);
    animation: zoomInOneByOne 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoomInOneByOne {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Unified Featured Card Styling */
.p-card.featured {
    background: linear-gradient(135deg, #0b1830 0%, #1e3a5f 100%);
    color: #fff;
    min-height: 600px;
    /* Taller flagship height */
    z-index: 10;
    box-shadow: 0 20px 50px rgba(11, 24, 48, 0.4);
    border: 2px solid #4facfe !important;
}

/* Solid Beam Border Animation */
.p-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid #4facfe;
    border-radius: 6px;
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 0.5s ease-in-out;
    z-index: 5;
    pointer-events: none;
}

.p-card:hover::before {
    clip-path: inset(0 0 0 0);
}

.p-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 24, 48, 0.15);
}

.p-card.featured::before {
    clip-path: inset(0 0 0 0);
    border-color: #ffd600;
    opacity: 0.8;
    animation: borderBeamPulse 3s infinite ease-in-out;
}

@keyframes borderBeamPulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 5px #ffd600);
    }

    100% {
        opacity: 0.6;
    }
}

.p-card.featured:hover {
    transform: translateY(-10px) scale(1.02) !important;
}

/* Unique Floating Popular Badge */
.p-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd600;
    color: #000;
    font-size: 0.73rem;
    font-weight: 900;
    padding: 6px 22px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    z-index: 20;
    width: auto;
    height: auto;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}


.p-header {
    padding: 40px 20px 30px;
}

.p-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
}

.p-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #000000;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    display: block;
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: -5px;
}

.p-body {
    padding: 0 20px 40px;
    flex-grow: 1;
}

.p-body li {
    font-size: 0.85rem;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
}

.p-card.featured .p-body li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-subscribe {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, #4facfe 0%, #3d8ec3 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.p-card.featured .btn-subscribe {
    background: #ffffff;
    color: #0b1830;
}

/* Diagonal Ribbon */



.compare-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #0b1830;
}

.compare-table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow-x: auto;
}


/* FAQ Section V2 */
.pricing-faq-v2 {
    padding: 120px 0;
    background: #f0f9ff;
}

.container-800 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-tag {
    background: #e0f2fe;
    color: #4facfe;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.faq-top h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #0b1830;
}

.faq-top h2 span {
    font-style: italic;
    font-family: serif;
    font-weight: 400;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.step-num {
    width: 32px;
    height: 32px;
    background: #4a86a4;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.accordion-header h4 {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1830;
}

.accordion-header i {
    color: #94a3b8;
}

.accordion-body {
    padding: 0 30px 25px 82px;
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-body p {
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .pricing-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-v2-grid {
        grid-template-columns: 1fr;
    }

    .pricing-v2-title {
        font-size: 2.5rem;
    }

    .compare-table-wrap {
        overflow-x: auto;
    }

    .compare-table {
        min-width: 800px;
    }
}