/* Base Styles */
:root {
    --primary: #000;
    --secondary: #fff;
    --text: #333;
    --background: #fff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --red: #ef4444;
    --blue: #3b82f6;
    --yellow: #eab308;
    --teal: #14b8a6;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
}

/* Security Styles */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray-900);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    opacity: 1;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--secondary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* General Animations */
.animated {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.5;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(17,17,17,0.98);
    box-shadow: 0 2px 16px 0 rgb(0 0 0 / 0.10);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 16px 0 rgb(0 0 0 / 0.05);
}

.navbar.scrolled .nav-link {
    color: #111;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    background: #f5f5f5;
    color: #3b82f6;
}

.navbar.scrolled .nav-toggle span {
    background: #111;
}

.navbar.scrolled .nav-logo img {
    content: url('/images/BLACK.png');
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover, .nav-link.active {
    background: #222;
    color: #3b82f6;
}

.btn.nav-cta {
    background: #fff;
    color: #111;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.5rem 1.3rem;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 0.08);
    transition: background 0.2s, color 0.2s;
}

.btn.nav-cta:hover {
    background: #3b82f6;
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.2s;
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 64px;
        right: 0;
        left: 0;
        background: #111;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.5rem 1rem 2rem 1rem;
        display: none;
        z-index: 999;
        box-shadow: 0 8px 32px 0 rgb(0 0 0 / 0.18);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-link, .btn.nav-cta {
        width: 100%;
        margin: 0.25rem 0;
        text-align: left;
    }
    .nav-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 1rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-media {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--gray-800);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Logo Wall */
.logo-wall {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wall-title {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
}

.company-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.company-logo:hover {
    opacity: 1;
}

/* Bento Grid */
.bento-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--gray-100);
    border-radius: 1.5rem;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 0.04);
    padding: 2rem 2rem 2.5rem 2rem;
    min-height: 420px;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
}

.bento-card:hover {
    box-shadow: 0 6px 24px 0 rgb(0 0 0 / 0.10);
    transform: translateY(-2px) scale(1.01);
}

.bento-red { background: #fef3f2; }
.bento-blue { background: #f1f6fd; }
.bento-yellow { background: #fefbe9; }
.bento-gray { background: #f6f6f7; }
.bento-teal { background: #e6f7f6; }

.bento-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.bento-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.bento-header-title {
    font-weight: 600;
    color: #222;
    font-size: 1rem;
}

.badge {
    background: #f87171;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.15em 0.7em;
    border-radius: 999px;
    margin-left: 0.5em;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.bento-arrow {
    font-size: 1.5rem;
    color: #bdbdbd;
    font-weight: 700;
    margin-left: 1rem;
    transition: color 0.2s;
}

.bento-card:hover .bento-arrow {
    color: #222;
}

.bento-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bento-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 200px;
    margin-bottom: 0.5rem;
}

.bento-image {
    max-width: 100%;
    max-height: 220px;
    border-radius: 1rem;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 0.06);
    object-fit: contain;
    background: #fff;
}

.bento-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 1.5rem;
    text-indent: -9999px;
}

/* Quote Section */
.quote-section {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.forbes-quote {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.quote-logo {
    height: 20px;
    width: auto;
}

/* Screenshots Section */
.screenshots-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.tab-button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.tab-button:hover {
    background: var(--gray-100);
}

.tab-button.active {
    background: var(--primary);
    color: var(--secondary);
}

.screenshot-content {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.screenshot-panel {
    display: none;
}

.screenshot-panel.active {
    display: block;
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Less Tools Section */
.less-tools {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.less-tools-text {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.less-tools-image {
    width: 100%;
    height: auto;
    max-width: 800px;
}

/* Social Proof */
.social-proof {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-testimonial {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.testimonial-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.testimonial-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: background-color 0.2s;
}

.testimonial-item:hover {
    background: var(--gray-200);
}

.stats-marquee {
    overflow: hidden;
    background: var(--gray-100);
    padding: 1rem 0;
}

.stats-track {
    display: flex;
    gap: 2rem;
    animation: marquee 20s linear infinite;
}

.stat {
    white-space: nowrap;
    color: var(--gray-600);
}

/* Contact Section */
.contact {
    padding: 4rem 1rem;
    background: #111;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.contact-main-title {
    color: #fff;
}

.contact-subtitle {
    color: #e5e5e5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-booking-card, .contact-info-section {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 0 32px 0 rgba(255,255,255,0.25), 0 2px 12px 0 rgb(0 0 0 / 0.10);
    padding: 2.5rem 2rem;
    color: #222;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-booking-card:hover, .contact-info-section:hover {
    box-shadow: 0 0 48px 0 rgba(255,255,255,0.40), 0 6px 24px 0 rgb(0 0 0 / 0.12);
    transform: translateY(-2px) scale(1.01);
}

.booking-title, .contact-info-title {
    color: #111;
}

.booking-description, .booking-features, .booking-note, .contact-item-content p, .process-title, .process-step p {
    color: #444;
}

.booking-button {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 12px 0 rgba(255,255,255,0.15);
    font-weight: 600;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.booking-button:hover {
    background: #fff;
    color: #111;
    box-shadow: 0 0 24px 0 rgba(255,255,255,0.25);
}

.contact-item-icon {
    color: #111;
}

.booking-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.booking-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.booking-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.booking-features li::before {
    content: "✓";
    color: var(--blue);
}

.booking-button {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--primary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.booking-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
}

.contact-info-section {
    display: grid;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 1.5rem;
}

.contact-item-content h4 {
    margin-bottom: 0.25rem;
}

.contact-item-content a {
    color: var(--text);
    text-decoration: none;
}

.contact-item-content a:hover {
    text-decoration: underline;
}

/* Process Section */
.process-section {
    margin-top: 2rem;
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-steps {
    list-style: none;
}

.process-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.step-content h5 {
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Download Apps */
.download-apps {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #111;
    color: #fff;
}

.download-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.download-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 0 32px 0 rgba(255,255,255,0.18), 0 2px 12px 0 rgb(0 0 0 / 0.10);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
}

.download-card:hover {
    box-shadow: 0 0 48px 0 rgba(255,255,255,0.40), 0 6px 24px 0 rgb(0 0 0 / 0.12);
    transform: translateY(-2px) scale(1.01);
}

.download-content {
    position: relative;
    z-index: 1;
}

.app-info h3 {
    margin-bottom: 0.5rem;
    color: #111;
}

.app-info p {
    color: #444;
    margin-bottom: 1.5rem;
}

.btn.btn-primary {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 12px 0 rgba(255,255,255,0.15);
    font-weight: 600;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn.btn-primary:hover {
    background: #fff;
    color: #111;
    box-shadow: 0 0 24px 0 rgba(255,255,255,0.25);
}

.btn.btn-secondary {
    background: #fff;
    color: #111;
    border: 1px solid #111;
    border-radius: 1rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.btn.btn-secondary:hover {
    background: #111;
    color: #fff;
}

.download-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    opacity: 0.1;
    transition: opacity 0.2s;
}

.download-card:hover .download-image {
    opacity: 0.2;
}

.browser-text {
    text-align: center;
    color: #e5e5e5;
}

.browser-text a {
    color: #fff;
    text-decoration: underline;
}

.browser-text a:hover {
    color: #3b82f6;
}

/* Footer */
.footer {
    background: #111;
    padding: 4rem 1rem 2rem;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #3b82f6;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 0 32px 0 rgba(255,255,255,0.18), 0 2px 12px 0 rgb(0 0 0 / 0.10);
    padding: 2rem 1.5rem;
    color: #222;
    transition: box-shadow 0.2s, transform 0.2s;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #111;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    color: #e5e5e5;
    font-size: 0.95rem;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .footer-top {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-columns {
        gap: 1rem;
    }
    .footer-column {
        padding: 1.25rem 0.75rem;
    }
}

/* Animations */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .bento-wide {
        grid-column: auto;
    }

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

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

    .download-card.main-app {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card {
        min-height: 340px;
        padding: 1.25rem 1.25rem 2rem 1.25rem;
    }
    .bento-title {
        font-size: 1.3rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-actions,
    .contact-booking-card,
    .footer {
        display: none;
    }

    body {
        color: #000;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* --- BENTO WIDE SPLIT --- */
.bento-wide-split {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 320px;
    background: #fefbe9;
    padding: 0;
    overflow: visible;
}
.bento-wide-split .bento-split-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
}
.bento-wide-split .bento-card-header {
    margin-bottom: 1.25rem;
}
.bento-wide-split .bento-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
    line-height: 1.2;
}
.bento-wide-split .bento-arrow-bottom {
    position: absolute;
    left: 0;
    bottom: 2.5rem;
    font-size: 2rem;
    color: #222;
    background: #fff;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 0.04);
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.bento-wide-split .bento-arrow-bottom:hover {
    background: #222;
    color: #fff;
}
.bento-wide-split .bento-link {
    z-index: 3;
}
.bento-wide-split .bento-split-image {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
    overflow: visible;
}
.bento-wide-split .bento-image {
    max-width: 95%;
    max-height: 340px;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px 0 rgb(0 0 0 / 0.10);
    object-fit: contain;
    background: #fff;
    padding: 1.5rem;
    display: block;
}
@media (max-width: 1100px) {
    .bento-wide-split .bento-image {
        max-height: 220px;
        padding: 1rem;
    }
}
@media (max-width: 900px) {
    .bento-wide-split {
        flex-direction: column;
        min-height: 0;
    }
    .bento-wide-split .bento-split-content {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }
    .bento-wide-split .bento-arrow-bottom {
        left: 1.5rem;
        bottom: 1.5rem;
    }
    .bento-wide-split .bento-split-image {
        min-width: 0;
        min-height: 0;
        justify-content: center;
    }
    .bento-wide-split .bento-image {
        margin: 1.5rem 0 1.5rem 0;
        max-width: 100%;
        max-height: 180px;
        padding: 0.5rem;
    }
}

.bento-wide-split .bento-image-hero {
    position: absolute;
    right: -60px;
    bottom: -30px;
    max-width: 520px;
    max-height: 320px;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px 0 rgb(0 0 0 / 0.18);
    object-fit: contain;
    background: #fff;
    z-index: 1;
}
.bento-wide-split .bento-split-image {
    position: relative;
    min-width: 320px;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
}
@media (max-width: 900px) {
    .bento-wide-split .bento-image-hero {
        position: static;
        max-width: 100%;
        max-height: 180px;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        display: block;
    }
    .bento-wide-split .bento-split-image {
        min-width: 0;
        min-height: 0;
        justify-content: center;
    }
}

.bento-wide-split .bento-split-image {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
    overflow: visible;
}
.bento-image-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
}
.bento-image-hero {
    max-width: 90%;
    max-height: 320px;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px 0 rgb(0 0 0 / 0.10);
    object-fit: contain;
    padding: 1.5rem;
    display: block;
}
@media (max-width: 900px) {
    .bento-image-hero {
        max-width: 100%;
        max-height: 180px;
        padding: 0.5rem;
    }
    .bento-image-hero-wrapper {
        min-height: 120px;
    }
}
.bento-wide-split .bento-arrow-bottom {
    position: absolute;
    left: 2.5rem;
    bottom: 2.5rem;
    font-size: 2rem;
    color: #222;
    background: #fff;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 0.04);
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
@media (max-width: 900px) {
    .bento-wide-split .bento-arrow-bottom {
        left: 1.5rem;
        bottom: 1.5rem;
    }
}

.team-solutions-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.team-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.team-solution-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 0.06);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.team-solution-card:hover {
    box-shadow: 0 6px 24px 0 rgb(0 0 0 / 0.10);
    transform: translateY(-2px) scale(1.01);
}
.team-solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.team-solution-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
}
.team-solution-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .team-solutions-section {
        padding: 2rem 0.5rem;
    }
    .team-solutions-grid {
        gap: 1rem;
    }
    .team-solution-card {
        padding: 1.25rem 0.75rem 1rem 0.75rem;
    }
}

.customer-stories-section {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 4rem 1rem 0 1rem;
}
.customer-featured {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}
.customer-featured-logo {
    width: 90px;
    height: auto;
    margin-bottom: 1.5rem;
}
.customer-featured-quote-block {
    max-width: 700px;
}
.customer-featured-quote {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.15;
    color: #222;
    margin-bottom: 1.5rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    quotes: "\201C" "\201D";
}
.customer-featured-link {
    color: #222;
    font-size: 1rem;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.customer-featured-link:hover {
    color: #3b82f6;
}
.customer-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2.5rem 2rem;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 2.5rem 0 2.5rem 0;
}
.customer-story {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.customer-story-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}
.customer-story-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}
.customer-story-quote {
    font-size: 1rem;
    color: #444;
    font-weight: 400;
    line-height: 1.4;
}
@media (max-width: 900px) {
    .customer-stories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
}
@media (max-width: 600px) {
    .customer-featured-quote {
        font-size: 1.2rem;
    }
    .customer-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem 0;
        padding: 1.5rem 0 1.5rem 0;
    }
}

.download-apps, .contact, .footer {
    width: 100vw;
    min-width: 100vw;
    background: #111;
    color: #fff;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}
.download-apps .download-grid,
.contact .contact-content,
.footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.notion-footer {
    width: 100%;
    padding: 0;
    background: #111;
    color: #fff;
    font-size: 1rem;
}
.notion-footer-top {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 0 2rem 0;
    flex-wrap: wrap;
}
.notion-footer-brand {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.notion-footer-logo {
    width: 48px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}
.notion-footer-socials {
    display: flex;
    gap: 0.75rem;
}
.notion-footer-socials a {
    color: #fff;
    font-size: 1.35rem;
    text-decoration: none;
    transition: color 0.2s;
    opacity: 0.85;
}
.notion-footer-socials a:hover {
    color: #3b82f6;
    opacity: 1;
}
.notion-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 2.5rem;
    flex: 1 1 0;
}
.notion-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.notion-footer-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.05rem;
}
.notion-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.notion-footer-col li {
    margin-bottom: 0.3rem;
}
.notion-footer-col a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.2s;
}
.notion-footer-col a:hover {
    color: #3b82f6;
}
.notion-footer-more {
    margin-top: 1.2rem;
    font-weight: 600;
}
.notion-footer-more a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.notion-footer-more a:hover {
    color: #3b82f6;
}
.notion-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 1rem 0;
    border: none;
    flex-wrap: wrap;
    gap: 1rem;
}
.notion-footer-lang select {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}
.notion-footer-meta {
    color: #e5e5e5;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.notion-footer-meta a {
    color: #e5e5e5;
    text-decoration: underline;
    transition: color 0.2s;
}
.notion-footer-meta a:hover {
    color: #3b82f6;
}
@media (max-width: 900px) {
    .notion-footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    .notion-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .notion-footer-links {
        grid-template-columns: 1fr;
    }
    .notion-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Cookie Pop-up Styles */
.cookie-popup {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gray-900);
    color: var(--secondary);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.cookie-popup.active {
    display: block;
    opacity: 1;
}

.cookie-popup h3 {
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 10px;
}

.cookie-popup p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-popup a {
    color: var(--blue);
    text-decoration: underline;
}

.cookie-popup .btn {
    background-color: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--gray-700);
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cookie-popup .btn:hover {
    background-color: var(--gray-800);
    border-color: var(--gray-600);
}
