/* Global Styles */
:root {
    --primary-color: #1A237E; /* Navy */
    --secondary-color: #3F51B5; /* Indigo */
    --accent-color: #FF6B35; /* Orange */
    --background-white: #FFFFFF;
    --background-light: #FAFAFA;
    --background-dark: #263238;
    --text-color: #263238;
    --text-light: #546E7A;
    --white: #ffffff;
    --border-radius: 0px; /* Sharp edges */
    --box-shadow: 0 0 0 2px #E0E0E0;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font-mono: 'Courier New', monospace;
    --font-sans: 'Arial', sans-serif;
    /* Gradient used in several components */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.4;
    color: var(--text-color);
    background: var(--background-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-mono);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    display: block;
    color: var(--primary-color);
    background: var(--background-white);
    padding: 20px;
    border-left: 8px solid var(--accent-color);
    text-align: left;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.price .period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid var(--primary-color);
    position: relative;
    font-size: 0.9rem;
    text-decoration: none;
    font-family: var(--font-mono);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.btn-secondary {
    background: var(--background-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background-white);
    border-bottom: 4px solid var(--primary-color);
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
}

header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, var(--background-white) 0%, var(--background-light) 50%, var(--background-white) 100%);
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
    font-family: var(--font-mono);
    font-weight: 900;
    background: var(--background-white);
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
}

nav ul {
    display: flex;
    gap: 0;
    align-items: center;
    background: var(--primary-color);
    padding: 0;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
    display: block;
    transition: var(--transition);
    border-right: 1px solid rgba(255,255,255,0.2);
}

nav ul li a:hover {
    background: var(--accent-color);
    color: var(--white);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--background-white);
    padding: 120px 0 80px;
    text-align: left;
    position: relative;
    overflow: hidden;
    border-bottom: 8px solid var(--primary-color);
}

.hero::before {
    content: 'ENTERPRISE_DASHBOARD';
    position: absolute;
    top: 80px;
    left: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--background-light);
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeIn 1.5s ease 0.5s forwards;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.1;
    font-family: var(--font-mono);
    background: var(--background-light);
    padding: 30px;
    border-left: 12px solid var(--accent-color);
    display: inline-block;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(248, 232, 232, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Services wrapper with side video showcase */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 540px); /* service grid grows, video scales within a sensible range */
    gap: 40px;
    align-items: start;
    grid-auto-flow: row dense; /* allow cards to fill gaps below the video */
    position: relative;
}

@media (min-width: 1400px) {
    .services-wrapper {
        grid-template-columns: 1fr minmax(420px, 640px);
    }
}

@media (max-width: 1200px) {
    .services-wrapper {
        grid-template-columns: 1fr minmax(320px, 480px);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .services-wrapper {
        grid-template-columns: 1fr; /* stack */
    }
    .video-showcase {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Snake-like roadmap fill: at desktop, let service cards flow beneath the video column */
@media (min-width: 992px) {
    /* Promote service cards into the wrapper grid without changing HTML */
    .services-grid { display: contents; }

    /* Place the video at the top of column 2 */
    .services-wrapper .video-showcase {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        z-index: 2;
    }

    /* Cards auto-flow across columns; disable old connector dots to avoid misalignment */
    .services-wrapper .service-card::after { content: none !important; }
}

.service-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 3px solid var(--primary-color);
    position: relative;
    /* Reserve space below the SERVICE_MODULE label and tighten top whitespace */
    padding-top: 28px;
    will-change: transform;
}

.service-card::before {
    content: none;
}

.service-card h3 {
    margin-top: 0;
    padding: 0 40px 10px 20px; /* Add padding to the right to avoid icon */
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
}

.service-card p {
    padding: 20px;
    font-family: var(--font-sans);
    line-height: 1.6;
}

.service-icon {
    position: absolute;
    top: 8px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 164, 180, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover, .feature:hover {
    border-color: var(--accent-color);
    transform: translateX(10px);
}

/* This rule is being removed as it creates a duplicate, large icon */
/*
.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite reverse;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}
*/

/* Compact icon layout for Services cards: small badge at top-right,
   no extra bottom margin so headings sit closer */
.services .service-card .service-icon {
    position: absolute;
    top: 8px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 0;
    margin: 0; /* remove gap above heading */
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    animation: none;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Video Showcase */
.video-showcase {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: fit-content;
}

.video-showcase::before {
    content: none;
}

.video-frame {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0;
    padding: 3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin: 50px auto 20px auto;
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
    background: #000;
}

.video-heading {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 0;
}

.video-caption {
    font-size: 1rem;
    color: var(--text-color);
    max-width: 90%;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-sans);
}

@media (max-width: 576px) {
    .video-showcase {
        padding: 25px 20px 30px;
    }
    .video-heading {
        font-size: 1rem;
    }
    .video-frame {
        margin-bottom: 20px;
        padding: 4px;
    }
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: transparent;
    position: relative;
}
/* Ensure pricing CTAs align consistently at the bottom and full width */
.pricing-body .btn-primary,
.pricing-body .btn-secondary {
    margin-top: auto;
    align-self: stretch; /* consistent width across cards */
    display: block;
    width: 100%;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: stretch; /* ensure equal height per row */
}

.pricing-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 3px solid var(--primary-color);
    position: relative;
    will-change: transform;
    height: 100%; /* stretch to row height */
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: 'PRICING_TIER';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Remove PRICING_TIER label for Basic and Enterprise (non-featured) */
.pricing-card:not(.featured)::before {
    content: none;
    display: none;
}

.pricing-card.featured {
    /* no default scale so buttons align across cards */
    border: 2px solid var(--accent-color);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    pointer-events: none;
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
}

.pricing-header {
    margin-top: 40px;
    padding: 20px;
    background: var(--background-light);
    border-bottom: 3px solid var(--accent-color);
}

.pricing-header h3 {
    margin: 0;
    color: var(--primary-color);
    text-align: center;
}

/* Center the Recommended tag under the plan title */
.pricing-header .tag {
    display: block;
    text-align: center;
    margin-top: 8px;
}

.pricing-body {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border: 2px solid var(--primary-color);
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-mono);
    display: block;
}

.price .custom {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-mono);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.price .period {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 5px;
    opacity: 0.8;
}

.features {
    margin-bottom: 40px;
    text-align: left;
}

.features li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-color);
}

.features li i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tech-stack {
    margin-top: 30px;
}

.tech-stack h4 {
    margin-bottom: 15px;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-icons span {
    background-color: var(--white);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: var(--box-shadow);
}

.tech-icons i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    will-change: transform;
    flex-basis: 250px;
    flex-grow: 1;
}

/* Progressive rendering for off-screen sections */
.services, .pricing, .features, .resources {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

/* Light-weight reveal animations (GPU accelerated) */
.js .services .service-card,
.js .pricing .pricing-card,
.js .features .feature {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .services .service-card.in-view,
.js .pricing .pricing-card.in-view,
.js .features .feature.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .js .services .service-card,
    .js .pricing .pricing-card,
    .js .features .feature,
    .service-card,
    .pricing-card,
    .feature {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--background-light);
}

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

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-content h4 {
    margin-bottom: 5px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #1A237E; /* Dark Blue */
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo p {
    color: #BDBDBD; /* Light Gray */
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #BDBDBD; /* Light Gray */
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #BDBDBD; /* Light Gray */
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    nav ul {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    /* Center Our Services cards on mobile */
    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center; /* center cards horizontally */
        gap: 24px;
        padding: 0 24px; /* mobile gutter */
    }

    .service-card {
        width: 100%;
        max-width: 360px; /* visually centered with side gutters */
        margin: 0; /* centered by align-items */
    }

    /* Make service icons flow above headings on small screens to avoid overlap */
    .services .service-card .service-icon {
        position: relative; /* remove absolute positioning */
        top: auto;
        right: auto;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        margin: 0 auto 12px auto; /* place above heading */
        background: var(--gradient-primary);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .service-card h3 {
        padding-right: 20px; /* ensure heading doesn't collide when layout changes */
        text-align: center;
    }
    
    /* Center features grid on mobile and prevent overflow */
    .features-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 24px;
        justify-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
}
