:root {
    --primary-color: #0056b3;
    --primary-hover: #004494;
    --secondary-color: #0a2540;
    --accent-color: #ff8c00;
    --accent-hover: #e67e00;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
}

p {
    font-size: 1rem;
    color: var(--text-light);
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-white {
    color: white;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.py-100 {
    padding: 100px 0;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.align-center {
    align-items: center;
}

.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* Animations */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 147, 233, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 147, 233, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 147, 233, 0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Typography Helpers */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0 140px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kanban-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.k-column {
    width: 250px;
    background: #f1f5f9;
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.k-card {
    background: white;
    height: 100px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.k-column:nth-child(even) {
    margin-top: 40px;
}

.logo-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.text-primary {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 500;
}

/* Security Banner */
.security-banner {
    background-color: var(--primary-color);
    margin-top: 0;
    padding: 0;
    position: relative;
    color: white;
    border-radius: 50% 50% 0 0 / 100px 100px 0 0;
}

.flex-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0px 20px 80px;
}

.robot-img {
    height: 420px;
    /* Slightly larger to show detail */
    object-fit: contain;
    margin-top: -100px;
    /* Adjusted for larger size */
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(0, 147, 233, 0.3));
    transition: transform 0.3s ease;
}

.robot-img:hover {
    transform: translateY(-5px) scale(1.02);
}

.banner-text h2 {
    font-size: 2.5rem;
    max-width: 500px;
    line-height: 1.2;
    color: #fff;
}

/* CRM Showcase */
.crm-showcase {
    padding: 100px 20px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.mockup-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
}

.browser-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.browser-header {
    background: #f8fafc;
    padding: 12px 15px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.browser-url {
    margin-left: 12px;
    font-size: 0.8rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 14px;
    border-radius: 20px;
}

.crm-screenshot {
    width: 100%;
    display: block;
    border-radius: 0 0 12px 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.browser-body {
    height: 450px;
    background: #f1f5f9;
    padding: 20px;
}

.crm-placeholder {
    display: flex;
    height: 100%;
    gap: 20px;
}

.crm-sidebar {
    width: 70px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
}

.side-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #cbd5e1;
}

.side-item.active {
    background: var(--primary-color);
}

.crm-main {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.crm-kanban {
    display: flex;
    gap: 20px;
    height: 100%;
}

.kc {
    flex: 1;
    background: #f8fafc;
    border-radius: 6px;
    padding: 15px;
}

.kc-title {
    height: 15px;
    width: 60%;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 15px;
}

.kc-card {
    height: 60px;
    background: white;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

/* Company Flow Section */
.flow-section {
    background-color: var(--primary-color);
    padding: 100px 0 140px;
    margin-top: 100px;
    position: relative;
}

.flow-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--primary-color);
    clip-path: polygon(0 50%, 50% 100%, 100% 50%, 100% 100%, 0 100%);
}

.flow-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    line-height: 1.3;
    color: white;
}

.flow-content {
    justify-content: center;
    align-items: center;
}

.flow-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: left;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
}

.flow-mockup {
    flex: 1;
    min-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-mockup {
    width: 100%;
    max-width: 500px;
    position: relative;
    perspective: 1000px;
}

.laptop-screen {
    background: #111;
    border-radius: 12px 12px 0 0;
    padding: 15px;
    border: 4px solid #333;
    padding-bottom: 25px;
}

.dashboard-preview {
    background: #f8fafc;
    height: 250px;
    border-radius: 4px;
    border: 1px solid #444;
}

.laptop-base {
    height: 15px;
    background: linear-gradient(to bottom, #d1d5db, #9ca3af);
    border-radius: 0 0 10px 10px;
    position: relative;
    margin: 0 -20px;
}

/* How it Helps Section */
.helps-section {
    padding: 100px 20px;
}

.helps-text {
    flex: 1;
    min-width: 300px;
}

.helps-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 15px rgba(0, 147, 233, 0.4));
    z-index: 2;
    position: relative;
}

.robot-hero-new {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 15px rgba(0, 147, 233, 0.3));
    z-index: 2;
    position: relative;
}





/* Interactions */
.interactions-section {
    background: var(--bg-light);
    border-radius: 30px;
    margin: 0 20px;
}

.interactions-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interactions-text {
    flex: 1;
    min-width: 300px;
}

.phone-mockup {
    width: 280px;
    height: 550px;
    background: #111;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid #e2e8f0;
    margin: 0 auto;
}

.phone-screen {
    background: #efeae2;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #075e54;
    color: white;
    padding: 15px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header span {
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
}

.chat-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.msg {
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 85%;
    font-size: 0.85rem;
}

.msg.bot {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.msg.user {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.msg-btn {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

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

.btn-float {
    position: absolute;
    bottom: 30px;
    right: 0;
    z-index: 10;
}

/* Partners Ticker */
.partners-section {
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.partners-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color 0.3s, transform 0.3s;
    cursor: default;
    padding: 10px 0;
}

.partner-logo:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-section {
    background: var(--secondary-color);
    padding: 80px 0;
    margin-top: 50px;
}

.video-container {
    max-width: 700px;
    margin: 0 auto 50px;
}

.video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    padding-left: 5px;
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0.3);
    transition: 0.3s;
}

.video-placeholder:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: red;
}

.stats-row {
    justify-content: center;
    gap: 50px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.stat-box p {
    color: #bae6fd;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Founder's Note */
.founders-note {
    max-width: 800px;
    margin: 0 auto 70px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 50px 60px;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-mark {
    font-size: 10rem;
    line-height: 0;
    position: absolute;
    top: 60px;
    left: 30px;
    color: rgba(255, 255, 255, 0.12);
    font-family: Georgia, serif;
    pointer-events: none;
}

.founders-title {
    font-size: 1.5rem;
    color: #ffd700;
    /* Yellow highlight for branding */
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.founders-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 35px;
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.founder-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.founder-name {
    font-weight: 700;
    color: white;
    font-size: 1rem;
    margin: 0;
}

.founder-role {
    color: #93c5fd;
    font-size: 0.85rem;
    margin: 0;
}

/* Pillar Cards */
.stat-box.pillar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 20px;
    min-width: 160px;
    transition: transform 0.3s, background 0.3s;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-box.pillar:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.pillar-icon {
    font-size: 2rem;
    line-height: 1;
}

.stat-box.pillar h3 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.stat-box.pillar p {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin: 0;
    color: #bae6fd;
}

/* FAQ */
.faq-section {
    max-width: 800px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8fafc;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8fafc;
}

.faq-answer {
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.arrow {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: #ffffff;
    color: var(--text-dark);
    padding-top: 80px;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 60px;
    margin-bottom: 30px;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.contact-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #f8fafc;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.submit-btn {
    width: 100%;
    font-size: 1rem;
    padding: 15px;
}

.footer-bottom {
    padding-bottom: 30px;
}

.footer-logos {
    justify-content: space-between;
    margin-bottom: 20px;
}

.meta-partner {
    font-weight: 600;
    color: #94a3b8;
    border: 1px solid #1e293b;
    padding: 5px 15px;
    border-radius: 20px;
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .logo-title {
        font-size: 3rem;
    }

    .hero-section {
        padding: 100px 0;
    }

    .flex-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .robot-img {
        margin-top: -60px;
        height: 250px;
    }

    .security-banner {
        border-radius: 30px 30px 0 0;
    }

    .browser-body {
        height: 300px;
    }

    .crm-sidebar {
        display: none;
    }

    .kc:nth-child(3) {
        display: none;
    }

    .stats-row {
        gap: 20px;
    }

    .stat-box {
        width: 45%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .logo-title {
        font-size: 2.5rem;
    }

    .kc:nth-child(2) {
        display: none;
    }

    .stat-box {
        width: 100%;
    }

    .interactions-section {
        margin: 0;
        border-radius: 0;
    }
}