/* Robot Product Page Styles */

/* Product Hero - Matching Home Page Style */
.product-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.9;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.2);
    display: block;
}

.product-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-welcome {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-brand {
    display: block;
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.price-label {
    font-size: 1.125rem;
    color: #86868b;
    font-weight: 400;
}

.price-value {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.price-currency {
    font-size: 1.5rem;
    color: #86868b;
    font-weight: 400;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-cta .btn {
    min-width: 200px;
    font-size: 17px;
    padding: 14px 30px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-cta .btn-primary,
.hero-cta .btn-minimal {
    background: white;
    color: black;
    border: none;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn-primary:hover,
.hero-cta .btn-minimal:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Sticky Product Showcase */
.product-showcase {
    min-height: 100vh;
    position: relative;
    margin-top: 0;
}

.product-container {
    display: flex;
    max-width: 100%;
    margin: 0;
    gap: 0;
    padding: 0;
}

/* Sticky Robot Visual - Exactly 50% width */
.product-visual {
    flex: 0 0 50%;
    width: 50%;
    position: sticky;
    top: 72px; /* Height of navbar */
    height: calc(100vh - 72px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    -webkit-transform: translateZ(0); /* iOS GPU acceleration */
    transform: translateZ(0);
    will-change: transform; /* Hint browser for optimization */
}

.robot-display {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transform: none !important; /* Prevent any transform */
}

.robot-video {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1; /* Force square aspect ratio */
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateZ(0); /* iOS GPU acceleration */
    transform: translateZ(0);
    -webkit-backface-visibility: hidden; /* Fix iOS flickering */
    backface-visibility: hidden;
}

.robot-personality-badge {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.badge-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #1a1a1a;
}


/* Scrolling Content - Exactly 50% width */
.product-content {
    flex: 0 0 50%;
    width: 50%;
    padding: 60px 60px 80px 60px;
    max-width: 800px;
}

.content-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.section-inner {
    max-width: 600px;
}

.contact-section .section-inner {
    max-width: none !important;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Capability List */
.capability-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 2rem 0;
}

.capability {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.capability i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.capability h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.capability p {
    font-size: 0.95rem;
    color: #666;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonial */
.testimonial {
    background: white;
    padding: 24px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 2rem;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

/* Performance Metrics */
.performance-metrics {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-top: 2rem;
}

.performance-metrics h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.875rem;
    color: #666;
}

/* Security Note */
.security-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    margin-top: 2rem;
}

.security-note i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.security-note p {
    color: #92400e;
    font-size: 0.95rem;
}

/* Education Stats */
.education-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.edu-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.edu-stat i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 2rem;
}

.pricing-main {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
}

.price-display {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.price-starting {
    display: block;
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
}

.whats-included h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.included-list {
    list-style: none;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #333;
}

.included-list i {
    color: #10b981;
}

.pricing-addons h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-name {
    font-weight: 500;
    color: #1a1a1a;
}

.addon-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-section {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 24px;
    margin-top: 80px;
}

.contact-section .section-inner {
    max-width: 100%;
    width: 100%;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    width: 100%;
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 67, 140, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.contact-preferences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.form-trust p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #666;
}

.form-trust i {
    color: var(--primary-color);
}

/* Trust Section */
.trust-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.trust-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.security-badges .badge {
    padding: 8px 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Mobile Styles */
@media (max-width: 768px) {
    .product-hero {
        padding-top: 100px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-welcome {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
}

/* Responsive Design - Large Desktop */
@media (max-width: 1440px) {
    .product-content {
        padding: 50px;
    }

    .robot-video {
        max-width: 550px;
    }
}

/* Desktop to Tablet Transition */
@media (max-width: 1200px) {
    /* Keep 50/50 split on medium screens */
    .product-visual {
        flex: 0 0 50%;
        width: 50%;
    }

    .product-content {
        flex: 0 0 50%;
        width: 50%;
        padding: 40px;
    }

    .robot-video {
        max-width: 450px;
    }

    .content-section h2 {
        font-size: 2.2rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }
}


/* Hide PiP controls on desktop */
@media (min-width: 1025px) {
    .pip-controls {
        display: none !important;
    }
}

/* Larger PiP for tablets (769px-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-visual {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 200px !important;
        height: 200px !important;
        aspect-ratio: 1/1 !important;
        -webkit-transform: translateZ(0) !important; /* iOS GPU acceleration */
        transform: translateZ(0) !important;
        will-change: transform !important; /* Hint browser for optimization */
    }

    .product-visual.expanded {
        width: 350px !important;
        height: 350px !important;
    }

    .product-visual.minimized {
        width: 100px !important;
        height: 100px !important;
    }

    .robot-display {
        padding: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .robot-video {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1/1 !important;
        object-fit: cover !important;
        max-width: none !important;
        max-height: none !important;
    }
}

/* Tablets - Switch to PiP layout */
@media (max-width: 1024px) {
    .product-container {
        flex-direction: column;
        position: relative;
    }

    .product-visual {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 200px;
        height: 200px;
        aspect-ratio: 1/1;
        flex: none;
        margin: 0;
        z-index: 1000;
        background: transparent;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: move;
        display: none; /* Hidden by default, JS will show when needed */
        opacity: 0;
        transform: scale(0.8);
    }

    .product-visual.expanded {
        width: 350px;
        height: 350px;
        aspect-ratio: 1/1;
    }

    .product-visual.minimized {
        width: 100px;
        height: 100px;
        aspect-ratio: 1/1;
    }

    .product-content {
        flex: none;
        width: 100%;
        padding: 50px 40px;
        max-width: 900px;
        margin: 0 auto;
        min-height: 100vh;
    }

    .robot-display {
        padding: 0;
        height: 100%;
        width: 100%;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.9);
        overflow: hidden;
        position: relative;
    }

    .robot-video {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        aspect-ratio: 1/1;
        border-radius: 14px;
    }

    .robot-personality-badge {
        position: absolute;
        bottom: 3px;
        left: 50%;
        transform: translateX(-50%);
        padding: 3px 10px;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        min-width: auto;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .robot-personality-badge .badge-icon {
        font-size: 0.7rem;
        margin-right: 4px;
    }

    .robot-personality-badge .badge-text {
        font-size: 0.7rem;
        font-weight: 500;
    }

    /* PiP Controls */
    .pip-controls {
        position: absolute;
        top: 8px;
        right: 8px;
        display: flex;
        gap: 4px;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .product-visual:hover .pip-controls {
        opacity: 1;
    }

    .pip-btn {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #333;
        transition: all 0.2s;
    }

    .pip-btn:hover {
        background: white;
        transform: scale(1.1);
    }

    /* PiP size states */
    .product-visual.minimized {
        width: 80px !important;
        height: 80px !important;
    }

    .product-visual.minimized .pip-controls {
        opacity: 0;
    }

    .product-visual.minimized:hover .pip-controls {
        opacity: 1;
    }

    .product-visual.expanded {
        width: 300px !important;
        height: 300px !important;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .contact-preferences {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-section {
        padding: 40px;
        margin: 40px 0;
    }

    .contact-section .section-inner {
        max-width: 100%;
        width: 100%;
    }

    .contact-form {
        padding: 30px;
        width: 100%;
    }
}

/* Small Tablets */
@media (max-width: 834px) {
    /* PiP stays square - inherits from 1024px breakpoint */

    .product-content {
        padding: 40px 35px;
        max-width: 100%;
    }

    .contact-section {
        padding: 30px 20px;
        margin: 30px 0;
        border-radius: 16px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .contact-preferences {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .product-hero {
        padding: 100px 0 60px;
        min-height: 100vh;
    }

    .product-showcase {
        margin-top: 0;
    }

    /* Smaller PiP on mobile */
    .product-visual {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 150px !important;
        height: 150px !important;
        top: auto;
        aspect-ratio: 1/1 !important;
        flex: none !important;
        margin: 0 !important;
        z-index: 1000 !important;
        background: transparent !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: move !important;
        -webkit-transform: translateZ(0) !important; /* iOS GPU acceleration */
        transform: translateZ(0) !important;
        will-change: transform !important; /* Hint browser for optimization */
    }

    .product-visual.expanded {
        width: 300px !important;
        height: 300px !important;
    }

    .product-visual.minimized {
        width: 80px !important;
        height: 80px !important;
    }

    .robot-display {
        padding: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .robot-video {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        aspect-ratio: 1/1 !important;
        background-color: #f0f0f0;
        background-image: url('../images/featured/robert.jpg');
        background-size: cover;
        background-position: center;
    }

    /* Move badge closer to bottom on mobile PiP */
    .robot-personality-badge {
        bottom: 2px !important;
        padding: 2px 8px !important;
        font-size: 0.7rem !important;
    }

    .product-content {
        padding: 30px 25px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .capability h4 {
        font-size: 1.05rem;
    }

    .stats-row {
        gap: 15px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-preferences {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 20px 0;
        border-radius: 0;
        margin: 20px 0;
        background: transparent;
    }

    .contact-form {
        padding: 20px;
        border-radius: 12px;
    }

    .form-section h3 {
        font-size: 1.1rem;
    }

    .form-trust {
        flex-direction: column;
        gap: 12px;
    }
}

/* Large Mobile */
@media (max-width: 640px) {
    /* PiP stays same size as tablet */

    .product-content {
        padding: 25px 20px;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .lead-text {
        font-size: 1rem;
    }
}

/* Medium Mobile */
@media (max-width: 540px) {
    .product-visual {
        height: 50vh; /* Back to 50vh for consistency */
    }

    .robot-display {
        padding: 20px;
    }

    .robot-video {
        max-width: 240px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* PiP stays same size as tablet */

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .content-section {
        margin-bottom: 60px;
    }

    .section-inner {
        max-width: 100%;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .product-visual {
        height: 45vh;
    }

    .robot-video {
        max-width: 200px;
    }

    .robot-personality-badge {
        bottom: 30px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .product-content {
        padding: 20px 15px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .product-visual {
        height: 100vh;
    }

    .product-hero {
        min-height: 100vh;
    }

    .robot-video {
        max-height: 70vh;
    }
}