/* ============================================
   Robotic Service - Promorobot T10
   Main Stylesheet - Apple Premium Dark Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* STRICT APPLE PALETTE - LIGHT MODE */
    --bg-dark: #f5f5f7;
    /* Apple Silver Page Background */
    --bg-card: #ffffff;
    /* White Cards */
    --text-main: #1d1d1f !important;
    /* Force Black */
    --text-header: #1d1d1f !important;
    /* Force Black Headers */
    --text-muted: #86868b;
    /* Apple Subtext */

    --text-muted: #86868b;
    /* Apple Subtext */

    --brand: #2997ff;
    /* Apple Blue (Lighter for Dark Mode) */
    --brand-hover: #0071e3;
    --accent: #2997ff;

    --glass-bg: rgba(28, 28, 30, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    --blur: blur(50px) saturate(180%);

    --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: #000;
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--text-header);
    /* Dynamic Dark Color */
}

strong,
b {
    color: #0071e3;
    /* Apple Blue for Emphasis */
}


h1 {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
}

h2.section__title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #1d1d1f;

}

p.section__lead {
    font-size: clamp(21px, 2vw, 24px);
    color: #86868b;
    margin: 0 auto 60px;
    max-width: 700px;
    text-align: center;
    line-height: 1.4;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    /* More breathing room */
}

/* Navbar (Glass - Light Theme) */
header.site {
    position: sticky;
    top: 0;
    z-index: 1100;
    /* Above Mobile Menu (1050) */
    background: rgba(255, 255, 255, 0.7);
    /* White Glass */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: 36px;
    /* Logo should be dark naturally, or standard */
}

.nav__links {
    display: flex;
    gap: 40px;
    align-items: center;
    /* Fix vertical alignment */
}

.nav__links a {
    font-size: 13px;
    font-weight: 500;
    color: #1d1d1f;
    /* Dark Links */
    text-decoration: none;
    transition: color 0.2s;
}

.nav__links a:hover {
    color: #0071e3;
    /* Apple Blue Hover */
}

/* HAMBURGER MENU - Mobile Only */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1100;
    /* Above overlay */
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #1d1d1f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    /* Solid White Overlay */
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu a {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #0071e3;
}


/* Button Reset */
.btn--primary {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn--primary:hover {
    transform: scale(1.02);
    /* No color change, just subtle lift */
}


/* HERO - Mastered */
/* HERO - Apple Product Reveal Style (Centered) */
.hero {
    min-height: 90vh;
    padding: 100px 0 40px;
    /* Reduced Padding */
    background: radial-gradient(circle at 50% 30%, #ffffff 0%, #f0f0f2 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
}

.hero__content {
    max-width: 900px;
    z-index: 2;
    margin: 0 auto;
}

.hero__content h1 {
    font-size: clamp(56px, 8vw, 96px);
    /* Massive Headline */
    color: #1d1d1f;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero__content h1 strong {
    background: linear-gradient(135deg, #0071e3 0%, #2997ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero__content p {
    font-size: 24px;
    line-height: 1.5;
    color: #515154;
    max-width: 600px;
    margin: 0 auto 50px;
    /* Centered paragraph */
    font-weight: 400;
}

.hero__cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    /* Centered buttons */
}

/* Fixed Hero Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn--primary {
    background: #0071e3;
    /* Apple Blue */
    color: #ffffff !important;
    border: none;
}

.btn--primary:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.25);
}

.btn--ghost {
    background: rgba(0, 0, 0, 0.05);
    /* Subtle grey bg */
    color: #0071e3;
    border: none;
}

.btn--ghost:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0077ed;
    transform: translateY(-2px);
}

.hero__visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -20px;
    /* Pull closer to text */
}

.hero-img {
    width: 100%;
    max-width: 650px;
    /* Larger Hero Image */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.2));
    /* Soft premium shadow */
    animation: hero-ent 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes hero-ent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove old float animation to keep it professional/static or use very subtle breathe */


/* CARDS - Bento Standard */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Strict 3 col */
    gap: 24px;
    margin-top: 40px;
}

/* FEATURE CARDS - APPLE BENTO STYLE (White Theme) */
.feature-card {
    background-color: #ffffff;
    /* White surface */
    border: none;
    border-radius: 30px;
    padding: 50px 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Soft shadow for white */
    overflow: hidden;
    position: relative;
}

.feature-card:hover {
    transform: scale(1.02);
    background-color: #f5f5f7;
    /* Slight grey on hover */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: #1d1d1f;
    /* Dark Title */
}

.feature-card p {
    color: #515154;
    /* Darker Grey Text */
}


.icon-box {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 17px;
    line-height: 1.5;
    color: #86868b;
    margin: 0;
}


/* USE CASES - Poster Style Refined */
/* USE CASES - Standard Apple Cards (Light Theme) */
/* USE CASES - Apple Glass Overlay Style */
/* USE CASES - Apple Premium Poster Style */
.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.use-case-card {
    position: relative;
    height: 600px;
    /* Taller, more impressive */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: #000;
}

.use-case-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.use-case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.use-case-card:hover img {
    transform: scale(1.08);
    /* Subtle zoom */
}

/* Glass Content Overlay */
.use-case-card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.75);
    /* More translucent for depth */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.use-case-card:hover .use-case-card-content {
    transform: translateY(-5px);
    /* Subtle lift on hover */
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque */
}

.use-case-card h3 {
    margin: 0;
    font-size: 28px;
    /* Larger title */
    color: #1d1d1f;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.use-case-card p {
    margin: 0;
    font-size: 17px;
    color: #3a3a3c;
    line-height: 1.5;
    font-weight: 500;
}

.use-case-card::after {
    display: none;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
        /* Hide Desktop Nav */
    }

    .hamburger {
        display: flex;
        /* Show Hamburger */
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__cta {
        justify-content: center;
    }

    .use-case-card {
        height: 450px;
    }

    .use-case-card h3 {
        font-size: 32px;
    }
}

/* Remove stray effects */
.feature-card::before,
.use-case-card::before,
.feature-card::after,
.use-case-card::after {
    /* Keep ::after for use-case-card (gradient) but hide others */
}

.feature-card::before,
.feature-card::after {
    display: none;
}

/* COMPARISON SECTION - APPLE STYLE */
/* COMPARISON - VISUAL DOMINANCE */
.mobile-vs-static {
    padding: 120px 0;
    background: #f5f5f7;
    overflow: visible;
    /* Allow pop-out */
}

.comparison-visual-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.comparison-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* THE LOSER (Static) */
.comparison-card.bad {
    transform: scale(0.9);
    filter: grayscale(100%);
    opacity: 0.7;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-card.bad:hover {
    filter: grayscale(0%);
    /* Color on hover only */
    opacity: 1;
    transform: scale(0.95);
}

.comparison-card.bad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* THE WINNER (Innovation) */
.comparison-card.good {
    transform: scale(1.05);
    /* Physically larger */
    box-shadow: 0 30px 80px rgba(0, 113, 227, 0.25);
    /* Blue Glow */
    border: 4px solid #fff;
    /* Premium border */
    z-index: 10;
}

.comparison-card.good:hover {
    transform: scale(1.08);
    box-shadow: 0 40px 100px rgba(0, 113, 227, 0.4);
}

.comparison-card.good img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAYS */
.comparison-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    color: white;
    text-align: left;
}

.comparison-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Color Differentiation for Titles */
.comparison-card.bad h3 {
    color: #ffffff;
    /* White as requested */
}

.comparison-card.good h3 {
    color: #2997ff;
    /* Vibrant Blue for the "New Way" */
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.comparison-card.bad li {
    color: #ffffff;
    /* White as requested */
}

.comparison-card.good li {
    color: #ffffff;
    /* Bright white text */
}

/* CHECKMARKS FOR WINNER */
.check-list li::before {
    content: '✓ ';
    color: #25D366;
    /* Green Check */
    font-weight: 800;
    margin-right: 8px;
}

/* Badge for Promorobot */
.promo-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Clean up empty rulesets lint */
/* Removed stray empty media query braces from previous edits if any */

/* Dark Premium Contact Form -> Refactored to Light Theme */
#contatti {
    position: relative;
    padding: 120px 0 100px;
    background: #ffffff;
    /* Updated to White */
    overflow: hidden;
}

/* Background Ambient Glow - Softer */
#contatti::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.05) 0%, transparent 70%);
    /* Lighter glow */
    filter: blur(120px);
    z-index: 0;
}

#contatti .container {
    position: relative;
    z-index: 1;
    display: flex;
    /* Changed from Grid to Flex as requested */
    width: 100%;
    justify-content: space-between;
    /* Space out text and form */
    align-items: center;
    /* Vertically center */
    gap: 80px;
}

#contatti h2 {
    font-size: 56px;
    /* Color handled via inline styles for specific dual-tone */
    text-align: left;
    margin-bottom: 24px;
    background: none;
    -webkit-text-fill-color: initial;
    /* Reset */
}

#contatti p.section__lead {
    text-align: left;
    color: #515154;
    /* Dark Grey */
    font-size: 21px;
    margin-bottom: 40px;
}

/* Form Container - Dark Surface but distinct */
/* Form Container - White Theme */
form#demoForm {
    background: #ffffff;
    /* White Request */
    backdrop-filter: none;
    border: none;
    padding: 48px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    /* Softer shadow */
}

form#demoForm h3,
form#demoForm label {
    color: #1d1d1f;
    /* Dark Text */
}

/* Input Fields Adjustments for White Background */
.form-group input,
.form-group textarea,
.form-group select {
    background: #f5f5f7;
    /* Light Grey Input Bg */
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: #fff;
    border-color: #0071e3;
}


/* Inputs - Apple Style */
.form-group {
    margin-bottom: 24px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

input,
textarea {
    background: #3a3a3c;
    /* Removed !important */
    border: 1px solid transparent;
    /* Removed !important */
    color: #fff;
    /* Removed !important */
    font-size: 17px;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

input:focus,
textarea:focus {
    background: #48484a;
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.25);
    outline: none;
    transform: scale(1.01);
}

/* LIGHT THEME INPUT OVERRIDES */
#contatti input,
#contatti textarea {
    background: #ffffff !important;
    border: 1px solid #d2d2d7 !important;
    color: #1d1d1f !important;
}

#contatti input:focus,
#contatti textarea:focus {
    background: #ffffff !important;
    border-color: #0071e3 !important;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15) !important;
}

#contatti ::placeholder {
    color: #86868b !important;
}

::placeholder {
    color: #98989d !important;
    /* Lighter placeholder */
    font-weight: 400;
}

/* Footer Contrast */
footer {
    background: #ffffff;
    /* White Footer */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer h3 {
    color: #1d1d1f;
}


footer a {
    color: #86868b;
    transition: color 0.2s;
}

footer a:hover {
    color: #2997ff;
    /* Brighter Blue on hover */
}

/* WhatsApp Icon */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* FOOTER - Clean Apple Style - Light Theme */
footer {
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Updated to 3 columns */
    align-items: start;
    gap: 40px;
}

.footer__brand {
    grid-column: span 1;
}

.footer__logo {
    width: 140px;
    margin-bottom: 20px;
    filter: none;
    /* Remove invert - logo should be dark on white */
}

.footer__brand p {
    color: #515154;
    font-size: 14px;
    line-height: 1.6;
}

.footer__links h3,
.footer__contacts h3 {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer__links ul {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: #515154;
    font-size: 14px;
    transition: color 0.2s;
    text-decoration: none;
}

.footer__links a:hover {
    color: #0071e3;
}

.footer__contacts p {
    color: #515154;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer__contacts a {
    color: #0071e3;
    text-decoration: none;
}

/* WhatsApp Btn - Already styled earlier, just ensuring specificity */
.whatsapp-btn {
    margin-top: 16px;
}

.footer__bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #86868b;
    font-size: 13px;
}

/* Mobile Footer adjustments */
@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer__brand,
    .footer__links,
    .footer__contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 120px 0 60px;
        /* Tighter hero on mobile */
        text-align: center;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__content h1 {
        font-size: 42px;
        /* Adjusted for mobile */
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
        /* Image first on mobile? User didn't specify, but often better. Keeping text first for now as per design flows usually.*/
        /* Actually, let's keep text first for SEO/Message priority */
        margin-top: 20px;
    }

    .hero-img {
        max-height: 400px;
        /* Smaller image on mobile */
    }

    .features-grid {
        gap: 20px;
        /* Tighter grid */
        margin-top: 40px;
    }

    .feature-card,
    .use-case-card {
        padding: 30px 24px;
        /* Less padding on cards */
    }

    h2.section__title {
        font-size: 32px;
        /* Smaller section titles */
        margin-bottom: 20px;
    }

    p.section__lead {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .marquee-container {
        gap: 15px;
    }

    .marquee-container img {
        height: 200px !important;
        /* Smaller gallery images */
    }

    /* Comparison Grid Mobile */
    .comparison-visual-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .comparison-card {
        height: 400px;
        /* Increased height for better mobile display */
    }

    .use-case-card {
        height: 400px;
        /* Slightly shorter on mobile */
    }

    .mobile-vs-static {
        padding: 60px 0;
    }

    #promorobot-intro {
        padding: 80px 0;
    }

    #promorobot-intro h2.section__title {
        font-size: 36px !important;
    }
}

/* --- SPACING & CONSISTENCY POLISH --- */

/* Vertical Rhythm - Tighter, no useless gaps */
section {
    padding: 80px 0;
    /* Standardized Section Padding */
}

/* Specific tighter sections */
#promorobot-intro {
    padding: 100px 0;
    /* Featured section gets slightly more */
}

/* Closing brace for media query */

.gallery-strip {
    padding: 40px 0 !important;
    /* Tighter gallery */
}

/* Container Consistency */
.container {
    padding: 0 24px;
    /* Robust horizontal padding */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Remove bottom margin from last elements in cards */
.feature-card p:last-child,
.use-case-card p:last-child {
    margin-bottom: 0;
}

/* MARQUEE INFINITE SLIDER */
.gallery-strip {
    padding: 60px 0;
    overflow: hidden;
    background: #ffffff;
    /* Clean White Background */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-container {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 80s linear infinite;
    /* Slower for more images */
}

/* Pause on hover for better UX */
.marquee-container:hover {
    animation-play-state: paused;
}

.marquee-container img {
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.marquee-container img:hover {
    transform: scale(1.05);
    z-index: 10;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move -50% because we will duplicate the content exactly once */
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .marquee-container img {
        height: 250px;
    }
}

/* MOBILE NAV TOGGLE */
@media (max-width: 900px) {
    .nav__links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}