:root {

    /* Color Palette */

    --bg-color: #f2f2f2;

    --text-color: #1a1a1a;

    --text-muted: #666666;

    --accent-color: #6366f1;

    --accent-hover: #4f46e5;

    --white: #ffffff;

    --border-color: rgba(0, 0, 0, 0.05);



    /* Layout */

    --container-width: 1200px;

    --header-height: 80px;



    /* Spacing */

    --section-padding: 100px 0;



    /* Border Radius */

    --radius-sm: 8px;

    --radius-md: 16px;

    --radius-lg: 24px;

    --radius-full: 9999px;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Inter', system-ui, -apple-system, sans-serif;

    background-color: var(--bg-color);

    color: var(--text-color);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

}



h1,

h2,

h3,

h4,

h5,

h6 {

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.02em;

}



a {

    text-decoration: none;

    color: inherit;

    transition: all 0.2s ease;

}



ul {

    list-style: none;

}



img {

    max-width: 100%;

    display: block;

}



/* Utilities */

.container {

    width: 90%;

    max-width: var(--container-width);

    margin: 0 auto;

    padding: 0 20px;

}



.section {

    padding: var(--section-padding);

}



.text-center {

    text-align: center;

}



.text-accent {

    color: var(--accent-color);

}



/* Buttons */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 24px;

    border-radius: var(--radius-md);

    font-weight: 600;

    cursor: pointer;

    font-size: 1rem;

    border: none;

    transition: transform 0.2s ease, box-shadow 0.2s ease;

}



.btn:hover {

    transform: translateY(-2px);

}



.btn-primary {

    background-color: var(--accent-color);

    color: var(--white);

    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);

}



.btn-primary:hover {

    background-color: var(--accent-hover);

    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);

}



.btn-secondary {

    background-color: var(--white);

    color: var(--text-color);

    border: 1px solid rgba(0, 0, 0, 0.1);

}



/* Header Styles */

/* Header Styles */

.header {

    position: fixed;

    top: 24px;

    left: 50%;

    transform: translateX(-50%);

    width: 1360px;

    /* Fixed width as requested */

    max-width: calc(100% - 32px);

    /* Responsive constraint */

    height: 64px;

    background: rgba(242, 242, 242, 0.6);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    z-index: 1000;

    border-radius: 9999px;

    padding: 6px;

    box-shadow:

        0 4px 6px -1px rgba(0, 0, 0, 0.05),

        0 10px 15px -3px rgba(0, 0, 0, 0.05),

        inset 0 0 0 1px rgba(255, 255, 255, 0.5);

    display: flex;

    align-items: center;

    transition: width 0.3s ease, max-width 0.3s ease;

    /* Smooth transition */

}



.header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    gap: 40px;

    padding: 0 12px;

    /* Increased padding slightly */

}



/* Logo Styles */

.logo {

    display: flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    flex-shrink: 0;

    /* Prevent Logo Squishing */

}



.logo-text {

    font-family: 'Inter', sans-serif;

    font-weight: 700;

    font-size: 1.25rem;

    letter-spacing: -0.02em;

    display: flex;

    color: var(--text-color);

    white-space: nowrap;

    /* Prevent Text Wrap */

}



.logo-icon {

    flex-shrink: 0;

    height: 40px;

    width: auto;

    object-fit: contain;

}



/* Visibility Logic for Logo Text */

@media (min-width: 831px) and (max-width: 1440px) {



    /* Hide logo text on Laptop/Tablet screens to save space */

    .logo-text {

        display: none;

    }

}



/* Note: Mobile visibility is forced in the mobile media query later */



.logo-icon-svg {

    display: block;

    transition: transform 0.2s ease;

}



.logo:hover .logo-icon-svg {

    transform: scale(1.05);

}



.visually-hidden-desktop {

    display: none;

}



.nav-desktop .nav-list {

    display: flex;

    gap: 32px;

    margin: 0;

    padding: 0;

}



.nav-desktop a {

    font-weight: 500;

    font-size: 0.95rem;

    color: var(--text-color);

    text-decoration: none;

    opacity: 0.8;

    white-space: nowrap;

    /* Prevent Links Wrap */

}



.nav-desktop a:hover {

    color: var(--accent-color);

    opacity: 1;

}



/* CTA Button Styles */

.btn-cta {

    border-radius: 100px;

    padding: 0 24px;

    height: 52px;

    display: flex;

    align-items: center;

    background-color: var(--accent-color);

    color: white;

    transition: all 0.2s ease;

    gap: 8px;

    flex-shrink: 0;

    /* Prevent Button Squishing */

}



.btn-cta .btn-icon {

    display: none;

    /* Hidden by default (text mode) */

}



.btn-cta:hover {

    background-color: var(--accent-hover);

    transform: translateY(-1px);

}





.menu-toggle {

    display: none;

    flex-direction: column;

    justify-content: space-between;

    width: 24px;

    height: 18px;

    background: none;

    border: none;

    cursor: pointer;

    margin-right: 12px;

}



.menu-toggle .bar {

    width: 100%;

    height: 2px;

    background-color: var(--text-color);

    border-radius: 2px;

}



/* Hero Section Adjustment for new header height/position */

.hero {

    min-height: 90vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding-top: 140px;

    /* Increased padding */

    text-align: center;

}



.hero-container {

    display: flex;

    flex-direction: column;

    align-items: center;

    max-width: 800px;

}



.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 6px 12px;

    background: #ffffff;

    border-radius: var(--radius-full);

    font-size: 0.875rem;

    font-weight: 500;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

    margin-bottom: 24px;

    color: var(--text-muted);

    animation: pulse-blue 2s infinite;

}



.hero-title {

    font-size: 3.5rem;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 24px;

    letter-spacing: -0.03em;

}



.hero-subtitle {

    font-size: 1.25rem;

    color: var(--text-muted);

    margin-bottom: 40px;

    max-width: 600px;

    line-height: 1.6;

}



.hero-cta-group {

    display: flex;

    gap: 16px;

    margin-bottom: 5px;

}



.social-proof {

    display: flex;

    justify-content: center;

    width: 100%;

    margin-top: 16px;

}



.social-proof-img {

    width: 500px;

    /* Specific width as requested */

    height: auto;

    object-fit: contain;

    opacity: 0.9;

}



/* General Section Header */

.section-header {

    max-width: 600px;

    margin: 0 auto 60px;

}



.section-title {

    font-size: 2.5rem;

    font-weight: 700;

    margin-bottom: 16px;

}



.section-subtitle {

    font-size: 1.1rem;

    color: var(--text-muted);

}



/* Process Section */

.process-steps {

    display: flex;

    flex-direction: column;

    gap: 80px;

}



.step {

    display: flex;

    flex-direction: column;

    gap: 40px;

}



.step-header {

    text-align: center;

    max-width: 800px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;

}



.step-header-content {

    width: 100%;

}



.step-header h3 {

    font-size: 2rem;

    margin-bottom: 16px;

}



.step-header p {

    color: var(--text-muted);

    font-size: 1.125rem;

}



.step-body-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    align-items: start;

    margin-right: -80px;

}



.step-number {

    position: static;

    transform: none;

    font-size: 3rem;

    font-weight: 800;

    color: var(--accent-color);

    opacity: 0.2;

    line-height: 1;

    margin-bottom: 16px;

}



.step-content h3 {

    font-size: 1.75rem;

    margin-bottom: 16px;

}



.step-content p {

    color: var(--text-muted);

    font-size: 1.1rem;

}



.step-visual {

    background: #ffffff;

    border-radius: var(--radius-lg);

    padding: 5px;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);

    width: 600px;



}



.visual-placeholder {

    width: 100%;

    height: 100%;

    /* Fill container */

    min-height: 400px;

    /* Taller visual for features */

    background: #f8f8f8;

    border-radius: var(--radius-md);

}



/* Feature List Styles */

.feature-list {

    margin-top: 32px;

    display: flex;

    flex-direction: column;

    gap: 24px;

}



.feature-item {

    display: flex;

    gap: 16px;

    align-items: flex-start;

}



.feature-icon {

    color: var(--accent-color);

    /* Primary accent checkmark */

    flex-shrink: 0;

    margin-top: 2px;

}



.feature-item strong {

    display: block;

    color: var(--accent-color);

    /* Primary accent title */

    font-size: 1.1rem;

    margin-bottom: 4px;

}



.feature-item p {

    font-size: 1rem;

    line-height: 1.5;

    color: var(--text-muted);

    margin: 0;

}



/* Services Section */

.services-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 32px;

}



.service-card {

    background: #ffffff;

    padding: 40px;

    border-radius: var(--radius-lg);

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border: 1px solid rgba(0, 0, 0, 0.03);

}



.service-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);

}



.feature-visual-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: var(--radius-md);

    background: #f8f8f8;

    /* Fallback */

}



.icon-box {

    width: 56px;

    height: 56px;

    background: #f0f1ff;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    margin-bottom: 24px;

    color: var(--accent-color);

}



.icon-box img {

    width: 60%;

    height: 60%;

    object-fit: contain;

}



.service-card h3 {

    font-size: 1.5rem;

    margin-bottom: 12px;

}



.service-card p {

    color: var(--text-muted);

    line-height: 1.6;

}



/* Benefits Section */

.benefits-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 32px;

}



.benefit-card {

    display: flex;

    align-items: flex-start;

    gap: 24px;

    padding: 32px;

    background: #ffffff;

    border-radius: var(--radius-lg);

    border: 1px solid rgba(0, 0, 0, 0.03);

    text-align: left;

    margin-bottom: -15px;

}



.benefits-grid .benefit-card:last-child {

    grid-column: 1 / -1;

}



.benefit-card .icon-box {

    margin-bottom: 0;

    flex-shrink: 0;

}



.benefit-card h3 {

    font-size: 1.25rem;

    margin-bottom: 6px;

    color: var(--text-color);

}



.benefit-card p {

    color: var(--text-muted);

    margin-bottom: -15px;

}



/* Pricing Section */

.pricing-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 32px;

    max-width: 1200px;

    margin: 0 auto;

    align-items: start;

}



.pricing-card {

    background: #ffffff;

    padding: 40px;

    border-radius: var(--radius-lg);

    border: 1px solid rgba(0, 0, 0, 0.05);

    display: flex;

    flex-direction: column;

    gap: 32px;

}



.pricing-card.featured {

    background: #fcfcfc;

    border: 1px solid var(--accent-color);

    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.1);

    position: relative;

    transform: scale(1.02);

}



/* Other Services Section */

.other-services-grid {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.other-service-card {

    display: flex;

    align-items: center;

    padding: 24px;

    background: #ffffff;

    border-radius: var(--radius-lg);

    border: 1px solid rgba(0, 0, 0, 0.03);

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);

    text-align: left;

    gap: 24px;

    transition: transform 0.2s ease, box-shadow 0.2s ease;

}



.other-service-card:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);

}



.os-icon-box {

    width: 48px;

    height: 48px;

    background: #f0f1ff;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.25rem;

    color: var(--accent-color);

    flex-shrink: 0;

}



.os-icon-box svg {

    width: 24px;

    height: 24px;

    stroke: currentColor;

    stroke-width: 2;

}



.os-content h4 {

    font-size: 1.125rem;

    margin-bottom: 4px;

    color: var(--text-color);

    font-weight: 700;

}



.os-content p {

    color: var(--text-muted);

    font-size: 0.95rem;

    margin: 0;

    line-height: 1.5;

}



.plan-header h3 {

    font-size: 1.5rem;

    margin-bottom: 16px;

}



.price {

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 8px;

    color: var(--text-color);

}



.price span {

    font-size: 1rem;

    font-weight: 500;

    color: var(--text-muted);

}



.plan-header p {

    color: var(--text-muted);

}



/* Toggle Switch Styles */

.switch input {

    opacity: 0;

    width: 0;

    height: 0;

}



.slider.round:before {

    position: absolute;

    content: "";

    height: 26px;

    width: 26px;

    left: 4px;

    bottom: 4px;

    background-color: white;

    transition: .4s;

    border-radius: 50%;

}



input:checked+.slider {

    background-color: var(--accent-color);

}



input:focus+.slider {

    box-shadow: 0 0 1px var(--accent-color);

}



input:checked+.slider:before {

    transform: translateX(26px);

}



.save-badge {

    background-color: #dcfce7;

    color: #166534;

    font-size: 0.8rem;

    font-weight: 600;

    padding: 4px 8px;

    border-radius: 12px;

    vertical-align: top;

    margin-left: 8px;

    display: inline-block;

}



.features-list {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.features-list li {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--text-color);

}



.features-list li span {

    color: var(--accent-color);

    font-weight: 700;

}



.features-list li.unavailable {

    color: var(--text-muted);

    opacity: 0.6;

}



.full-width {

    width: 100%;

}



/* Testimonials Section */

.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 32px;

}



.testimonial-card {

    background: #ffffff;

    padding: 40px;

    border-radius: var(--radius-lg);

    border: 1px solid rgba(0, 0, 0, 0.03);

}



.quote {

    font-size: 1.125rem;

    color: var(--text-color);

    margin-bottom: 24px;

    font-style: italic;

    line-height: 1.6;

}



.client-info {

    display: flex;

    align-items: center;

    gap: 16px;

}



.client-avatar {

    width: 48px;

    height: 48px;

    border-radius: 50%;

}



.client-name {

    font-weight: 700;

}



.client-role {

    font-size: 0.875rem;

    color: var(--text-muted);

}



/* FAQ Section */

.faq-accordion {

    max-width: 800px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.faq-item {

    background: #ffffff;

    border-radius: var(--radius-md);

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.03);

}



.faq-question {

    width: 100%;

    padding: 24px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: none;

    border: none;

    font-size: 1.1rem;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

    color: var(--text-color);

    transition: background 0.2s ease;

}



.faq-question:hover {

    background: #f9f9f9;

}



.faq-question .icon {

    font-size: 1.5rem;

    font-weight: 400;

    transition: transform 0.3s ease;

}



.faq-item.active .faq-question .icon {

    transform: rotate(45deg);

}



.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;

    padding: 0 24px;

}



.faq-item.active .faq-answer {

    padding-bottom: 24px;

}



.faq-answer p {

    color: var(--text-muted);

}



/* Final CTA */

.final-cta-section {

    padding: 160px 0;

}



.btn.lg {

    padding: 16px 32px;

    font-size: 1.125rem;

}



/* Footer */

.footer {

    background: #ffffff;

    padding: 80px 0 24px;

    border-top: 1px solid rgba(0, 0, 0, 0.05);

}



.footer-container {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

    margin-bottom: 60px;

}



.footer-desc {

    margin-top: 16px;

    color: var(--text-muted);

    max-width: 300px;

}



.footer-col h4 {

    margin-bottom: 24px;

    font-size: 0.875rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--text-muted);

}



.footer-links {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.footer-links a {

    color: var(--text-color);

    font-weight: 500;

}



.footer-links a:hover {

    color: var(--accent-color);

}



.footer-bottom {

    padding-top: 32px;

    border-top: 1px solid rgba(0, 0, 0, 0.05);

    color: var(--text-muted);

    font-size: 0.875rem;

}



.social-icons a {

    display: block;

    padding: 8px;

}



/* Mobile Menu Overlay */

.mobile-menu-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: #ffffff;

    /* Solid white background */

    z-index: 2000;

    display: flex;

    flex-direction: column;

    padding: 30px 36px;

    /* Aligned with collapsed header (16+8+12 left, 20+10 top) */

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.3s ease;

}



.mobile-menu-header .logo-icon-svg {

    height: 40px !important;

    /* Force height to match collapsed state */

    width: auto !important;

    max-width: none;

}



.mobile-menu-overlay.active {

    opacity: 1;

    pointer-events: auto;

}



.mobile-menu-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 40px;

    width: 100%;

}



.menu-close {

    background: none;

    border: none;

    cursor: pointer;

    padding: 8px;

    display: flex;

    justify-content: center;

    align-items: center;

}



.mobile-nav {

    flex: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    width: 100%;

}



.mobile-nav-list {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 24px;

    list-style: none;

    padding: 0;

}



.mobile-nav-list a {

    font-size: 1.25rem;

    font-weight: 500;

    color: var(--text-color);

    text-decoration: none;

}



.mobile-menu-footer {

    margin-top: auto;

    width: 100%;

}



.mobile-menu-footer .btn {

    width: 100%;

    justify-content: center;

}



.desktop-only {

    display: flex;

}



/* Nav Link Pill Hover Effect */

.nav-links li a {

    position: relative;

    padding: 8px 16px;

    border-radius: 20px;

    transition: background-color 0.2s ease, color 0.2s ease;

}



.nav-links li a:hover {

    background-color: rgba(0, 0, 0, 0.05);

}



/* Tablet/Small Laptop Responsiveness */

@media (max-width: 1200px) {

    .step-body-grid {

        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;

        margin-right: 0px;

    }



    .step-content {

        order: 1;

        /* Text first */

    }



    .step-visual {

        order: 2;

        /* Image second */

        width: 100%;

        max-width: 600px;

        margin: 0 auto;

    }



    .feature-list {

        align-items: center;

        /* Center list items if text is centered */

        text-align: left;

        /* Keep list text left aligned but container centered? */

        /* Actually, usually lists look better left aligned even if container is centered. */

        max-width: 600px;

        margin-left: auto;

        margin-right: auto;

    }

}



/* Mobile Responsiveness */

@media (max-width: 830px) {



    /* Maintain Floating Pill Shape on Mobile */

    .header {

        top: 20px;

        left: 16px;

        right: 16px;

        width: auto;

        max-width: none;

        transform: none;

        border-radius: 100px;

        height: 60px;

        background: rgba(255, 255, 255, 0.85);

        padding: 0 8px;

    }



    .header-inner {

        padding: 0 12px;

        width: 100%;

    }



    .nav-desktop {

        display: none;

    }



    .desktop-only {

        display: none;

    }



    .menu-toggle {

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 4px;

        height: 40px;

        width: 40px;

        margin-right: 0;

        align-items: center;

        background: transparent;

        border: none;

        cursor: pointer;

    }



    /* 2-bar Hamburger */

    .menu-toggle .bar {

        display: block;

        width: 20px;

        height: 2px;

        background-color: #333;

        border-radius: 2px;

    }



    .menu-toggle .bar:nth-child(3) {

        display: none;

    }



    /* Hide Logo Text on Mobile */

    .logo-text {

        display: none !important;

    }



    .hero-title {

        font-size: 2.5rem;

    }



    .hero-subtitle {

        font-size: 1.125rem;

    }



    .step-number {

        margin-bottom: -10px;

    }



    .services-grid {

        grid-template-columns: 1fr;

    }



    .pricing-grid,

    .testimonials-grid,

    .benefits-grid {

        grid-template-columns: 1fr;

    }

}



/* Portfolio Page */

.portfolio-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 32px;

    margin-top: 48px;

    margin-bottom: 64px;

}



.portfolio-item img {

    width: 100%;

    height: auto;

    border-radius: var(--radius-lg);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--shadow-sm);

    transition: transform 0.2s, box-shadow 0.2s;

    background-color: #f9fafb;

}



.portfolio-item img:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);

}



@media (max-width: 768px) {

    .portfolio-grid {

        grid-template-columns: 1fr;

    }

}



@keyframes pulse-blue {

    0% {

        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);

    }



    70% {

        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);

    }



    100% {

        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);

    }

}



/* Video Demo Modal Styles */

.modal-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.8);

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 1000;

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;

}



.modal-overlay.active {

    opacity: 1;

    visibility: visible;

}



.modal-content {

    background-color: #fff;

    padding: 20px;

    border-radius: var(--radius-lg);

    width: 90%;

    max-width: 800px;

    position: relative;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    transform: scale(0.95);

    transition: transform 0.3s ease;

}



.modal-overlay.active .modal-content {

    transform: scale(1);

}



.modal-close {

    position: absolute;

    top: 10px;

    right: 15px;

    background: none;

    border: none;

    font-size: 2rem;

    line-height: 1;

    cursor: pointer;

    color: var(--text-muted);

    transition: color 0.2s;

}



.modal-close:hover {

    color: var(--text-color);

}



.video-container {

    position: relative;

    padding-bottom: 56.25%;

    /* 16:9 aspect ratio */

    height: 0;

    overflow: hidden;

    border-radius: var(--radius);

    background-color: #000;

    display: none;

    /* Hidden by default if empty */

}



.video-container.has-video {

    display: block;

}



.video-container iframe {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    border: 0;

}



.demo-fallback {

    text-align: center;

    padding: 40px 20px;

    font-size: 1.1rem;

    color: var(--text-muted);

}

/* Urgent Testimonial Fixes */

/* Force 3 columns on desktop and remove side restrictions */
.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    /* Allow full width */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure container on this page allows full width content and minimal padding */
/* We target the specific section container or global container if specific class not present */
.testimonials-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Specific override for the container holding the grid */
.section .container:has(.testimonials-grid) {
    max-width: 1400px !important;
    width: 95% !important;
    padding: 0 10px !important;
}

/* Fix Star Color to Gold/Yellow */
.stars {
    color: #FFD700 !important;
    /* Gold */
    text-shadow: 0px 0px 1px #DAA520;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}