/* ===========================
   Pricing Section Styles
   =========================== */

.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(52, 184, 193, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 184, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.pricing-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #34B8C1 0%, #0f172a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-section .section-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-section .section-description strong {
    color: #34B8C1;
    font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Pricing Card */
.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Shapes */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #34B8C1 0%, #0ea5e9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 2;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(52, 184, 193, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

/* Projects Card Specific Background Shapes */
.pricing-card:first-child {
    background-image: 
        /* Geometric circles */
        radial-gradient(circle at 20% 30%, rgba(52, 184, 193, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
        /* Hexagon pattern */
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L90 30 L90 70 L50 90 L10 70 L10 30 Z' fill='none' stroke='%2334B8C1' stroke-width='1' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%, 80px 80px;
    background-position: 0 0, 0 0, 0 0;
    background-repeat: no-repeat, no-repeat, repeat;
}

.pricing-card:first-child::after {
    background: radial-gradient(circle, rgba(52, 184, 193, 0.18) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

/* Tutoring Card Specific Background Shapes */
.pricing-card:last-child {
    background-image: 
        /* Organic blobs */
        radial-gradient(ellipse at 15% 60%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 40%, rgba(52, 184, 193, 0.12) 0%, transparent 50%),
        /* Triangle pattern */
        url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='60,10 110,100 10,100' fill='none' stroke='%2310b981' stroke-width='1' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%, 100px 100px;
    background-position: 0 0, 0 0, 0 0;
    background-repeat: no-repeat, no-repeat, repeat;
}

.pricing-card:last-child::after {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

/* Additional Decorative Elements for Arrow-Factors Container */
.pricing-card .arrow-factors-container::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(52, 184, 193, 0.12) 0%, transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.pricing-card:last-child .arrow-factors-container::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, transparent 100%);
    animation: morph 15s ease-in-out infinite reverse;
}

.pricing-card .arrow-factors-container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.12) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.pricing-card:last-child .arrow-factors-container::after {
    background: linear-gradient(45deg, rgba(52, 184, 193, 0.12) 0%, transparent 100%);
    animation: rotate 25s linear infinite reverse;
}

/* Background Decorative Shapes Container */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-shape {
    position: absolute;
    opacity: 0.15;
    animation: drift 15s ease-in-out infinite;
    filter: blur(1px);
}

/* Projects Card Decorative Shapes */
.pricing-card:first-child .decoration-shape.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 3%;
    background: linear-gradient(135deg, rgba(52, 184, 193, 0.2), rgba(14, 165, 233, 0.2));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.pricing-card:first-child .decoration-shape.shape-2 {
    width: 60px;
    height: 60px;
    top: 55%;
    right: 8%;
    background: radial-gradient(circle, rgba(52, 184, 193, 0.25), transparent);
    border-radius: 50%;
    animation-delay: 2s;
}

.pricing-card:first-child .decoration-shape.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    left: 5%;
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.2), rgba(52, 184, 193, 0.2));
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
    animation-delay: 4s;
}

.pricing-card:first-child .decoration-shape.shape-4 {
    width: 50px;
    height: 50px;
    top: 35%;
    right: 12%;
    background: rgba(52, 184, 193, 0.2);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 6s;
}

/* Tutoring Card Decorative Shapes */
.pricing-card:last-child .decoration-shape.shape-1 {
    width: 75px;
    height: 75px;
    top: 15%;
    right: 5%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 184, 193, 0.2));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 1s;
}

.pricing-card:last-child .decoration-shape.shape-2 {
    width: 55px;
    height: 55px;
    top: 50%;
    left: 3%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent);
    border-radius: 50%;
    animation-delay: 3s;
}

.pricing-card:last-child .decoration-shape.shape-3 {
    width: 65px;
    height: 65px;
    bottom: 20%;
    right: 10%;
    background: linear-gradient(45deg, rgba(52, 184, 193, 0.2), rgba(16, 185, 129, 0.2));
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
    animation-delay: 5s;
}

.pricing-card:last-child .decoration-shape.shape-4 {
    width: 45px;
    height: 45px;
    top: 30%;
    left: 8%;
    background: rgba(16, 185, 129, 0.2);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 7s;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(15px, -15px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-10px, 10px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(10px, 15px) rotate(270deg) scale(1.05);
    }
}

/* Ensure content is above decorative elements */
.pricing-card .card-header,
.pricing-card .pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

/* Animations for decorative shapes */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    50% {
        border-radius: 30% 70% 30% 70% / 70% 30% 70% 30%;
    }
    75% {
        border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(52, 184, 193, 0.1) 0%, rgba(52, 184, 193, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34B8C1;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

/* Pricing Content */
.pricing-content {
    margin-top: 1.5rem;
}

/* Arrow and Factors Container - Side by Side */
.arrow-factors-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    min-height: 500px;
}

/* Price Arrow Container */
.price-arrow-container {
    flex: 1;
    max-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.price-arrow-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.price-arrow-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(52, 184, 193, 0.15));
}

/* Price Labels Overlay */
.price-range-labels-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.price-label-start,
.price-label-end {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    opacity: 0;
    animation: fadeInPriceLabel 0.6s ease-out forwards;
}

.price-label-start {
    bottom: 12%;
    left: 2%;
    animation-delay: 0.5s;
}

.price-label-end {
    top: -4%;
    right: 10%;
    animation-delay: 2.4s;
}

@keyframes fadeInPriceLabel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-label-end {
    animation-name: fadeInPriceLabelEnd;
}

@keyframes fadeInPriceLabelEnd {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-label-start .price-label-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.price-label-start .price-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-label-end .price-label-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec4899;
    line-height: 1;
}

.price-label-end .price-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tutoring card specific end price color */
.pricing-card:last-child .price-label-end .price-label-amount {
    color: #0ea5e9;
}

/* Arrow Path Animation */
.arrow-path {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: drawArrow 2s ease-out forwards;
}

/* Override for mobile paths - no animation, immediate visibility */
.arrow-path.arrow-path-mobile {
    stroke-dasharray: 4 4;
    stroke-dashoffset: 0;
    animation: none;
}

@keyframes drawArrow {
    to {
        stroke-dashoffset: 0;
    }
}

/* Hide mobile versions on desktop */
.arrow-path-mobile,
.arrowhead-mobile,
.price-dot-mobile {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Show desktop versions on desktop */
.arrow-path-desktop,
.arrowhead-desktop,
.price-dot-desktop {
    display: inline;
    opacity: 1;
    visibility: visible;
}

.arrowhead {
    opacity: 0;
    animation: fadeInArrowhead 0.5s ease-out 2s forwards;
}

@keyframes fadeInArrowhead {
    to {
        opacity: 1;
    }
}

.price-dot {
    opacity: 0;
    animation: popInDot 0.4s ease-out forwards;
}

.price-dot.start {
    animation-delay: 0.3s;
}

.price-dot.end {
    animation-delay: 2.2s;
}

@keyframes popInDot {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Removed old price range labels - now using SVG text */

/* Removed ladder-related styles - replaced with arrow design */

/* Pricing Factors Cards - Beside Arrow */
.pricing-factors-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding-left: 1rem;
    min-height: 500px;
}

/* Tutoring Services specific styling */
.pricing-factors-cards.tutoring-factors {
    justify-content: space-around;
    gap: 0.5rem;
}

.factor-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(52, 184, 193, 0.05) 0%, rgba(52, 184, 193, 0.1) 100%);
    border: 2px solid rgba(52, 184, 193, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFactor 0.5s ease-out forwards;
}

.factor-card:nth-child(1) {
    animation-delay: 0.8s;
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.factor-card:nth-child(1) .factor-icon,
.factor-card:nth-child(1) .factor-icon svg {
    color: #10b981;
}

.factor-card:nth-child(1) .factor-content strong {
    color: #10b981;
}

.factor-card:nth-child(2) {
    animation-delay: 1s;
    border-color: rgba(52, 184, 193, 0.3);
    background: linear-gradient(135deg, rgba(52, 184, 193, 0.05) 0%, rgba(52, 184, 193, 0.1) 100%);
}

.factor-card:nth-child(2) .factor-icon,
.factor-card:nth-child(2) .factor-icon svg {
    color: #34B8C1;
}

.factor-card:nth-child(2) .factor-content strong {
    color: #34B8C1;
}

.factor-card:nth-child(3) {
    animation-delay: 1.2s;
    border-color: rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.factor-card:nth-child(3) .factor-icon,
.factor-card:nth-child(3) .factor-icon svg {
    color: #0ea5e9;
}

.factor-card:nth-child(3) .factor-content strong {
    color: #0ea5e9;
}

.factor-card:nth-child(4) {
    animation-delay: 1.4s;
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.factor-card:nth-child(4) .factor-icon,
.factor-card:nth-child(4) .factor-icon svg {
    color: #8b5cf6;
}

.factor-card:nth-child(4) .factor-content strong {
    color: #8b5cf6;
}

.factor-card:nth-child(5) {
    animation-delay: 1.6s;
    border-color: rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.factor-card:nth-child(5) .factor-icon,
.factor-card:nth-child(5) .factor-icon svg {
    color: #ec4899;
}

.factor-card:nth-child(5) .factor-content strong {
    color: #ec4899;
}

@keyframes slideInFactor {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.factor-card:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(52, 184, 193, 0.2);
    border-color: #34B8C1;
}

.factor-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.factor-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.factor-card:nth-child(1) .factor-icon svg {
    stroke: #10b981;
}

.factor-card:nth-child(2) .factor-icon svg {
    stroke: #34B8C1;
}

.factor-card:nth-child(3) .factor-icon svg {
    stroke: #0ea5e9;
}

.factor-card:nth-child(4) .factor-icon svg {
    stroke: #8b5cf6;
}

.factor-card:nth-child(5) .factor-icon svg {
    stroke: #ec4899;
}

.factor-content {
    flex: 1;
}

.factor-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.375rem;
}

.factor-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Pricing Note */
.pricing-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(52, 184, 193, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 1px solid rgba(52, 184, 193, 0.2);
    border-radius: 16px;
    margin-top: 2rem;
}

.note-icon {
    width: 40px;
    height: 40px;
    background: rgba(52, 184, 193, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34B8C1;
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
}

.pricing-note strong {
    color: #0f172a;
    font-weight: 600;
}

/* Price Tooltip */
.price-tooltip {
    position: fixed;
    background: #0f172a;
    color: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 200px;
    text-align: center;
}

.price-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0f172a;
}

.price-tooltip strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #34B8C1;
}

.price-tooltip p {
    margin: 0.25rem 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.price-tooltip small {
    display: block;
    margin-top: 0.5rem;
    color: #94a3b8;
    font-size: 0.75rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-section .section-title {
        font-size: 2rem;
    }

    .pricing-section .section-description {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }


    .card-header {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .pricing-note {
        flex-direction: column;
        text-align: center;
    }

    .arrow-factors-container {
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }

    .price-arrow-container {
        max-width: 100%;
        width: 100%;
    }

    .price-arrow-wrapper {
        height: 80px;
        margin-bottom: 0;
        padding: 0;
    }
    
    .price-arrow-container {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .pricing-factors-cards {
        width: 100%;
        min-height: auto;
        padding: 0;
        margin-top: 0;
        gap: 0.75rem;
    }

    /* Show mobile versions and hide desktop versions on tablet/mobile */
    .arrow-path-desktop,
    .arrowhead-desktop,
    .price-dot-desktop {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .arrow-path-mobile,
    .arrowhead-mobile,
    .price-dot-mobile {
        display: inline !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Mobile horizontal line - visible dotted line */
    .arrow-path.arrow-path-mobile {
        stroke-dasharray: 4 4 !important;
        stroke-dashoffset: 0 !important;
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        stroke-width: 22 !important;
    }

    /* Mobile arrowhead and dots - immediate visibility */
    .arrowhead-mobile {
        opacity: 1 !important;
        animation: none !important;
    }

    .price-dot-mobile {
        opacity: 1 !important;
        animation: none !important;
    }

    /* Ensure price labels are visible - positioned at line endpoints */
    /* Mobile dots: start at (50, 100), end at (350, 100) in viewBox "0 0 400 600" */
    /* Start: x=50/400=12.5% from left, End: x=350/400=87.5% from left (12.5% from right) */
    /* Dots are at y=100/600=16.67% from top, position labels above dots for visibility */
    .price-label-start {
        bottom: auto;
        top: 10%;
        left: 12.5%;
        right: auto;
        transform: translateX(-50%);
    }

    .price-label-end {
        top: 10%;
        right: 12.5%;
        left: auto;
        bottom: auto;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .pricing-section .container {
        padding: 0 1rem;
    }

    .pricing-section .section-title {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .arrow-factors-container {
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }

    .price-arrow-container {
        max-width: 100%;
        width: 100%;
    }

    .price-arrow-wrapper {
        height: 80px;
        margin-bottom: 0;
        padding: 0;
    }
    
    .price-arrow-container {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .pricing-factors-cards {
        width: 100%;
        min-height: auto;
        padding: 0;
        margin-top: 0;
        gap: 0.75rem;
    }

    .factor-card {
        width: 100%;
    }

    /* Show mobile versions and hide desktop versions on mobile */
    .arrow-path-desktop,
    .arrowhead-desktop,
    .price-dot-desktop {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .arrow-path-mobile,
    .arrowhead-mobile,
    .price-dot-mobile {
        display: inline !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Mobile horizontal line - no animation, just visible dotted line */
    .arrow-path.arrow-path-mobile {
        stroke-dasharray: 4 4 !important;
        stroke-dashoffset: 0 !important;
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline !important;
        stroke-width: 12 !important;
    }

    /* Mobile arrowhead and dots - immediate visibility */
    .arrowhead-mobile {
        opacity: 1 !important;
        animation: none !important;
    }

    .price-dot-mobile {
        opacity: 1 !important;
        animation: none !important;
    }

    /* Ensure price labels are visible on mobile - positioned at line endpoints */
    /* Mobile dots: start at (50, 100), end at (350, 100) in viewBox "0 0 400 600" */
    /* Start: x=50/400=12.5% from left, End: x=350/400=87.5% from left (12.5% from right) */
    /* Dots are at y=100/600=16.67% from top, position labels above dots for visibility */
    .price-label-start {
        bottom: auto;
        top: 10%;
        left: 6%;
        right: auto;
        transform: translateX(-50%);
    }

    .price-label-end {
        top: 10%;
        right: 2%;
        left: auto;
        bottom: auto;
        transform: translateX(50%);
    }
}


