/* ==========================================================================
   IGEN WEBSITE DESIGN DIVISION - STYLESHEET
   Aesthetics: Premium, Modern Teal & Slate Theme, 3D Moving Hero Showcase
   ========================================================================== */

:root {
    --igen-teal: #009387;
    --igen-teal-dark: #00776d;
    --igen-teal-light: #e6f7f5;
    --igen-teal-subtle: #f2fbfb;
    --igen-accent-orange: #ff7a00;
    --igen-dark: #121d28;
    --igen-text: #334155;
    --igen-text-muted: #64748b;
    --igen-border: #e2e8f0;
    --igen-card-bg: #ffffff;
    --igen-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --igen-shadow-md: 0 10px 25px -5px rgba(0, 147, 135, 0.08), 0 8px 10px -6px rgba(0, 147, 135, 0.04);
    --igen-shadow-lg: 0 20px 35px -10px rgba(0, 147, 135, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--igen-text);
    background-color: #fcfdfe;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--igen-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: var(--igen-teal);
    border-radius: 4px;
}

/* Buttons & Badges */
.btn-igen-primary {
    background: linear-gradient(135deg, var(--igen-teal) 0%, var(--igen-teal-dark) 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 147, 135, 0.3);
}
.btn-igen-primary:hover {
    background: linear-gradient(135deg, var(--igen-teal-dark) 0%, #005a52 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 147, 135, 0.4);
}

.btn-igen-outline {
    background: transparent;
    color: var(--igen-teal);
    border: 2px solid var(--igen-teal);
    font-weight: 600;
    padding: 9px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-igen-outline:hover {
    background: var(--igen-teal);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 147, 135, 0.25);
}

.badge-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--igen-teal);
    background-color: var(--igen-teal-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* Sticky Glass Navbar */
.igen-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}
.navbar-brand .logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--igen-teal);
    letter-spacing: -0.5px;
}
.navbar-brand .logo-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--igen-text-muted);
    text-transform: uppercase;
    display: block;
    margin-top: -6px;
}

.nav-link {
    font-weight: 500;
    color: var(--igen-dark);
    margin: 0 10px;
    transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--igen-teal);
}

/* HERO CENTERED OVERLAY (MOUSE PASS-THROUGH FOR SCREEN HOVER & MARQUEE) */
.hero-text-overlay {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    text-align: center;
    width: 92%;
    max-width: 860px;
    pointer-events: none; /* Mouse hover passes directly to screens underneath! */
}

.hero-overlay-card {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 36px 40px;
    box-shadow: 0 20px 50px rgba(0, 180, 167, 0.15), 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-overlay-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--igen-dark);
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-overlay-title {
        font-size: 2rem;
    }
    .hero-overlay-card {
        padding: 24px 20px;
    }
}

.hero-overlay-subtitle {
    font-size: 1.05rem;
    color: var(--igen-text-muted);
    font-weight: 500;
    margin-bottom: 22px;
}

.hero-overlay-cta {
    pointer-events: auto; /* Re-enable clickability for CTA buttons */
}

.hero-3d-perspective-stage {
    perspective: 1500px;
    width: 100%;
    margin-top: -100px;
    margin-bottom: 20px;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #eef7f6 0%, #ffffff 100%);
}

.hero-3d-grid-container {
    transform: rotateX(15deg) rotateY(-6deg) rotateZ(-2deg) scale(1.16);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 180%;
    margin-left: -40%;
    padding-top: 90px;
    padding-bottom: 50px;
}

/* Infinite Sliding Marquee Rows */
.marquee-track-row {
    display: flex;
    width: max-content;
    gap: 24px;
    will-change: transform;
}

.marquee-left {
    animation: marquee-slide-left 35s linear infinite;
}

.marquee-right {
    animation: marquee-slide-right 35s linear infinite;
}

/* Pause ONLY the specific row being hovered */
.marquee-track-row:hover {
    animation-play-state: paused;
}

@keyframes marquee-slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333333%); }
}

@keyframes marquee-slide-right {
    0% { transform: translateX(-33.333333%); }
    100% { transform: translateX(0); }
}

/* Browser Mockup Card - 300px size, Grayscale by default, color on hover */
.browser-mockup-card {
    width: 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 147, 135, 0.05);
    border: 1px solid rgba(203, 213, 225, 0.8);
    overflow: hidden;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: filter 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, box-shadow 0.35s ease;
}

.browser-mockup-card:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 20px 40px rgba(0, 147, 135, 0.3);
    z-index: 50;
}

/* REDESIGNED LIVE DESIGN PROGRESS SECTION */
.live-progress-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfb 50%, #ffffff 100%);
    overflow: hidden;
}

.live-progress-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 167, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.pulse-badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--igen-teal);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-ring-dot 1.8s infinite;
}

@keyframes pulse-ring-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 180, 167, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 180, 167, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 180, 167, 0); }
}

/* Interactive Timeline Stepper Cards */
.timeline-stepper-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .timeline-stepper-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .timeline-stepper-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stepper-card-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.stepper-card-item:hover {
    transform: translateY(-4px);
    border-color: var(--igen-teal);
    box-shadow: 0 10px 20px rgba(0, 180, 167, 0.12);
}

.stepper-card-item.completed {
    background: var(--igen-teal-light);
    border-color: var(--igen-teal);
}

.stepper-card-item.active {
    background: #ffffff;
    border-color: var(--igen-teal);
    box-shadow: 0 12px 25px rgba(0, 180, 167, 0.25);
}

.stepper-icon-box {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: #f1f5f9;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.stepper-card-item.completed .stepper-icon-box {
    background: var(--igen-teal);
    color: #ffffff;
}

.stepper-card-item.active .stepper-icon-box {
    background: linear-gradient(135deg, var(--igen-teal) 0%, var(--igen-teal-dark) 100%);
    color: #ffffff;
    box-shadow: 0 0 0 5px rgba(0, 180, 167, 0.2);
}

.stepper-num-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--igen-text-muted);
    margin-bottom: 4px;
    display: block;
}

.stepper-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--igen-dark);
    line-height: 1.2;
}

/* Right Dashboard Tracker Card */
.tracker-dashboard-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 20px 40px rgba(0, 180, 167, 0.1), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    position: relative;
}

.tracker-dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--igen-teal) 0%, var(--igen-accent-orange) 100%);
    border-radius: 24px 24px 0 0;
}

.status-badge-completed {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.status-badge-progress {
    background: #fef9c3;
    color: #a16207;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.status-badge-pending {
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 12px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.browser-url-bar {
    background: #ffffff;
    border-radius: 6px;
    padding: 3px 12px;
    font-size: 0.72rem;
    color: #94a3b8;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #e2e8f0;
}

.browser-screen-content {
    height: 240px;
    background-size: cover;
    background-position: top center;
    position: relative;
    overflow: hidden;
}

/* Stats Counter Bar */
.stats-bar-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 30px 40px;
    box-shadow: 0 20px 40px -15px rgba(0, 147, 135, 0.12), 0 0 0 1px rgba(0, 147, 135, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stats-bar-card:hover {
    box-shadow: 0 30px 60px -20px rgba(0, 147, 135, 0.18), 0 0 0 1px rgba(0, 147, 135, 0.1);
    transform: translateY(-4px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    border-radius: 16px;
}
.stat-item:hover {
    background: rgba(0, 147, 135, 0.04);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--igen-teal-light) 0%, rgba(0, 147, 135, 0.15) 100%);
    color: var(--igen-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: inset 0 -2px 6px rgba(0, 147, 135, 0.1);
}
.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--igen-teal) 0%, #007a70 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px -6px rgba(0, 147, 135, 0.4);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--igen-dark);
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(45deg, var(--igen-dark) 30%, var(--igen-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}
.stat-item:hover .stat-number {
    transform: translateX(2px);
}

.stat-label {
    font-size: 0.88rem;
    color: var(--igen-text-muted);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: -0.1px;
}

/* Value Proposition Cards */
.feature-prop-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.feature-prop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--igen-shadow-md);
    border-color: var(--igen-teal-light);
}

.feature-prop-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    border-radius: 16px;
    background: var(--igen-teal-light);
    color: var(--igen-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.feature-prop-card:hover .feature-prop-icon {
    background: var(--igen-teal);
    color: #ffffff;
    transform: scale(1.1);
}

/* PRICING PACKAGES SECTION */
.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--igen-shadow-lg);
}

.pricing-card.featured-card {
    border-color: var(--igen-teal);
    box-shadow: var(--igen-shadow-md);
    background: linear-gradient(180deg, #ffffff 0%, var(--igen-teal-subtle) 100%);
}

.popular-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--igen-teal);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-subtitle {
    font-size: 0.88rem;
    color: var(--igen-text-muted);
    min-height: 42px;
}

.pricing-price-box {
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--igen-dark);
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    flex-grow: 1;
}

.pricing-feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #475569;
}

.pricing-feature-list li i {
    color: var(--igen-teal);
    font-size: 1.1rem;
}

/* LIVE DESIGN PROGRESS SECTION */
.progress-card-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--igen-shadow-md);
    border: 1px solid #e2e8f0;
}

.progress-timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 40px 0 20px 0;
}

.progress-timeline-line {
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.progress-timeline-line-active {
    position: absolute;
    top: 22px;
    left: 8%;
    width: 40%;
    height: 3px;
    background: var(--igen-teal);
    z-index: 2;
    transition: width 0.8s ease;
}

.timeline-step {
    position: relative;
    z-index: 3;
    text-align: center;
    background: #ffffff;
    padding: 0 4px;
}

.step-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 8px auto;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.timeline-step.completed .step-icon-circle {
    background: var(--igen-teal);
    color: #ffffff;
    border-color: var(--igen-teal);
}

.timeline-step.active .step-icon-circle {
    background: var(--igen-teal);
    color: #ffffff;
    border-color: var(--igen-teal);
    box-shadow: 0 0 0 6px rgba(0, 147, 135, 0.2);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(0, 147, 135, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 147, 135, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 147, 135, 0); }
}

.step-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--igen-text-muted);
}
.timeline-step.active .step-label, .timeline-step.completed .step-label {
    color: var(--igen-dark);
}

/* GUARANTEED DELIVERY BANNER */
.delivery-banner-card {
    background: linear-gradient(135deg, var(--igen-teal) 0%, var(--igen-teal-dark) 100%);
    border-radius: 20px;
    padding: 24px 36px;
    color: #ffffff;
    box-shadow: var(--igen-shadow-md);
}

/* RECENT WORK / PORTFOLIO */
.portfolio-filter-btn {
    border: none;
    background: #f1f5f9;
    color: var(--igen-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 4px;
}

.portfolio-filter-btn.active, .portfolio-filter-btn:hover {
    background: var(--igen-teal);
    color: #ffffff;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--igen-shadow-sm);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--igen-shadow-md);
}

.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 20px;
    text-align: center;
}

.portfolio-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-subtitle {
    font-size: 0.85rem;
    color: var(--igen-text-muted);
}

/* TESTIMONIAL CARDS */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--igen-shadow-sm);
    border: 1px solid #f1f5f9;
    height: 100%;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--igen-teal);
    opacity: 0.25;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--igen-teal);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}

/* FOOTER */
.igen-footer {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-link {
    color: var(--igen-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--igen-teal);
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (max-width: 991px) {
    .browser-mockup-card {
        width: 320px;
    }
    .browser-screen-content {
        height: 180px;
    }
    .hero-3d-grid-container {
        transform: rotateX(10deg) scale(1);
    }
    .progress-timeline-wrapper {
        overflow-x: auto;
        padding-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .browser-mockup-card {
        width: 260px;
    }
    .browser-screen-content {
        height: 140px;
    }
    .pricing-amount {
        font-size: 2.2rem;
    }
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
}
