/*
 * Plans Section Styles
 * =====================
 * Extracted from: new-index.css (Lines 921-1363, 3145-4890)
 * 
 * Purpose:
 * - Plans section base and grid layout
 * - Toggle system for different services
 * - Feature cards and pricing display
 * 
 * This module contains all styles related to the pricing/plans
 * section including grid layouts, toggle controls, and feature cards.
 */

/* Plans Section */
.plans-section {
    padding: 2.4rem 0;
    background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Ensure proper stacking context */
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 105, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.plans-section .container {
    position: relative;
    z-index: 1;
}

.plans-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0b1b4b;
    line-height: 1.2;
    padding: 2px;
}

.plans-section .section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.plan-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 1rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 105, 255, 0.1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.plan-card:nth-child(1) {
    animation-delay: 0.1s;
}

.plan-card:nth-child(2) {
    animation-delay: 0.2s;
}

.plan-card:nth-child(3) {
    animation-delay: 0.3s;
}

.plan-card:nth-child(4) {
    animation-delay: 0.4s;
}

.plan-card:nth-child(5) {
    animation-delay: 0.5s;
}

.plan-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 105, 255, 0.3);
}

/* .plan-card.popular {
    background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
    border: 2px solid #0069ff;
    box-shadow: 0 12px 40px rgba(0, 105, 255, 0.2);
} */

.plan-card.popular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-bottom: 1.5rem; */
}

.plan-icon {
    width: 200px;
    height: 150px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
    /* box-shadow: 0 8px 24px rgba(0, 105, 255, 0.3); */
    transition: transform 0.3s ease;
}

.plan-icon:hover {
    transform: scale(1.1);
}

.plan-icon svg {
    width: 111px;
    height: 111px;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.plan-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0b1b4b;
    font-weight: 600;
    min-height: auto;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b1b4b;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
}

/* .price::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0069ff, #00d4ff);
    margin: 1rem auto 0;
    border-radius: 2px;
} */

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #4a5568;
    position: relative;
    padding-left: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list li::before {
    content: "✓";
    position: relative;
    color: #0069ff;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    line-height: 1.4;
}

.view-plan-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0069ff 0%, #0051c3 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 105, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.view-plan-btn::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;
}

.view-plan-btn:hover::before {
    left: 100%;
}

.view-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 105, 255, 0.4);
    background: linear-gradient(135deg, #0051c3 0%, #004099 100%);
}

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

    /* Container padding handled by global responsive rules */

    .plan-card h3 {
        min-height: auto;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .features-list li {
        font-size: 0.85rem;
    }

    .popular-badge {
        top: -10px;
        right: 15px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* JavaScript-enhanced styles for plans section */
.plans-section.visible {
    opacity: 1;
}

.plan-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.plan-card.active {
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 105, 255, 0.3);
    transform: translateY(-8px) scale(1.02);
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.notification {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.notification-success {
    background: linear-gradient(135deg, #00d4ff, #0069ff) !important;
}

.notification-error {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
}

.notification-info {
    background: linear-gradient(135deg, #0069ff, #00d4ff) !important;
}

/* Brand Slider */
.brand-slider {
    /* Dark blue matching hero section */
    /* padding: 2rem 0; */
    /* padding-bottom: 1rem; */
    overflow: hidden;
    position: relative;
}

.brand-slider::before,
.brand-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-slider::before {
    left: 0;
    background: linear-gradient(to right, #1b49d1, rgba(11, 27, 75, 0));
}

.brand-slider::after {
    right: 0;
    background: linear-gradient(to left, #1a47c4, rgba(11, 27, 75, 0));
}

.slider-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 3rem 0;
    overflow: hidden;
}

@media (max-width: 992px) {
    .slider-container {
        padding: 50px 2rem 0;
    }
}

@media (max-width: 768px) {
    .slider-container {
        padding: 40px 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .slider-container {
        padding: 30px 1rem 0;
    }
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    opacity: 0.9;
    /* Slightly reduce opacity for blur effect */
    filter: blur(0.3px);
    /* Add slight blur effect */
}

.brand-item {
    flex: 0 0 auto;
    width: 150px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    max-height: 50px;
    filter: brightness(0) invert(1);
    /* Make logos white */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 6 - 4rem * 6));
        /* Width of all original items + their margins */
    }
}
#blk {
    color: #000;
}


.plan-home h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2.5rem;
}

.plans-home h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Toggle Buttons */
.toggle-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    /* Ensure toggle buttons stay above content but below fixed header */
}

.toggle-btn {
    padding: 12px 24px;
    background-color: #ffffff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Prevent any absolute positioning issues */
}

.toggle-btn:hover {
    background-color: #e0e0e0;
}

.toggle-btn.active {
    background-color: #0069ff;
    color: white;
    box-shadow: 0 4px 10px rgba(103, 61, 230, 0.3);
    transform: none;
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    scroll-margin-top: 100px;
    /* Account for fixed header (60px) + tabs (40px) + padding */
}

.content-section.active {
    display: block;
}

/* Grid Layouts - Updated to match the screenshots */
.grid-container {
    display: grid;
    gap: 25px;
    margin-top: 20px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    grid-auto-flow: dense;
}

/* Dedicated Servers - 4 cards layout (1 large left, 1 tall right, 2 half-width below) */
#dedicated-servers .grid-item:nth-child(1) {
    grid-column: span 8;
    grid-row: span 2;
    background-color: #1d1846;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border-radius: 10px;
    background-image: url('https://assets.hostinger.com/images/homepage2021/services/service-vps-bg-mobile-5c57bed204.svg');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 420px;
}

#dedicated-servers .grid-item:nth-child(2) {
    grid-column: span 4;
    grid-row: span 2;
    background-color: #0069ff;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-radius: 10px;
    min-height: 420px;
    text-align: left;
}

#dedicated-servers .grid-item:nth-child(3),
#dedicated-servers .grid-item:nth-child(4) {
    grid-column: span 6;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* VPS Hosting - 3 cards layout (1 large, 2 small) */
#vps-hosting .grid-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
    background-color: #673de6;
    color: white;
    padding: 40px;
    border-radius: 10px;
}

#vps-hosting .grid-item:nth-child(2),
#vps-hosting .grid-item:nth-child(3) {
    grid-column: span 6;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Colocation - 4 cards layout (2 large, 2 small) */
#colocation .grid-item:nth-child(1),
#colocation .grid-item:nth-child(2) {
    grid-column: span 6;
    background-color: #0069ff;
    color: white;
    padding: 40px;
    border-radius: 10px;
}

#colocation .grid-item:nth-child(3),
#colocation .grid-item:nth-child(4) {
    grid-column: span 6;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* n8n - 3 cards layout (1 large, 2 small side by side) */
#n8n .grid-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
    background-color: #1d1846;
    color: white;
    padding: 40px;
    border-radius: 10px;
}

#n8n .grid-item:nth-child(2),
#n8n .grid-item:nth-child(3) {
    grid-column: span 6;
    grid-row: span 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Tally on Cloud - mirror Dedicated Servers layout (1 large left, 1 tall right, 2 half-width below) */
#tally .grid-item:nth-child(1) {
    grid-column: span 8;
    grid-row: span 2;
    background-color: #1d1846;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border-radius: 10px;
    background-image: url('https://assets.hostinger.com/images/homepage2021/services/service-vps-bg-mobile-5c57bed204.svg');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 420px;
}

#tally .grid-item:nth-child(2) {
    grid-column: span 4;
    grid-row: span 2;
    background-color: #0069ff;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-radius: 10px;
    min-height: 420px;
    text-align: left;
}

#tally .grid-item:nth-child(3),
#tally .grid-item:nth-child(4) {
    grid-column: span 6;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: black;
}

/* Grid Item Content */
.grid-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.grid-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.grid-item p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.grid-item .icon {
    font-size: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0069ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #5a35c8;
    transform: translateY(-2px);
}

.white-button {
    background-color: white;
    color: #673de6;
}

.white-button:hover {
    background-color: #f5f5f5;
}

/* Dark background cards need white text */
.grid-item.dark-bg {
    color: white;
}

.grid-item.dark-bg h3 {
    color: white;
}

.grid-item.dark-bg p {
    color: rgba(255, 255, 255, 0.8);
}

/* Card with image */
.card-with-image {
    display: flex;
    align-items: center;
}

.card-content {
    flex: 1;
}

.card-image {
    flex: 1;
    text-align: center;
}

.card-image img {
    max-width: 100%;
    height: auto;
}

/* Tally visual styling */
#tally .tally-visual {
    width: 100%;
}

#tally .tally-visual svg {
    width: 100%;
    height: auto;
    display: block;
}

#tally .tally-visual .nodes circle {
    fill: #fff;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
}

/* Unified card internals */
.card-header {
    display: flex;
    /* align-items: center; */
    gap: 12px;
    /* margin-bottom: 10px; */
}

.card-header .icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: #673de6;
    font-size: 1rem;
}

.card-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 700;
    opacity: .8;
    margin-bottom: 6px;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    color: #000;
}

.card-subtitle {
    margin-top: 6px;
    color: #000;
    opacity: .9;
}

.card-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 14px 0 6px;
}

.meta-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(103, 61, 230, 0.12);
    color: #673de6;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(103, 61, 230, 0.18);
}

.card-features {
    margin: 12px 0 2px;
    padding-left: 0;
    list-style: none;
}

.card-features li {
    margin: 8px 0;
    padding-left: 22px;
    position: relative;
}

.card-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #673de6;
}

.card-footer {
    margin-top: auto;
}

/* Dark card refinements */
.grid-item.dark-bg .card-eyebrow {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

.grid-item.dark-bg .card-title {
    color: #fff;
}

.grid-item.dark-bg .card-subtitle {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.grid-item.dark-bg .meta-pill {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.grid-item.dark-bg .card-features li::before {
    color: #fff;
}

.grid-item.dark-bg .card-header .icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* Tally guide (video + steps) */
#tally .tally-guide {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 22px;
    align-items: stretch;
    margin-top: 8px;
}

#tally .guide-video .video-card {
    position: relative;
    aspect-ratio: 16/9;

}

#tally .guide-video .video-thumb {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

#tally .guide-video .video-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.35) 100%);
}

#tally .guide-content .guide-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

#tally .guide-content .guide-title {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -.01em;
}

#tally .guide-content .guide-subtitle {
    margin: 4px 0 12px;
    color: rgba(255, 255, 255, 0.92);
}

#tally .guide-content .setup-steps {
    margin-left: 18px;
    line-height: 1.9;
    font-size: 13px;
    margin-top: 14px;
}

#tally .feature-grid-tally {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin-top: 12px;
}

/* reuse existing .cta-button white-button */

@media (max-width: 968px) {
    #tally .tally-guide {
        grid-template-columns: 1fr;
    }
}

/* Spacing tweaks for readability */
#vps-hosting .grid-item,
#colocation .grid-item,
#n8n .grid-item {
    padding-top: 34px;
    padding-bottom: 34px;
}

#vps-hosting .grid-item.dark-bg,
#n8n .grid-item.dark-bg,
#colocation .grid-item.dark-bg {
    padding-left: 40px;
    padding-right: 40px;
}

/* Section-scoped accents */
#vps-hosting {
    --accent: #5b8cfa;
    --accent-2: #2d5cff;
}

#colocation {
    --accent: #00b894;
    --accent-2: #00a181;
}

#n8n {
    --accent: #ff7ab6;
    --accent-2: #f8459a;
}

/* VPS redesigned internals */
#vps-hosting .grid-item.card-vps.dark-bg {
    background: linear-gradient(135deg, rgba(45, 92, 255, 0.25), rgba(91, 140, 250, 0.15)) #1d1846;
    backdrop-filter: saturate(140%);
}

#vps-hosting .grid-item.card-vps .card-eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

#vps-hosting .grid-item.card-vps .card-title {
    letter-spacing: -0.02em;
}

#vps-hosting .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin-top: 12px;
}

#vps-hosting .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

#vps-hosting .feature .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

#vps-hosting .cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

#vps-hosting .vps-visual {
    margin: 14px 0 2px;
}

#vps-hosting .vps-visual svg {
    width: 85%;
    display: block;
}

#vps-hosting .vps-visual .nodes circle {
    fill: #fff;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
}

/* Colocation redesigned internals */
#colocation .grid-item.card-colo {
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 12px 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

#colocation .grid-item.card-colo.dark-bg {
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

#colocation .spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin-top: 12px;
}

#colocation .spec-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

#colocation .spec-item .badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.06);
    color: var(--accent-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#colocation .grid-item.dark-bg .spec-item .badge {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* n8n redesigned internals */
#n8n .grid-item.card-n8n.dark-bg {
    background: linear-gradient(135deg, rgba(248, 69, 154, 0.18), rgba(255, 122, 182, 0.12)) #1d1846;
}

#n8n .workflow-visual {
    margin: 16px 0 8px;
}

#n8n .workflow-visual svg {
    width: 85%;

    display: block;
}

#n8n .workflow-visual .nodes circle {
    fill: #fff;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
}

#n8n .flow-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

#n8n .flow-steps li {
    counter-increment: step;
    margin: 8px 0;
    padding-left: 28px;
    position: relative;
}

#n8n .flow-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: #111;
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#n8n .badge-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    #dedicated-servers .grid-item:nth-child(1) {
        grid-column: span 7;
    }

    #dedicated-servers .grid-item:nth-child(2) {
        grid-column: span 5;
    }
}

@media (max-width: 1050px) {
    /* Container padding handled by global responsive rules */
}

@media (max-width: 992px) {

    /* Container padding handled by global responsive rules above */
    .grid-container {
        grid-template-columns: repeat(6, 1fr);
    }

    #dedicated-servers .grid-item:nth-child(1),
    #vps-hosting .grid-item:nth-child(1),
    #colocation .grid-item:nth-child(1),
    #colocation .grid-item:nth-child(2),
    #n8n .grid-item:nth-child(1),
    #tally .grid-item:nth-child(3) {
        grid-column: span 6;
    }

    #dedicated-servers .grid-item:nth-child(2),
    #dedicated-servers .grid-item:nth-child(3),
    #dedicated-servers .grid-item:nth-child(4),
    #vps-hosting .grid-item:nth-child(2),
    #vps-hosting .grid-item:nth-child(3),
    #colocation .grid-item:nth-child(3),
    #colocation .grid-item:nth-child(4),
    #n8n .grid-item:nth-child(2),
    #n8n .grid-item:nth-child(3),
    #tally .grid-item:nth-child(1),
    #tally .grid-item:nth-child(2) {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {

    /* Container padding handled by global responsive rules above */
    .grid-container {
        grid-template-columns: repeat(6, 1fr);
    }

    #dedicated-servers .grid-item:nth-child(1),
    #dedicated-servers .grid-item:nth-child(2),
    #dedicated-servers .grid-item:nth-child(3),
    #dedicated-servers .grid-item:nth-child(4),
    #vps-hosting .grid-item:nth-child(1),
    #vps-hosting .grid-item:nth-child(2),
    #vps-hosting .grid-item:nth-child(3),
    #colocation .grid-item:nth-child(1),
    #colocation .grid-item:nth-child(2),
    #colocation .grid-item:nth-child(3),
    #colocation .grid-item:nth-child(4),
    #n8n .grid-item:nth-child(1),
    #n8n .grid-item:nth-child(2),
    #n8n .grid-item:nth-child(3),
    #tally .grid-item:nth-child(1),
    #tally .grid-item:nth-child(2),
    #tally .grid-item:nth-child(3) {
        grid-column: span 6;
    }

    .toggle-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 0;
        justify-content: flex-start;
        gap: 10px;
        position: sticky;
        top: 60px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 30px;
        z-index: 100;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .toggle-container::-webkit-scrollbar {
        display: none;
    }

    .toggle-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Prevent buttons from shrinking and enable horizontal scroll */
    .toggle-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .toggle-btn {
        flex: 0 0 auto;
        position: static !important;
        /* Prevent any positioning changes */
        top: auto !important;
        transform: none !important;
        /* Prevent vertical movement */
    }

    .toggle-btn.active {
        position: static !important;
        /* Critical: prevent active buttons from jumping */
        top: auto !important;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .grid-item h3 {
        font-size: 1.3rem;
    }

    .toggle-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .card-with-image {
        flex-direction: column;
    }

    .card-content {
        margin-bottom: 20px;
    }

    /* Make visuals full width on small screens */
    #n8n .workflow-visual svg,
    #vps-hosting .vps-visual svg {
        width: 100%;
    }

    /* Stack VPS features into a single column on phones */
    #vps-hosting .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Tally redesigned internals */
#tally {
    --accent: #0069ff;
    --accent-2: #004099;
}

#tally .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin-top: 25px;
}

#tally .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

#tally .feature .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

#tally .flow-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

#tally .flow-steps li {
    counter-increment: step;
    margin: 8px 0;
    padding-left: 28px;
    position: relative;
}

#tally .flow-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Loosen tall card min-heights on narrow viewports */
@media (max-width: 768px) {

    #dedicated-servers .grid-item:nth-child(1),
    #dedicated-servers .grid-item:nth-child(2) {
        min-height: auto;
    }
}

/* Scoped TallySec-like styles within #tally only */
#tally .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    width: 100%;
}

#tally .feature-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

#tally .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(3, 27, 78, 0.12);
    border-color: rgba(0, 105, 255, 0.25);
}

#tally .card-amd {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

#tally .card-pricing {
    grid-column: 2;
    grid-row: 1;
}

#tally .card-video {
    grid-column: 3;
    grid-row: 1;
}

#tally .card-backup {
    grid-column: 2 / 4;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

#tally .card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tally .processor-icon {
    width: 140px;
    height: 96px;
    border: 2px solid rgba(99, 102, 241, 0.35);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.06);
}

#tally .processor-icon .brand {
    font-size: 26px;
    font-weight: 800;
    color: #6366f1;
    letter-spacing: 1px;
}

#tally .processor-icon .model {
    font-size: 18px;
    font-weight: 700;
    color: #a5b4fc;
    letter-spacing: 2px;
}

#tally .small-badge {
    width: 78px;
    height: 56px;
    border: 2px solid rgba(99, 102, 241, 0.35);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.06);
    margin-bottom: 16px;
}

#tally .small-badge span {
    font-size: 13px;
    font-weight: 800;
    color: #6366f1;
}

#tally .backup-icon,
#tally .price-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tally .backup-icon {
    border: 3px solid rgba(99, 102, 241, 0.4);
    color: #6366f1;
    background: rgba(99, 102, 241, 0.06);
}

#tally .price-icon {
    border: 3px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
    background: rgba(34, 197, 94, 0.06);
}

#tally .price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#tally .price-tag .currency {
    font-size: 22px;
    font-weight: 700;
    color: #22c55e;
}

#tally .price-tag .amount {
    font-size: 40px;
    font-weight: 800;
    color: #22c55e;
}

#tally .price-tag .period {
    font-size: 16px;
    color: #475569;
}

#tally .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

#tally .video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#tally .video-section,
#tally .text-section {
    flex: 1;
}

#tally .feature-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    #tally .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    #tally .card-amd {
        grid-column: 1;
        grid-row: 1/3;
    }

    #tally .card-pricing {
        grid-column: 2;
        grid-row: 1;
    }

    #tally .card-video {
        grid-column: 2;
        grid-row: 2;
    }

    #tally .card-backup {
        grid-column: 1/3;
        grid-row: 3;
    }
}

@media (max-width: 820px) {
    #tally .card-backup {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #tally .video-section {
        width: 100%;
    }

    #tally .text-section {
        width: 100%;
    }

    #tally .video-container {
        position: relative;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        background: transparent;
    }

    #tally .video-container iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}

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

    #tally .card-amd,
    #tally .card-pricing,
    #tally .card-video,
    #tally .card-backup {
        grid-column: 1;
        grid-row: auto;
    }

    #tally .feature-card {
        padding: 20px;
    }

    #tally .card-backup {
        flex-direction: column;
    }

    #tally .card-amd {
        min-height: 360px;
    }
}

@media (max-width: 576px) {
    #tally .features-grid {
        gap: 16px;
    }

    #tally .feature-card {
        padding: 16px;
    }

    #tally .card-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
    }

    #tally .processor-icon {
        width: 120px;
        height: 80px;
    }

    #tally .processor-icon .brand {
        font-size: 22px;
    }

    #tally .processor-icon .model {
        font-size: 16px;
    }

    #tally .feature-card h3 {
        font-size: 1.5rem;
    }

    #tally .feature-card p {
        font-size: 13px;
    }

    #tally .pricing-card .price-header {
        font-size: 1.8rem !important;
    }

    #tally .buy-now-btn {
        width: 100%;
        text-align: center;
    }
}

/* Apply the same features grid/card system from Tally to other plan sections */
#dedicated-servers .features-grid,
#vps-hosting .features-grid,
#colocation .features-grid,
#n8n .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    width: 100%;
}

#dedicated-servers .feature-card,
#vps-hosting .feature-card,
#colocation .feature-card,
#n8n .feature-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

#dedicated-servers .feature-card:hover,
#vps-hosting .feature-card:hover,
#colocation .feature-card:hover,
#n8n .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(3, 27, 78, 0.12);
    border-color: rgba(0, 105, 255, 0.25);
}

#dedicated-servers .card-amd,
#vps-hosting .card-amd,
#colocation .card-amd,
#n8n .card-amd {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

#dedicated-servers .card-pricing,
#vps-hosting .card-pricing,
#colocation .card-pricing,
#n8n .card-pricing {
    grid-column: 2;
    grid-row: 1;
}

#dedicated-servers .card-video,
#vps-hosting .card-video,
#colocation .card-video,
#n8n .card-video {
    grid-column: 3;
    grid-row: 1;
}

#dedicated-servers .card-backup,
#vps-hosting .card-backup,
#colocation .card-backup,
#n8n .card-backup {
    grid-column: 2 / 4;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

#dedicated-servers .card-icon,
#vps-hosting .card-icon,
#colocation .card-icon,
#n8n .card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dedicated-servers .video-container,
#vps-hosting .video-container,
#colocation .video-container,
#n8n .video-container {
    position: relative;
    width: 100%;
    min-height: 280px;
    max-height: 420px;
    border-radius: 12px;
    overflow: hidden;
}

#dedicated-servers .video-container iframe,
#vps-hosting .video-container iframe,
#colocation .video-container iframe,
#n8n .video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#dedicated-servers .video-section,
#vps-hosting .video-section,
#colocation .video-section,
#n8n .video-section,
#colocation .image-section,
#n8n .image-section {
    flex: 1;
    width: 100%;
    min-height: 280px;
    max-height: 420px;
    display: flex;
    align-items: center;
}

#dedicated-servers .text-section,
#vps-hosting .text-section,
#colocation .text-section,
#n8n .text-section {
    flex: 1;
    width: 100%;
}

#dedicated-servers .feature-card h3,
#vps-hosting .feature-card h3,
#colocation .feature-card h3,
#n8n .feature-card h3,
#tally .feature-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0b1b4b;
    margin-bottom: 10px;
}

#dedicated-servers .feature-card p,
#vps-hosting .feature-card p,
#colocation .feature-card p,
#n8n .feature-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 1200px) {

    #dedicated-servers .features-grid,
    #vps-hosting .features-grid,
    #colocation .features-grid,
    #n8n .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    #dedicated-servers .card-amd,
    #vps-hosting .card-amd,
    #colocation .card-amd,
    #n8n .card-amd {
        grid-column: 1;
        grid-row: 1/3;
    }

    #dedicated-servers .card-pricing,
    #vps-hosting .card-pricing,
    #colocation .card-pricing,
    #n8n .card-pricing {
        grid-column: 2;
        grid-row: 1;
    }

    #dedicated-servers .card-video,
    #vps-hosting .card-video,
    #colocation .card-video,
    #n8n .card-video {
        grid-column: 2;
        grid-row: 2;
    }

    #dedicated-servers .card-backup,
    #vps-hosting .card-backup,
    #colocation .card-backup,
    #n8n .card-backup {
        grid-column: 1/3;
        grid-row: 3;
    }
}

@media (max-width: 820px) {

    #dedicated-servers .card-backup,
    #vps-hosting .card-backup,
    #colocation .card-backup,
    #n8n .card-backup {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Ensure image sections don't overflow on small screens */
    #colocation .image-section,
    #n8n .image-section {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: 100%;
        overflow: hidden;
    }

    #colocation .image-section img,
    #n8n .image-section img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain;
    }
}

@media (max-width: 768px) {

    #dedicated-servers .features-grid,
    #vps-hosting .features-grid,
    #colocation .features-grid,
    #n8n .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #dedicated-servers .card-amd,
    #dedicated-servers .card-pricing,
    #dedicated-servers .card-video,
    #dedicated-servers .card-backup,
    #vps-hosting .card-amd,
    #vps-hosting .card-pricing,
    #vps-hosting .card-video,
    #vps-hosting .card-backup,
    #colocation .card-amd,
    #colocation .card-pricing,
    #colocation .card-video,
    #colocation .card-backup,
    #n8n .card-amd,
    #n8n .card-pricing,
    #n8n .card-video,
    #n8n .card-backup {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 576px) {

    #dedicated-servers .features-grid,
    #vps-hosting .features-grid,
    #colocation .features-grid,
    #n8n .features-grid {
        gap: 16px;
    }

    #dedicated-servers .feature-card,
    #vps-hosting .feature-card,
    #colocation .feature-card,
    #n8n .feature-card {
        padding: 16px;
    }
}

/* Make feature card images responsive across all plan sections */
#dedicated-servers .feature-card .card-icon img,
#vps-hosting .feature-card .card-icon img,
#colocation .feature-card .card-icon img,
#n8n .feature-card .card-icon img,
#tally .feature-card .card-icon img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Avoid fixed half-height images inside pricing cards on smaller screens */
@media (max-width: 930px) {

    #dedicated-servers .card-pricing .card-icon,
    #vps-hosting .card-pricing .card-icon,
    #colocation .card-pricing .card-icon,
    #n8n .card-pricing .card-icon,
    #tally .card-pricing .card-icon {
        height: auto !important;
        margin-bottom: 14px;
    }

    #dedicated-servers .card-pricing .card-icon img,
    #vps-hosting .card-pricing .card-icon img,
    #colocation .card-pricing .card-icon img,
    #n8n .card-pricing .card-icon img,
    #tally .card-pricing .card-icon img {
        height: auto !important;
        max-height: 260px;
        object-fit: cover;
    }
}

/* Ensure linked thumbnail videos scale correctly */
.video-container img.thumbnail-img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

/* Ensure all plan section videos and images remain visible and keep consistent height on small screens */
@media (max-width: 768px) {

    #dedicated-servers .video-container,
    #vps-hosting .video-container,
    #colocation .video-container,
    #n8n .video-container,
    #tally .video-container {
        position: relative !important;
        width: 100% !important;
        aspect-ratio: 16/9 !important;
        padding-bottom: 0 !important;
        height: auto !important;
        min-height: 200px;
        max-height: 320px;
        overflow: hidden;
        border-radius: 12px;
    }

    #dedicated-servers .video-container iframe,
    #vps-hosting .video-container iframe,
    #colocation .video-container iframe,
    #n8n .video-container iframe,
    #tally .video-container iframe {
        position: static !important;
        width: 100% !important;
        height: 100% !important;
        border: 0 !important;
        display: block;
    }

    /* Ensure images match video dimensions on mobile */
    .card-backup .image-section,
    #colocation .image-section,
    #n8n .image-section {
        min-height: 200px;
        max-height: 320px;
    }

    .card-backup .image-section img {
        min-height: 200px;
        max-height: 320px;
    }
}

/* Tally video container specific styles */
#tally .video-container {
    position: relative;
    width: 100%;
    min-height: 280px;
    max-height: 420px;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
}

#dedicated-servers .video-container iframe,
/* #vps-hosting .video-container iframe, */
#colocation .video-container iframe,
#n8n .video-container iframe,
#tally .video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Ensure consistent sizing for all videos in plans section */
.video-container video,
.vps-register-video {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 420px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* Specific styling for tally section video */
#tally .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure images in card-backup sections match video dimensions */
.card-backup .image-section img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Pricing Card Styles for Tally Section */

#tally .price-header {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}


#tally .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

#tally .plan-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

#tally .features-list {
    list-style: none;
    padding: 0;
}

#tally .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    padding-left: 0;
    gap: 0.75rem;
}

#tally .features-list i {
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

#tally .buy-now-btn {
    display: inline-block;
    background: white;
    color: #0069ff;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

#tally .buy-now-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Responsive for Pricing Card */
@media (max-width: 768px) {
    #tally .pricing-card {
        padding: 1.5rem;
    }

    #tally .price-header {
        font-size: 2.5rem;
    }

    #tally .plan-name {
        font-size: 1.3rem;
    }

    #tally .features-list li {
        font-size: 0.9rem;
        justify-content: flex-start;
    }

}
