:root {
    --primary-color: #F5A623;
    --primary-dark: #D4890A;
    --secondary-color: #FFF8EE;
    --text-color: #172B4D;
    --text-muted: #5E6C84;
    --white: #FFFFFF;
    --black: #000000;
    --border-color: #EBECF0;
    --container-width: 1200px;
    --navy-dark: #D4890A;
    --footer-bg: #091E42;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* hide the mobile-only CTA item in the drawer when on desktop */
.mobile-cta-item {
    display: none;
}


/* Hero Section */
#hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #F4F7FB 0%, #FFFFFF 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #091E42;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Logo Bar */
#logos {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
    text-align: center;
}

.section-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.logo-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
    /* Removed opacity as requested */
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-item img {
    max-height: 225px;
    max-width: 100%;
    object-fit: contain;
}

/* Feature Grid Improvements */
.core-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #091E42;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #091E42;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card ul {
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li i {
    color: #36B37E;
}

@media (max-width: 992px) {

    .core-features,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

/* Footer Section */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #091E42;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs */
.tabs-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: #F4F5F7;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: none;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: var(--white);
}

.tabs-content {
    padding: 60px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.panel-text {
    flex: 1;
}

.panel-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #091E42;
}

.panel-text p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.panel-text ul {
    margin-bottom: 32px;
}

.panel-text ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.panel-text ul li i {
    color: #36B37E;
}

.panel-image {
    flex: 1;
}

.panel-image img {
    width: 100%;
    border-radius: 8px;
}

/* Industry Cards */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #091E42;
}

.industry-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.industry-card a {
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-card a i {
    transition: transform 0.3s ease;
}

.industry-card a:hover i {
    transform: translateX(5px);
}

/* Footer (Original) */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-col p {
    color: #B3BAC5;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #B3BAC5;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #253858;
    text-align: center;
    color: #B3BAC5;
}

/* Integrations */
.integration-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.int-logo {
    width: 80px;
    height: 80px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.int-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.int-logo:hover {
    transform: scale(1.1);
}

.int-logo img {
    max-width: 100%;
    max-height: 100%;
}

.mt-40 {
    margin-top: 40px;
}

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

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.review-card img {
    height: 30px;
    margin-bottom: 20px;
}

.stars {
    color: #FFAB00;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
}

/* Contact Section */
#contact {
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-text-col {
    flex: 0 0 340px;
}

.contact-text-col h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #091E42;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-text-col p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-items-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #EEF0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #5C4EE5;
}

.contact-detail strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #091E42;
    margin-bottom: 6px;
}

.contact-detail p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-detail a {
    color: var(--text-muted);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--primary-color);
}

/* Responsive contact layout */
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
    .contact-text-col {
        flex: none;
        width: 100%;
    }
    .contact-text-col h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-text-col h2 { font-size: 1.7rem; }
}




/* =============================================
   HAMBURGER & MOBILE NAVIGATION DRAWER
   ============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 992px)
   ============================================= */
@media (max-width: 992px) {
    /* HEADER */
    .hamburger { display: flex; }
    .header-cta { display: none; }
    .mobile-cta-item { display: block; }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 80px 32px 40px;
        gap: 0;
        box-shadow: -4px 0 30px rgba(0,0,0,0.12);
        transition: right 0.35s cubic-bezier(.4,0,.2,1);
        overflow-y: auto;
    }

    .nav-links.open { right: 0; }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li a {
        display: block;
        padding: 16px 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-color);
    }

    .mobile-cta-item {
        border-bottom: none !important;
        padding-top: 24px;
    }

    /* HERO */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-text h1 { font-size: 2.4rem; }
    .hero-actions { justify-content: center; }
    .hero-image { width: 100%; }

    /* TABS */
    .tabs-content { padding: 30px 20px; }
    .panel-inner { flex-direction: column; gap: 30px; }
    .panel-image { width: 100%; }

    /* FORM */
    .form-wrapper { flex-direction: column; gap: 50px; text-align: center; }
    .contact-highlights { align-items: center; }
    .form-info h2 { font-size: 2rem; }

    /* FOOTER */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col p { max-width: 100%; }

    /* FEATURES */
    .core-features { grid-template-columns: 1fr 1fr; }
    .pricing-card.popular { transform: scale(1); }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
    /* LOGOS */
    .logo-track {
        gap: 24px;
        justify-content: center;
    }
    .logo-item {
        width: 140px;
        height: 50px;
    }

    /* TABS */
    .tabs-header {
        flex-wrap: wrap;
    }
    .tab-btn {
        flex: 0 0 50%;
        font-size: 0.9rem;
        padding: 14px 10px;
    }

    /* INTEGRATIONS */
    .integration-logos { gap: 20px; }
    .int-logo { width: 65px; height: 65px; padding: 14px; }

    /* INDUSTRY */
    .industry-grid { grid-template-columns: 1fr; }

    /* FEATURES */
    .core-features { grid-template-columns: 1fr; }

    /* PRICING */
    .pricing-grid { grid-template-columns: 1fr; }

    /* REVIEWS */
    .reviews-grid { grid-template-columns: 1fr; }

    /* SECTION */
    .section-padding { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 1rem; }

    /* FOOTER */
    .footer-grid { grid-template-columns: 1fr; }
    footer { padding: 60px 0 30px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.9rem; }
    .hero-text p { font-size: 1rem; }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-large { width: 100%; text-align: center; }

    /* LOGOS — wrap into 2-column grid on tiny screens */
    .logo-track {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
    }
    .logo-item { width: 100%; height: auto; min-height: 50px; }

    /* FORM */
    .form-row { flex-direction: column; gap: 0; }
    .form-info h2 { font-size: 1.7rem; }
    .form-container { padding: 24px; }

    /* TABS */
    .tabs-content { padding: 20px 16px; }
    .tab-btn { flex: 0 0 100%; }
    .tab-btn:not(.active) { display: none; }

    /* SECTION */
    .section-padding { padding: 50px 0; }
    .section-header h2 { font-size: 1.7rem; }

    /* HERO section */
    #hero { padding: 60px 0; }

    /* LOGO BAR */
    #logos { padding: 50px 0; }

    /* FOOTER */
    .footer-bottom { font-size: 0.85rem; }
}