/* Main Design System */
:root {
    --primary: #6c5ce7;
    --primary-dark: #5b4cdb;
    --secondary: #00cec9;
    --accent: #fd79a8;
    --dark-bg: #0a0a0f;
    --dark-card: #12121a;
    --dark-card-hover: #1a1a25;
    --dark-border: #2d2d3a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #6c5ce7 0%, #a855f7 100%);
    --gradient-2: linear-gradient(135deg, #00cec9 0%, #0984e3 100%);
    --gradient-3: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    --success: #2ed573;
    --warning: #ffc107;

    /* Coming Soon Specific */
    --accent-coming: #6c63ff;
    --accent-glow: rgba(108, 99, 255, 0.4);
    --bg-coming: #030305;
    --surface-coming: #0a0a0c;
    --text-coming: #ffffff;
    --text-dim-coming: rgba(255, 255, 255, 0.6);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    border-bottom: 1px solid var(--dark-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 70px;
    width: auto;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-1);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title h2 span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section (Index) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    opacity: 0.1;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    opacity: 0.1;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--gradient-3);
    opacity: 0.1;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.branding-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-primary-custom {
    background: var(--gradient-1);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.4);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--dark-border);
    padding: 13px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
}

.hero-image {
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
    animation: borderPulse 4s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes borderPulse {

    0%,
    100% {
        border-color: rgba(108, 92, 231, 1);
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
        transform: scale(1);
    }

    50% {
        border-color: rgba(0, 206, 201, 1);
        box-shadow: 0 0 40px rgba(0, 206, 201, 0.5);
        transform: scale(1.02);
    }
}

/* Software Categories (Index) */
.categories-section {
    padding: 100px 0;
}

.category-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: var(--dark-card-hover);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
}

.category-icon.gradient-1 {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    color: #a855f7;
}

.category-icon.gradient-2 {
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.2) 0%, rgba(9, 132, 227, 0.2) 100%);
    color: #00cec9;
}

.category-icon.gradient-3 {
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.2) 0%, rgba(232, 67, 147, 0.2) 100%);
    color: #fd79a8;
}

.category-icon.gradient-4 {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
    color: #ffc107;
}

.category-icon.gradient-5 {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.2) 0%, rgba(39, 174, 96, 0.2) 100%);
    color: #2ed573;
}

.category-icon.gradient-6 {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(238, 90, 36, 0.2) 100%);
    color: #ff6b6b;
}

.category-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--secondary);
    gap: 15px;
}

/* Video Section Shared */
.video-section {
    padding: 100px 0;
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%236c5ce7" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--dark-border);
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.video-preview {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.4s ease;
}

.video-preview:hover {
    transform: scale(1.02);
}

.video-preview:hover .play-btn {
    background: var(--gradient-1);
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(108, 92, 231, 0.6);
}

.play-btn {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.play-btn i {
    margin-left: 5px;
}

.video-preview::after {
    content: 'Click to watch Video';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Features Section (Index & Software) */
.features-section {
    padding: 100px 0;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 18px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.feature-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 15px;
}

/* CTA & Contact Section Shared */
.cta-section,
.contact-cta {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section h2,
.contact-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p,
.contact-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-light-custom {
    background: white;
    color: var(--primary);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 0;
}

.contact-info-card i {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-card span {
    font-weight: 600;
    overflow-wrap: break-word;
    word-break: break-all;
}

/* Footer Shared */
footer {
    background: var(--dark-card);
    padding: 80px 0 30px;
    border-top: 1px solid var(--dark-border);
}

.footer-brand {
    margin-bottom: 20px;
    display: block;
}

.footer-brand img {
    width: 200px;
    height: auto;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: var(--text-secondary);
}

/* Service Pages Shared (software.html, pos pages) */
.page-header,
.service-header {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-header {
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.1) 0%, var(--dark-bg) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1,
.service-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header h1 span,
.service-header h1 span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-main-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 30px;
}

.feature-main-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-main-card h3 i {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--dark-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: var(--dark-card-hover);
}

.feature-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(46, 213, 115, 0.2);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-grid {
    padding: 80px 0;
}

/* Pricing Shared */
.pricing-section {
    padding: 80px 0;
    background: rgba(108, 92, 231, 0.05);
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.billing-toggle span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.billing-toggle span.active {
    color: var(--text-primary);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--dark-border);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    left: 33px;
}

.pricing-card {
    background: var(--dark-card);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(108, 92, 231, 0.3);
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    margin: 20px 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 28px;
    vertical-align: super;
    margin-right: 5px;
}

.price-period {
    color: var(--text-secondary);
    font-size: 18px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 16px;
}

.pricing-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

.btn-pricing {
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    background: var(--gradient-1);
    color: white;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.savings-badge {
    display: inline-block;
    background: rgba(0, 206, 201, 0.2);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* POS Shop Section */
.pos-shop-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a0f2e 0%, #130d24 50%, #1a0f2e 100%);
    position: relative;
    overflow: hidden;
}

.pos-shop-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hardware-item {
    background: #13111e;
    border-radius: 20px;
    padding: 40px 20px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hardware-item:hover {
    transform: translateY(-8px);
    background: #1c1830;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.3);
}

.hardware-icon-circle {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 38px;
    color: #1a1a2e;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.hardware-item:hover .hardware-icon-circle {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hardware-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Shared */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .page-header h1,
    .service-header h1 {
        font-size: 38px;
    }

    .feature-main-card {
        padding: 30px;
    }

    .video-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .page-header h1,
    .service-header h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .price-amount {
        font-size: 36px;
    }

    .contact-info-card {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .countdown {
        gap: 1rem;
    }

    .timer-unit {
        min-width: 80px;
    }
}